forked from dropwizard/dropwizard
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathappveyor.yml
More file actions
24 lines (24 loc) · 737 Bytes
/
appveyor.yml
File metadata and controls
24 lines (24 loc) · 737 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
version: '{build}'
max_jobs: 4
skip_tags: true
clone_depth: 2
branches:
except:
- gh-pages
image:
- 'Visual Studio 2019'
environment:
JAVA_OPTS: '-Xms512m -Xmx2g -XX:+TieredCompilation -XX:TieredStopAtLevel=1'
matrix:
- JAVA_HOME: 'C:\Program Files\Java\jdk11'
PATH: '%JAVA_HOME%\bin;%PATH%'
cache:
- '%USERPROFILE%\.m2\repository'
install:
- cmd: 'java -version'
build_script:
- mvnw.cmd --no-transfer-progress -Pjakarta-apis -V -B -ff install -DskipTests=true -Dmaven.javadoc.skip=true -Dmaven.source.skip=true -Dmaven.deploy.skip=true
test_script:
- mvnw.cmd --no-transfer-progress -Pjakarta-apis -V -B -ff verify -Dmaven.javadoc.skip=true -Dmaven.source.skip=true -Dmaven.deploy.skip=true
matrix:
fast_finish: true