attempting to downgrade to oracle jdk 9 because of stupid jdk 10 deprecation

This commit is contained in:
Sebastian Stenzel
2018-10-31 15:56:18 +01:00
parent 050a6e6a57
commit eba0935900
2 changed files with 4 additions and 4 deletions

View File

@@ -1,7 +1,7 @@
language: java
sudo: false
jdk:
- openjdk10
- oraclejdk9
cache:
directories:
- $HOME/.m2

View File

@@ -317,9 +317,9 @@
<artifactId>maven-compiler-plugin</artifactId>
<version>3.8.0</version>
<configuration>
<source>10</source>
<target>10</target>
<release>10</release>
<source>9</source>
<target>9</target>
<release>9</release>
<annotationProcessorPaths>
<path>
<groupId>com.google.dagger</groupId>