-
Notifications
You must be signed in to change notification settings - Fork 81
Expand file tree
/
Copy pathappveyor.yml
More file actions
23 lines (23 loc) · 807 Bytes
/
appveyor.yml
File metadata and controls
23 lines (23 loc) · 807 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
version: '{build}'
skip_tags: true
clone_depth: 30
environment:
JAVA_HOME: C:\Program Files\Java\jdk11
install:
- ps: |
Add-Type -AssemblyName System.IO.Compression.FileSystem
if (!(Test-Path -Path "C:\maven\apache-maven-3.9.11" )) {
(new-object System.Net.WebClient).DownloadFile(
'https://archive.apache.org/dist/maven/maven-3/3.9.11/binaries/apache-maven-3.9.11-bin.zip',
'C:\maven-bin.zip'
)
[System.IO.Compression.ZipFile]::ExtractToDirectory("C:\maven-bin.zip", "C:\maven")
}
- cmd: SET PATH=C:\maven\apache-maven-3.9.11\bin;%JAVA_HOME%\bin;%PATH%
build_script:
- mvn clean install -B -DskipTests
test_script:
- mvn clean install jacoco:report -B
- mvn -f examples/pom.xml clean package
cache:
- C:\maven\apache-maven-3.9.11