Skip to content

Commit 10de5b1

Browse files
authored
Updated circleci
1 parent 249dd65 commit 10de5b1

File tree

2 files changed

+6
-5
lines changed

2 files changed

+6
-5
lines changed

.circleci/config.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,8 @@ jobs:
99

1010
steps:
1111

12-
- checkout
12+
- checkout:
13+
method: blobless
1314

1415
- run: mvn dependency:go-offline
1516

appveyor.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,18 +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.6.3" )) {
9+
if (!(Test-Path -Path "C:\maven\apache-maven-3.9.11" )) {
1010
(new-object System.Net.WebClient).DownloadFile(
11-
'https://archive.apache.org/dist/maven/maven-3/3.6.3/binaries/apache-maven-3.6.3-bin.zip',
11+
'https://archive.apache.org/dist/maven/maven-3/3.9.11/binaries/apache-maven-3.9.11-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.6.3\bin;%JAVA_HOME%\bin;%PATH%
16+
- cmd: SET PATH=C:\maven\apache-maven-3.9.11\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
2222
cache:
23-
- C:\maven\apache-maven-3.6.3
23+
- C:\maven\apache-maven-3.9.11

0 commit comments

Comments
 (0)