Skip to content

Commit c81d8d0

Browse files
committed
Add appveyor.yml
This file defines the project configuration for AppVeyor which simply runs the relevant Maven goals for Java 7 and 8. Signed-off-by: Kevin Locke <[email protected]>
1 parent 831ce59 commit c81d8d0

File tree

1 file changed

+15
-0
lines changed

1 file changed

+15
-0
lines changed

appveyor.yml

+15
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
# http://www.appveyor.com/docs/appveyor-yml
2+
environment:
3+
matrix:
4+
- JAVA_HOME: C:\Program Files\Java\jdk1.7.0
5+
- JAVA_HOME: C:\Program Files\Java\jdk1.8.0
6+
install:
7+
# Log versions for debugging
8+
- java -version
9+
- mvn --version
10+
build_script:
11+
- mvn --batch-mode -DskipTests package
12+
test_script:
13+
- mvn --batch-mode test verify install
14+
cache:
15+
- C:\Users\appveyor\.m2

0 commit comments

Comments
 (0)