Skip to content

Commit

Permalink
try to force JDK 7 with maven-compiler-plugin
Browse files Browse the repository at this point in the history
  • Loading branch information
dnolen committed May 8, 2015
1 parent 6ff80dc commit 794d758
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions pom.template.xml
Expand Up @@ -244,6 +244,15 @@
<keyname>Clojure/core</keyname>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.1</version>
<configuration>
<source>1.7</source>
<target>1.7</target>
</configuration>
</plugin>
</plugins>
</build>

Expand Down

0 comments on commit 794d758

Please sign in to comment.