You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by sl...@apache.org on 2020/01/28 00:45:35 UTC

[maven] 01/01: [MNG-3699] set minimum JDK to 8 - build with 14, 15

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

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

commit 314e2122c917069e2700ae9958c17a96de93f48d
Author: Sylwester Lachiewicz <sl...@apache.org>
AuthorDate: Wed Nov 7 20:30:00 2018 +0100

    [MNG-3699] set minimum JDK to 8 - build with 14, 15
---
 Jenkinsfile | 6 +++---
 pom.xml     | 1 +
 2 files changed, 4 insertions(+), 3 deletions(-)

diff --git a/Jenkinsfile b/Jenkinsfile
index 304fdc5..6b445a7 100644
--- a/Jenkinsfile
+++ b/Jenkinsfile
@@ -21,10 +21,10 @@ properties([buildDiscarder(logRotator(artifactNumToKeepStr: '5', numToKeepStr: e
 
 def buildOs = 'linux'
 def buildJdk = '8'
-def buildMvn = '3.6.0'
+def buildMvn = '3.6.2'
 def runITsOses = ['linux', 'windows']
-def runITsJdks = ['8', '11','12', '13']
-def runITsMvn = '3.6.0'
+def runITsJdks = ['8', '11', '12', '13', '14', '15']
+def runITsMvn = '3.6.2'
 def runITscommand = "mvn clean install -Prun-its,embedded -B -U -V" // -DmavenDistro=... -Dmaven.test.failure.ignore=true
 def tests
 
diff --git a/pom.xml b/pom.xml
index 3148a97..d3c66f0 100644
--- a/pom.xml
+++ b/pom.xml
@@ -46,6 +46,7 @@ under the License.
   <inceptionYear>2001</inceptionYear>
 
   <properties>
+    <javaVersion>8</javaVersion>
     <maven.version>3.0.5</maven.version>
     <maven.compiler.source>1.8</maven.compiler.source>
     <maven.compiler.target>1.8</maven.compiler.target>