Skip to content

Commit

Permalink
Update to Java 7 in Maven POM
Browse files Browse the repository at this point in the history
´java.util.Objects`, which is being used in `Requirement`, has only been available since Java 7.
  • Loading branch information
joschi committed Jun 6, 2018
1 parent 3f0266e commit 570f611
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -59,10 +59,10 @@
<artifactId>maven-compiler-plugin</artifactId>
<version>3.1</version>
<configuration>
<source>1.6</source>
<target>1.6</target>
<testSource>1.6</testSource>
<testTarget>1.6</testTarget>
<source>1.7</source>
<target>1.7</target>
<testSource>1.7</testSource>
<testTarget>1.7</testTarget>
</configuration>
</plugin>
</plugins>
Expand Down

0 comments on commit 570f611

Please sign in to comment.