Skip to content

Commit

Permalink
update ant to newer version.
Browse files Browse the repository at this point in the history
  • Loading branch information
Karlheinz Friedberger committed Jun 27, 2024
1 parent 92f8e83 commit b1bd0f1
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# an API wrapper for a collection of SMT solvers:
# https://github.com/sosy-lab/java-smt
#
# SPDX-FileCopyrightText: 2020 Dirk Beyer <https://www.sosy-lab.org>
# SPDX-FileCopyrightText: 2024 Dirk Beyer <https://www.sosy-lab.org>
#
# SPDX-License-Identifier: Apache-2.0

Expand All @@ -15,15 +15,15 @@ clone_depth: 1
install:
- ps: |
Add-Type -AssemblyName System.IO.Compression.FileSystem
if (!(Test-Path -Path "C:\ant\apache-ant-1.10.8" )) {
if (!(Test-Path -Path "C:\ant\apache-ant-1.10.14" )) {
(new-object System.Net.WebClient).DownloadFile(
'https://archive.apache.org/dist/ant/binaries/apache-ant-1.10.8-bin.zip',
'https://archive.apache.org/dist/ant/binaries/apache-ant-1.10.14-bin.zip',
'C:\ant-bin.zip'
)
[System.IO.Compression.ZipFile]::ExtractToDirectory("C:\ant-bin.zip", "C:\ant")
}
- SET JAVA_HOME=C:\Program Files\Java\jdk14
- SET PATH=C:\ant\apache-ant-1.10.8\bin;%JAVA_HOME%\bin;%PATH%
- SET PATH=C:\ant\apache-ant-1.10.14\bin;%JAVA_HOME%\bin;%PATH%
- SET IVY_CACHE_DIR=C:\ivy
- echo %USERPROFILE%
- echo %PATH%
Expand Down

0 comments on commit b1bd0f1

Please sign in to comment.