mirror of https://github.com/apache/maven.git
[MNG-6399] Lift JDK minimum to JDK 8
This commit is contained in:
parent
78ca83e2a4
commit
52b718614a
8
pom.xml
8
pom.xml
|
@ -47,8 +47,8 @@ under the License.
|
|||
|
||||
<properties>
|
||||
<maven.version>3.0.5</maven.version>
|
||||
<maven.compiler.source>1.7</maven.compiler.source>
|
||||
<maven.compiler.target>1.7</maven.compiler.target>
|
||||
<maven.compiler.source>1.8</maven.compiler.source>
|
||||
<maven.compiler.target>1.8</maven.compiler.target>
|
||||
<classWorldsVersion>2.6.0</classWorldsVersion>
|
||||
<commonsCliVersion>1.4</commonsCliVersion>
|
||||
<commonsLangVersion>3.8.1</commonsLangVersion>
|
||||
|
@ -580,11 +580,11 @@ under the License.
|
|||
<plugin>
|
||||
<groupId>org.codehaus.mojo</groupId>
|
||||
<artifactId>animal-sniffer-maven-plugin</artifactId>
|
||||
<version>1.17</version><!-- latest for Java 7 -->
|
||||
<version>1.20</version>
|
||||
<configuration>
|
||||
<signature>
|
||||
<groupId>org.codehaus.mojo.signature</groupId>
|
||||
<artifactId>java17</artifactId>
|
||||
<artifactId>java18</artifactId>
|
||||
<version>1.0</version>
|
||||
</signature>
|
||||
</configuration>
|
||||
|
|
Loading…
Reference in New Issue