Skip to content

Commit

Permalink
Change minimum java to 1.8 to fix maven
Browse files Browse the repository at this point in the history
  • Loading branch information
unsupervisednn committed Feb 2, 2020
1 parent cc57526 commit 19e0a57
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions tool/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -185,8 +185,8 @@ Licensed under the BSD-3-Clause license. See LICENSE file in the project root fo
<execution>
<id>default-compile</id>
<configuration>
<source>1.6</source>
<target>1.6</target>
<source>1.8</source>
<target>1.8</target>
<compilerArgs>
<arg>-Xlint</arg>
<arg>-Xlint:-serial</arg>
Expand All @@ -196,8 +196,8 @@ Licensed under the BSD-3-Clause license. See LICENSE file in the project root fo
<execution>
<id>default-testCompile</id>
<configuration>
<source>1.6</source>
<target>1.6</target>
<source>1.8</source>
<target>1.8</target>
<compilerArgs>
<arg>-Xlint</arg>
<arg>-Xlint:-serial</arg>
Expand Down

0 comments on commit 19e0a57

Please sign in to comment.