Skip to content

Commit

Permalink
Set JDK to 1.7 in Maven.
Browse files Browse the repository at this point in the history
  • Loading branch information
hsluoyz committed Sep 9, 2017
1 parent 30a111d commit 73a9ebd
Showing 1 changed file with 12 additions and 1 deletion.
13 changes: 12 additions & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,17 @@
<groupId>org.casbin</groupId>
<artifactId>jcasbin</artifactId>
<version>0.0.1-SNAPSHOT</version>

<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>1.7</source>
<target>1.7</target>
</configuration>
</plugin>
</plugins>
</build>

</project>

0 comments on commit 73a9ebd

Please sign in to comment.