This commit adds the necessary configuration to build the project on Travis CI. First, the main project is built using Java 7 then the samples are built using Java 8. Closes gh-58
6 lines
137 B
YAML
6 lines
137 B
YAML
language: java
|
|
script:
|
|
- jdk_switcher use oraclejdk7
|
|
- "./gradlew build"
|
|
- jdk_switcher use oraclejdk8
|
|
- "./gradlew buildSamples" |