File tree Expand file tree Collapse file tree 1 file changed +3
-4
lines changed Expand file tree Collapse file tree 1 file changed +3
-4
lines changed Original file line number Diff line number Diff line change @@ -6,19 +6,18 @@ environment:
6
6
install :
7
7
- ps : |
8
8
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 " )) {
10
10
(new-object System.Net.WebClient).DownloadFile(
11
11
'https://archive.apache.org/dist/maven/maven-3/3.6.3/binaries/apache-maven-3.6.3-bin.zip',
12
12
'C:\maven-bin.zip'
13
13
)
14
14
[System.IO.Compression.ZipFile]::ExtractToDirectory("C:\maven-bin.zip", "C:\maven")
15
15
}
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%
17
17
build_script :
18
18
- mvn clean install -B -DskipTests
19
19
test_script :
20
20
- mvn clean install jacoco:report -B
21
21
- mvn -f examples/pom.xml clean package
22
- - mvn -f spring-boot-example/pom.xml clean package
23
22
cache :
24
- - C:\maven\apache-maven-3.5.4
23
+ - C:\maven\apache-maven-3.6.3
You can’t perform that action at this time.
0 commit comments