Skip to content

Commit

Permalink
Update AppVeyor build configuration
Browse files Browse the repository at this point in the history
* Update Windows build environment (Visual Studio 2017)
* Add build cache for local Maven repository
  • Loading branch information
joschi committed Mar 2, 2019
1 parent b218e3e commit 9749297
Showing 1 changed file with 17 additions and 2 deletions.
19 changes: 17 additions & 2 deletions appveyor.yml
@@ -1,3 +1,18 @@
version: '{build}'
skip_tags: true
clone_depth: 2
branches:
except:
- gh-pages
image: 'Visual Studio 2017'
environment:
JAVA_HOME: 'C:\Program Files\Java\jdk11'
JAVA_OPTS: '-Xms512m -Xmx2g'
cache:
- 'C:\Users\appveyor\.m2\repository'
install:
- cmd: java -version
build_script:
- mvnw.cmd -B install -Dmaven.test.skip=true -Dmaven.javadoc.skip=true -Dmaven.source.skip=true -Dmaven.deploy.skip=true
test_script:
- mvn package
build: off
- mvnw.cmd -B verify -Dmaven.javadoc.skip=true -Dmaven.source.skip=true -Dmaven.deploy.skip=true

0 comments on commit 9749297

Please sign in to comment.