Skip to content

Commit

Permalink
fix pom version and add compiler plugin
Browse files Browse the repository at this point in the history
  • Loading branch information
davidmoten committed Dec 14, 2016
1 parent 7b99ab5 commit f2eeeb9
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 1 deletion.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
target
10 changes: 9 additions & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

<groupId>org.scilab.forge</groupId>
<artifactId>jlatexmath</artifactId>
<version>1.0.5</version>
<version>1.0.5-SNAPSHOT</version>
<packaging>jar</packaging>

<name>JLaTeXMath</name>
Expand Down Expand Up @@ -42,6 +42,14 @@
<sourceDirectory>src</sourceDirectory>

<plugins>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.6.0</version>
<configuration>
<source>1.8</source>
<target>1.8</target>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
Expand Down

0 comments on commit f2eeeb9

Please sign in to comment.