forked from igor-baiborodine/java-various-examples
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.travis.yml
More file actions
24 lines (19 loc) · 662 Bytes
/
.travis.yml
File metadata and controls
24 lines (19 loc) · 662 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
language: java
jdk:
- oraclejdk8
before_install:
- sed -i.bak -e 's|https://nexus.codehaus.org/snapshots/|https://oss.sonatype.org/content/repositories/codehaus-snapshots/|g' ~/.m2/settings.xml
env:
- TEST_DIR=jpetstore-6-jpa
- TEST_DIR=jpetstore-6-mongodb
- TEST_DIR=jpetstore-6-spring-boot
- TEST_DIR=rest-webapp-jersey-example
- TEST_DIR=rest-webapp-jersey-mongo-example
- TEST_DIR=rest-webapp-spring-mvc-example
- TEST_DIR=mybatis-xml-example
- TEST_DIR=mybatis-annotations-spring-example
- TEST_DIR=spring-jpa-hsqldb-example
- TEST_DIR=spring-jpa-unitils-example
script: cd $TEST_DIR && mvn test
notifications:
email: false