Made the build work again with JDK 8 (#1585)

This commit is contained in:
inder123 2019-10-03 15:08:39 -07:00 committed by GitHub
parent 0409a2ecab
commit 0e90771e45
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

28
pom.xml
View File

@ -63,28 +63,14 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.8.0</version>
<executions>
<execution>
<id>default-compile</id>
<configuration>
<release>9</release>
</configuration>
</execution>
<execution>
<id>base-compile</id>
<goals>
<goal>compile</goal>
</goals>
<configuration>
<excludes>
<exclude>module-info.java</exclude>
</excludes>
</configuration>
</execution>
</executions>
<version>3.8.1</version>
<configuration>
<release>6</release>
<excludes>
<release>6</release>
<exclude>**/module-info.java</exclude>
</excludes>
<source>1.6</source>
<target>1.6</target>
</configuration>
</plugin>
<plugin>