Skip to content

Commit 7a043fb

Browse files
authored
Updated appveyor.yml
1 parent dac5386 commit 7a043fb

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

appveyor.yml

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,19 +6,18 @@ environment:
66
install:
77
- ps: |
88
Add-Type -AssemblyName System.IO.Compression.FileSystem
9-
if (!(Test-Path -Path "C:\maven\apache-maven-3.5.4" )) {
9+
if (!(Test-Path -Path "C:\maven\apache-maven-3.6.3" )) {
1010
(new-object System.Net.WebClient).DownloadFile(
1111
'https://archive.apache.org/dist/maven/maven-3/3.6.3/binaries/apache-maven-3.6.3-bin.zip',
1212
'C:\maven-bin.zip'
1313
)
1414
[System.IO.Compression.ZipFile]::ExtractToDirectory("C:\maven-bin.zip", "C:\maven")
1515
}
16-
- cmd: SET PATH=C:\maven\apache-maven-3.5.4\bin;%JAVA_HOME%\bin;%PATH%
16+
- cmd: SET PATH=C:\maven\apache-maven-3.6.3\bin;%JAVA_HOME%\bin;%PATH%
1717
build_script:
1818
- mvn clean install -B -DskipTests
1919
test_script:
2020
- mvn clean install jacoco:report -B
2121
- mvn -f examples/pom.xml clean package
22-
- mvn -f spring-boot-example/pom.xml clean package
2322
cache:
24-
- C:\maven\apache-maven-3.5.4
23+
- C:\maven\apache-maven-3.6.3

0 commit comments

Comments
 (0)