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

michaelo pushed a commit to branch maven-plugin-tools-3.x
in repository https://gitbox.apache.org/repos/asf/maven-plugin-tools.git

commit 18c156bc9d6d79f81d614d29f92a49b1cad5f2c2
Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
AuthorDate: Sun Sep 29 09:45:20 2024 +0200

    Bump maven3Version from 3.9.8 to 3.9.9 (#321)
    
    Updates `org.apache.maven:maven-model-builder` from 3.9.8 to 3.9.9
    - [Release notes](https://github.com/apache/maven/releases)
    - 
[Commits](https://github.com/apache/maven/compare/maven-3.9.8...maven-3.9.9)
    
    Updates `org.apache.maven:maven-model` from 3.9.8 to 3.9.9
    - [Release notes](https://github.com/apache/maven/releases)
    - 
[Commits](https://github.com/apache/maven/compare/maven-3.9.8...maven-3.9.9)
    
    Updates `org.apache.maven:maven-plugin-api` from 3.9.8 to 3.9.9
    - [Release notes](https://github.com/apache/maven/releases)
    - 
[Commits](https://github.com/apache/maven/compare/maven-3.9.8...maven-3.9.9)
    
    Updates `org.apache.maven:maven-core` from 3.9.8 to 3.9.9
    - [Release notes](https://github.com/apache/maven/releases)
    - 
[Commits](https://github.com/apache/maven/compare/maven-3.9.8...maven-3.9.9)
    
    Updates `org.apache.maven:maven-artifact` from 3.9.8 to 3.9.9
    - [Release notes](https://github.com/apache/maven/releases)
    - 
[Commits](https://github.com/apache/maven/compare/maven-3.9.8...maven-3.9.9)
    
    Updates `org.apache.maven:maven-settings` from 3.9.8 to 3.9.9
    - [Release notes](https://github.com/apache/maven/releases)
    - 
[Commits](https://github.com/apache/maven/compare/maven-3.9.8...maven-3.9.9)
    
    Updates `org.apache.maven:maven-repository-metadata` from 3.9.8 to 3.9.9
    - [Release notes](https://github.com/apache/maven/releases)
    - 
[Commits](https://github.com/apache/maven/compare/maven-3.9.8...maven-3.9.9)
    
    ---
    Signed-off-by: dependabot[bot] <supp...@github.com>
    Co-authored-by: dependabot[bot] 
<49699333+dependabot[bot]@users.noreply.github.com>
    Co-authored-by: Sylwester Lachiewicz <slachiew...@apache.org>
---
 maven-plugin-plugin/src/it/java-basic-annotations/verify.groovy     | 6 +++---
 .../src/it/plugin-no-fork-report/verify.groovy                      | 2 +-
 .../src/it/plugin-report-annotations/verify.groovy                  | 2 +-
 maven-plugin-report-plugin/src/it/plugin-report/verify.groovy       | 2 +-
 pom.xml                                                             | 2 +-
 5 files changed, 7 insertions(+), 7 deletions(-)

diff --git a/maven-plugin-plugin/src/it/java-basic-annotations/verify.groovy 
b/maven-plugin-plugin/src/it/java-basic-annotations/verify.groovy
index f10f7ce3..13ab8806 100644
--- a/maven-plugin-plugin/src/it/java-basic-annotations/verify.groovy
+++ b/maven-plugin-plugin/src/it/java-basic-annotations/verify.groovy
@@ -6,9 +6,9 @@
  * to you under the Apache License, Version 2.0 (the
  * "License"); you may not use this file except in compliance
  * with the License.  You may obtain a copy of the License at
- * 
+ *
  *   http://www.apache.org/licenses/LICENSE-2.0
- * 
+ *
  * Unless required by applicable law or agreed to in writing,
  * software distributed under the License is distributed on an
  * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
@@ -28,7 +28,7 @@ assert descriptorFile.isFile()
 def pluginDescriptor = new XmlParser().parse( descriptorFile );
 
 assert pluginDescriptor.requiredJavaVersion.text() == '1.8'
-assert pluginDescriptor.requiredMavenVersion.text() == '3.9.8'
+assert pluginDescriptor.requiredMavenVersion.text() == '3.9.9'
 
 def mojo = pluginDescriptor.mojos.mojo.findAll{ it.goal.text() == "first" }[0]
 
diff --git 
a/maven-plugin-report-plugin/src/it/plugin-no-fork-report/verify.groovy 
b/maven-plugin-report-plugin/src/it/plugin-no-fork-report/verify.groovy
index eb6aa8d1..84266c9a 100644
--- a/maven-plugin-report-plugin/src/it/plugin-no-fork-report/verify.groovy
+++ b/maven-plugin-report-plugin/src/it/plugin-no-fork-report/verify.groovy
@@ -27,7 +27,7 @@ assert !pluginInfo.text.contains('Memory')
 assert !pluginInfo.text.contains('Disk Space')
 // check JDK and Maven requirements
 assert pluginInfo.text.contains('1.8')
-assert pluginInfo.text.contains('3.9.8')
+assert pluginInfo.text.contains('3.9.9')
 
 // deprecated info and description
 assert pluginInfo.text.contains('<div><strong>Deprecated.</strong> You don\'t 
use test goals, do you?</div><br />')
diff --git 
a/maven-plugin-report-plugin/src/it/plugin-report-annotations/verify.groovy 
b/maven-plugin-report-plugin/src/it/plugin-report-annotations/verify.groovy
index 4ca707ca..414d5690 100644
--- a/maven-plugin-report-plugin/src/it/plugin-report-annotations/verify.groovy
+++ b/maven-plugin-report-plugin/src/it/plugin-report-annotations/verify.groovy
@@ -27,7 +27,7 @@ assert !pluginInfo.text.contains('Memory')
 assert !pluginInfo.text.contains('Disk Space')
 // check JDK and Maven requirements
 assert pluginInfo.text.contains('1.8')
-assert pluginInfo.text.contains('3.9.8')
+assert pluginInfo.text.contains('3.9.9')
 
 // deprecated info and description
 assert pluginInfo.text.contains('<div><strong>Deprecated.</strong> You don\'t 
use test goals, do you?</div><br />')
diff --git a/maven-plugin-report-plugin/src/it/plugin-report/verify.groovy 
b/maven-plugin-report-plugin/src/it/plugin-report/verify.groovy
index 50afe50e..c79e484d 100644
--- a/maven-plugin-report-plugin/src/it/plugin-report/verify.groovy
+++ b/maven-plugin-report-plugin/src/it/plugin-report/verify.groovy
@@ -26,7 +26,7 @@ assert !pluginInfo.text.contains('Memory')
 assert !pluginInfo.text.contains('Disk Space')
 // check JDK and Maven requirements
 assert pluginInfo.text.contains('1.8')
-assert pluginInfo.text.contains('3.9.8')
+assert pluginInfo.text.contains('3.9.9')
 
 // deprecated info and description
 assert pluginInfo.text.contains('<div><strong>Deprecated.</strong> You don\'t 
use test goals, do you?</div><br />')
diff --git a/pom.xml b/pom.xml
index 56ae44f5..a647d8ef 100644
--- a/pom.xml
+++ b/pom.xml
@@ -93,7 +93,7 @@
     <javaVersion>8</javaVersion>
     <pluginTestingHarnessVersion>3.3.0</pluginTestingHarnessVersion>
     <maven4Version>4.0.0-alpha-4</maven4Version>
-    <maven3Version>3.9.8</maven3Version>
+    <maven3Version>3.9.9</maven3Version>
     <resolverVersion>1.9.20</resolverVersion>
     <slf4jVersion>1.7.36</slf4jVersion>
     <antVersion>1.10.14</antVersion>

Reply via email to