Skip to content

Commit

Permalink
Bumped JDK versions to 1.7 in POM.xml
Browse files Browse the repository at this point in the history
  • Loading branch information
LordFokas committed Jan 4, 2017
1 parent 9cd340f commit d0978f5
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -482,10 +482,10 @@
</build>
</profile>
<profile>
<id>use 1.6 compiler</id>
<id>use 1.7 compiler</id>
<activation>
<file>
<exists>/usr/lib/jvm/java-6-openjdk-amd64/bin/javac</exists>
<exists>/usr/lib/jvm/java-7-openjdk-amd64/bin/javac</exists>
</file>
</activation>
<build>
Expand All @@ -495,11 +495,11 @@
<artifactId>maven-compiler-plugin</artifactId>
<version>3.3</version>
<configuration>
<source>1.6</source>
<target>1.6</target>
<source>1.7</source>
<target>1.7</target>
<verbose>true</verbose>
<fork>true</fork>
<executable>/usr/lib/jvm/java-6-openjdk-amd64/bin/javac</executable>
<executable>/usr/lib/jvm/java-7-openjdk-amd64/bin/javac</executable>
</configuration>
</plugin>
</plugins>
Expand Down

0 comments on commit d0978f5

Please sign in to comment.