You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@johnzon.apache.org by rm...@apache.org on 2019/10/27 17:59:29 UTC

[johnzon] branch master updated: JOHNZON-291 ensure we enforce maven 3.3 and java 1.8 to build

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

rmannibucau pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/johnzon.git


The following commit(s) were added to refs/heads/master by this push:
     new 99dc912  JOHNZON-291 ensure we enforce maven 3.3 and java 1.8 to build
99dc912 is described below

commit 99dc9121da85762b724c40f86e74c38511002041
Author: Romain Manni-Bucau <rm...@apache.org>
AuthorDate: Sun Oct 27 18:59:03 2019 +0100

    JOHNZON-291 ensure we enforce maven 3.3 and java 1.8 to build
---
 pom.xml | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/pom.xml b/pom.xml
index 6852af1..e22ff54 100644
--- a/pom.xml
+++ b/pom.xml
@@ -387,7 +387,7 @@
       <plugin>
         <groupId>org.apache.maven.plugins</groupId>
         <artifactId>maven-enforcer-plugin</artifactId>
-        <version>1.4</version>
+        <version>3.0.0-M2</version>
         <executions>
           <execution>
             <id>enforce-versions</id>
@@ -397,10 +397,10 @@
             <configuration>
               <rules>
                 <requireMavenVersion>
-                  <version>[3.1,)</version>
+                  <version>[3.3,)</version>
                 </requireMavenVersion>
                 <requireJavaVersion>
-                  <version>[${java-compile.version},)</version>
+                  <version>[${java-compile.version},1.9)</version>
                 </requireJavaVersion>
               </rules>
             </configuration>