Skip to content

Commit

Permalink
Merge pull request #13 from levigo/feature/general-java-9-support-#10
Browse files Browse the repository at this point in the history
Lift source and target configuration of maven-compiler-plugin
  • Loading branch information
Matthäus Mayer committed May 6, 2016
2 parents ec54007 + 7cd4d65 commit f56cacb
Showing 1 changed file with 25 additions and 24 deletions.
49 changes: 25 additions & 24 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -38,10 +38,10 @@
</distributionManagement>

<scm>
<connection>scm:git:ssh://github.com/levigo/jbig2-imageio.git</connection>
<connection>scm:git:ssh://github.com/levigo/jbig2-imageio.git</connection>
<developerConnection>scm:git:ssh://[email protected]/levigo/jbig2-imageio.git</developerConnection>
<url>https://github.com/levigo/jbig2-imageio</url>
<tag>HEAD</tag>
<url>https://github.com/levigo/jbig2-imageio</url>
<tag>HEAD</tag>
</scm>

<dependencies>
Expand All @@ -57,9 +57,10 @@
<plugins>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.5.1</version>
<configuration>
<source>1.5</source>
<target>1.5</target>
<source>1.7</source>
<target>1.7</target>
<debug>false</debug>
<optimize>true</optimize>
</configuration>
Expand Down Expand Up @@ -101,25 +102,25 @@
</executions>
</plugin>

<plugin>
<artifactId>maven-release-plugin</artifactId>
<version>2.4.2</version>
<configuration>
<autoVersionSubmodules>true</autoVersionSubmodules>
<!-- Keep changes in the local repo, push will be done afterwards -->
<pushChanges>false</pushChanges>
<localCheckout>true</localCheckout>
<!-- Use a better name for the tag -->
<tagNameFormat>${artifactId}-${project.version}</tagNameFormat>
</configuration>
<dependencies>
<dependency>
<groupId>org.apache.maven.scm</groupId>
<artifactId>maven-scm-provider-gitexe</artifactId>
<version>1.9</version>
</dependency>
</dependencies>
</plugin>
<plugin>
<artifactId>maven-release-plugin</artifactId>
<version>2.4.2</version>
<configuration>
<autoVersionSubmodules>true</autoVersionSubmodules>
<!-- Keep changes in the local repo, push will be done afterwards -->
<pushChanges>false</pushChanges>
<localCheckout>true</localCheckout>
<!-- Use a better name for the tag -->
<tagNameFormat>${project.artifactId}-${project.version}</tagNameFormat>
</configuration>
<dependencies>
<dependency>
<groupId>org.apache.maven.scm</groupId>
<artifactId>maven-scm-provider-gitexe</artifactId>
<version>1.9</version>
</dependency>
</dependencies>
</plugin>
</plugins>
</build>

Expand Down

0 comments on commit f56cacb

Please sign in to comment.