You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by ol...@apache.org on 2022/12/21 00:21:05 UTC

[maven-invoker-plugin] 01/01: build with jdk19

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

olamy pushed a commit to branch jdk19-build
in repository https://gitbox.apache.org/repos/asf/maven-invoker-plugin.git

commit ea6ed4ccd5d5e2660cc49649409163d5558bd1cf
Author: Olivier Lamy <ol...@apache.org>
AuthorDate: Wed Dec 21 10:20:53 2022 +1000

    build with jdk19
    
    Signed-off-by: Olivier Lamy <ol...@apache.org>
---
 .github/workflows/maven-verify.yml | 6 ++----
 Jenkinsfile                        | 3 +--
 pom.xml                            | 1 +
 3 files changed, 4 insertions(+), 6 deletions(-)

diff --git a/.github/workflows/maven-verify.yml b/.github/workflows/maven-verify.yml
index e2a3e7a..8a95815 100644
--- a/.github/workflows/maven-verify.yml
+++ b/.github/workflows/maven-verify.yml
@@ -26,7 +26,5 @@ jobs:
     name: Verify
     uses: apache/maven-gh-actions-shared/.github/workflows/maven-verify.yml@v3
     with:
-      maven-args: '-D"invoker.streamLogsOnFailures" -U'
-      # put this back when 3.4.0 with jdk19 support has been released
-      #jdk-matrix: '[ "8", "11", "17", "19"]'
-      # verify-fail-fast: false
+      jdk-matrix: '[ "8", "11", "17", "19"]'
+      verify-fail-fast: false
diff --git a/Jenkinsfile b/Jenkinsfile
index e19d6a0..e257faf 100644
--- a/Jenkinsfile
+++ b/Jenkinsfile
@@ -17,5 +17,4 @@
  * under the License.
  */
 
-// put 19 back when 3.4.0 with jdk19 support has been released
-asfMavenTlpPlgnBuild(jdks:[ "8", "11", "17"])
+asfMavenTlpPlgnBuild(jdks:[ "8", "11", "17", "19"])
diff --git a/pom.xml b/pom.xml
index 6c26ee8..ad70bba 100644
--- a/pom.xml
+++ b/pom.xml
@@ -403,6 +403,7 @@ under the License.
             <plugin>
               <groupId>org.apache.maven.plugins</groupId>
               <artifactId>maven-invoker-plugin</artifactId>
+              <version>3.4.0</version>
               <configuration>
                 <cloneProjectsTo>${project.build.directory}/it</cloneProjectsTo>
                 <preBuildHookScript>setup</preBuildHookScript>