Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorStuart McCulloch2020-12-20 22:13:51 +0000
committerStuart McCulloch2020-12-20 22:13:51 +0000
commit9536d0591d081a15a16343e59101234734dfe3c8 (patch)
tree06d03da14dddbaedb56ffdd411ec8e4d69ae253a
parentfe5a2004cba83d071a063e8eac9f1f624387485b (diff)
downloadorg.eclipse.sisu.mojos-9536d0591d081a15a16343e59101234734dfe3c8.tar.gz
org.eclipse.sisu.mojos-9536d0591d081a15a16343e59101234734dfe3c8.tar.xz
org.eclipse.sisu.mojos-9536d0591d081a15a16343e59101234734dfe3c8.zip
Bug 563526: require Java 7 for building
-rw-r--r--pom.xml12
1 files changed, 6 insertions, 6 deletions
diff --git a/pom.xml b/pom.xml
index dc82503..be8b314 100644
--- a/pom.xml
+++ b/pom.xml
@@ -77,8 +77,8 @@
</ciManagement>
<properties>
- <maven.compiler.source>1.6</maven.compiler.source>
- <maven.compiler.target>1.6</maven.compiler.target>
+ <maven.compiler.source>1.7</maven.compiler.source>
+ <maven.compiler.target>1.7</maven.compiler.target>
</properties>
<dependencies>
@@ -176,13 +176,13 @@
<configuration>
<signature>
<groupId>org.codehaus.mojo.signature</groupId>
- <artifactId>java16</artifactId>
- <version>1.1</version>
+ <artifactId>java17</artifactId>
+ <version>1.0</version>
</signature>
</configuration>
<executions>
<execution>
- <id>check-java6</id>
+ <id>check-java7</id>
<phase>package</phase>
<goals>
<goal>check</goal>
@@ -196,7 +196,7 @@
<configuration>
<rules>
<enforceBytecodeVersion>
- <maxJdkVersion>1.6</maxJdkVersion>
+ <maxJdkVersion>1.7</maxJdkVersion>
</enforceBytecodeVersion>
</rules>
</configuration>

Back to the top