Author: echatellier Date: 2016-03-02 12:47:42 +0100 (Wed, 02 Mar 2016) New Revision: 4337 Url: http://forge.codelutin.com/projects/isis-fish/repository/revisions/4337 Log: Revert back compatibility to java 1.7 Modified: trunk/pom.xml Modified: trunk/pom.xml =================================================================== --- trunk/pom.xml 2016-03-01 17:14:02 UTC (rev 4336) +++ trunk/pom.xml 2016-03-02 11:47:42 UTC (rev 4337) @@ -5,7 +5,7 @@ <parent> <groupId>org.nuiton</groupId> - <artifactId>mavenpom4redmine</artifactId> + <artifactId>mavenpom4Codelutin</artifactId> <version>7</version> </parent> @@ -298,7 +298,7 @@ <dependency> <groupId>com.bbn</groupId> <artifactId>openmap</artifactId> - <version>5.1.13</version> + <version>5.1.13-1</version> <scope>compile</scope> </dependency> @@ -552,9 +552,6 @@ <maven.compiler.target>1.7</maven.compiler.target> <signatureArtifactId>java17</signatureArtifactId> <signatureVersion>1.0</signatureVersion> - - <!-- issues status to include in changelog --> - <redmine.statusIds>3,10,11,18,19</redmine.statusIds> <!-- Dependencies version --> <jaxxVersion>2.28.2</jaxxVersion> @@ -561,7 +558,7 @@ <eugeneVersion>2.14</eugeneVersion> <topiaVersion>2.12-SNAPSHOT</topiaVersion> <hibernateVersion>5.1.0.Final</hibernateVersion> - <nuitonI18nVersion>3.4</nuitonI18nVersion> + <nuitonI18nVersion>3.3</nuitonI18nVersion> <nuitonWidgetsVersion>1.1.1</nuitonWidgetsVersion> <redmine.releaseFiles>target/isis-fish-${project.version}-bin.zip</redmine.releaseFiles> @@ -680,6 +677,35 @@ <plugins> <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-enforcer-plugin</artifactId> + <version>1.4.1</version> + <executions> + <execution> + <id>enforce-bytecode-version</id> + <goals> + <goal>enforce</goal> + </goals> + <configuration> + <rules> + <enforceBytecodeVersion> + <maxJdkVersion>1.7</maxJdkVersion> + </enforceBytecodeVersion> + </rules> + <fail>true</fail> + </configuration> + </execution> + </executions> + <dependencies> + <dependency> + <groupId>org.codehaus.mojo</groupId> + <artifactId>extra-enforcer-rules</artifactId> + <version>1.0-beta-4</version> + </dependency> + </dependencies> + </plugin> + + <plugin> <groupId>org.nuiton.eugene</groupId> <artifactId>eugene-maven-plugin</artifactId> <executions>
participants (1)
-
echatellier@users.forge.codelutin.com