You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by kh...@apache.org on 2019/11/02 09:27:58 UTC

[maven] branch MNG-6399 created (now 10bae6c)

This is an automated email from the ASF dual-hosted git repository.

khmarbaise pushed a change to branch MNG-6399
in repository https://gitbox.apache.org/repos/asf/maven.git.


      at 10bae6c  [MNG-6399] - Lift JDK minimum to JDK 8

This branch includes the following new commits:

     new 10bae6c  [MNG-6399] - Lift JDK minimum to JDK 8

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.



[maven] 01/01: [MNG-6399] - Lift JDK minimum to JDK 8

Posted by kh...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

khmarbaise pushed a commit to branch MNG-6399
in repository https://gitbox.apache.org/repos/asf/maven.git

commit 10bae6c521e7d7e760d9a0c2e2e70a4858f5b9c8
Author: Karl Heinz Marbaise <kh...@apache.org>
AuthorDate: Sat Nov 2 10:27:41 2019 +0100

    [MNG-6399] - Lift JDK minimum to JDK 8
---
 pom.xml | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/pom.xml b/pom.xml
index c7ac485..e53a463 100644
--- a/pom.xml
+++ b/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>
@@ -579,11 +579,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.18</version>
         <configuration>
           <signature>
             <groupId>org.codehaus.mojo.signature</groupId>
-            <artifactId>java17</artifactId>
+            <artifactId>java18</artifactId>
             <version>1.0</version>
           </signature>
         </configuration>