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

cstamas pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/maven-resolver.git


The following commit(s) were added to refs/heads/master by this push:
     new 9abe2f11 [MRESOLVER-430] Build time Java 21 required (#358)
9abe2f11 is described below

commit 9abe2f117dbed7a6840b961ab2aa8033bbbccf32
Author: Tamas Cservenak <[email protected]>
AuthorDate: Wed Nov 8 20:10:25 2023 +0100

    [MRESOLVER-430] Build time Java 21 required (#358)
    
    Actually, 21.0.1 as 21 had a bug that one of two needed preconditions are 
always met in case of Maven (m-compiler-p always sets debug=true).
    
    ---
    
    https://issues.apache.org/jira/browse/MRESOLVER-430
---
 .github/workflows/maven-verify.yml | 3 ++-
 Jenkinsfile                        | 2 +-
 pom.xml                            | 2 +-
 3 files changed, 4 insertions(+), 3 deletions(-)

diff --git a/.github/workflows/maven-verify.yml 
b/.github/workflows/maven-verify.yml
index be6eeb61..437a03d7 100644
--- a/.github/workflows/maven-verify.yml
+++ b/.github/workflows/maven-verify.yml
@@ -26,6 +26,7 @@ jobs:
     name: Verify
     uses: apache/maven-gh-actions-shared/.github/workflows/maven-verify.yml@v3
     with:
+      ff-run: false
       ff-site-run: false
-      jdk-matrix: '[ "11", "17", "21" ]'
+      jdk-matrix: '[ "21" ]'
 
diff --git a/Jenkinsfile b/Jenkinsfile
index ef5393dd..27f09852 100644
--- a/Jenkinsfile
+++ b/Jenkinsfile
@@ -17,5 +17,5 @@
  * under the License.
  */
 
-asfMavenTlpStdBuild( 'jdks' : [ "11", "17", "21" ] )
+asfMavenTlpStdBuild( 'jdks' : [ "21" ] )
 
diff --git a/pom.xml b/pom.xml
index f0992919..17877992 100644
--- a/pom.xml
+++ b/pom.xml
@@ -100,7 +100,7 @@
     <!-- used by supplier and demo only -->
     <mavenVersion>4.0.0-alpha-8</mavenVersion>
     <minimalMavenBuildVersion>[3.8.8,)</minimalMavenBuildVersion>
-    <minimalJavaBuildVersion>[11.0.16,)</minimalJavaBuildVersion>
+    <minimalJavaBuildVersion>[21.0.1,)</minimalJavaBuildVersion>
     
<project.build.outputTimestamp>2023-11-02T11:01:10Z</project.build.outputTimestamp>
   </properties>
 

Reply via email to