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

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


The following commit(s) were added to refs/heads/master by this push:
     new 9742e85  Update parent to 47 (#82)
9742e85 is described below

commit 9742e85bba913644d10222fedfd1592aaa96aee9
Author: Matthias Bünger <[email protected]>
AuthorDate: Wed Feb 18 06:10:03 2026 +0100

    Update parent to 47 (#82)
---
 pom.xml                              | 4 +---
 src/it/basic/pom.xml                 | 4 ++--
 src/it/dependenciesToAnalyze/pom.xml | 4 ++--
 src/it/includeClasspath/pom.xml      | 4 ++--
 src/it/module/pom.xml                | 2 +-
 src/it/multirelease/pom.xml          | 6 +++---
 src/it/package/pom.xml               | 4 ++--
 src/it/unsupported-api_main/pom.xml  | 4 ++--
 src/it/unsupported-api_test/pom.xml  | 4 ++--
 9 files changed, 17 insertions(+), 19 deletions(-)

diff --git a/pom.xml b/pom.xml
index e4bc8ba..0538ab5 100644
--- a/pom.xml
+++ b/pom.xml
@@ -23,7 +23,7 @@ under the License.
   <parent>
     <groupId>org.apache.maven.plugins</groupId>
     <artifactId>maven-plugins</artifactId>
-    <version>45</version>
+    <version>47</version>
     <relativePath />
   </parent>
 
@@ -70,8 +70,6 @@ under the License.
     <mavenVersion>3.9.12</mavenVersion>
     <javaVersion>8</javaVersion>
     
<project.build.outputTimestamp>2025-12-28T19:00:01Z</project.build.outputTimestamp>
-
-    <version.maven-invoker-plugin>3.9.1</version.maven-invoker-plugin>
   </properties>
 
   <dependencies>
diff --git a/src/it/basic/pom.xml b/src/it/basic/pom.xml
index 7c9f2b2..d39b7e5 100644
--- a/src/it/basic/pom.xml
+++ b/src/it/basic/pom.xml
@@ -28,8 +28,8 @@ under the License.
   <version>1.0-SNAPSHOT</version>
   
   <properties>
-    <maven.compiler.source>1.6</maven.compiler.source>
-    <maven.compiler.target>1.6</maven.compiler.target>
+    <maven.compiler.source>1.8</maven.compiler.source>
+    <maven.compiler.target>1.8</maven.compiler.target>
   </properties>
   
   <build>
diff --git a/src/it/dependenciesToAnalyze/pom.xml 
b/src/it/dependenciesToAnalyze/pom.xml
index 7a39404..4712656 100644
--- a/src/it/dependenciesToAnalyze/pom.xml
+++ b/src/it/dependenciesToAnalyze/pom.xml
@@ -28,8 +28,8 @@ under the License.
   <version>1.0-SNAPSHOT</version>
   
   <properties>
-    <maven.compiler.source>1.6</maven.compiler.source>
-    <maven.compiler.target>1.6</maven.compiler.target>
+    <maven.compiler.source>1.8</maven.compiler.source>
+    <maven.compiler.target>1.8</maven.compiler.target>
   </properties>
   
   <build>
diff --git a/src/it/includeClasspath/pom.xml b/src/it/includeClasspath/pom.xml
index fbed96f..6089cd3 100644
--- a/src/it/includeClasspath/pom.xml
+++ b/src/it/includeClasspath/pom.xml
@@ -28,8 +28,8 @@ under the License.
   <version>1.0-SNAPSHOT</version>
   
   <properties>
-    <maven.compiler.source>1.6</maven.compiler.source>
-    <maven.compiler.target>1.6</maven.compiler.target>
+    <maven.compiler.source>1.8</maven.compiler.source>
+    <maven.compiler.target>1.8</maven.compiler.target>
   </properties>
   
   <build>
diff --git a/src/it/module/pom.xml b/src/it/module/pom.xml
index 6a8285b..95e9df2 100644
--- a/src/it/module/pom.xml
+++ b/src/it/module/pom.xml
@@ -37,7 +37,7 @@ under the License.
         <plugin>
           <groupId>org.apache.maven.plugins</groupId>
           <artifactId>maven-compiler-plugin</artifactId>
-          <version>3.7.0</version>
+          <version>@version.maven-compiler-plugin@</version>
         </plugin>
       </plugins>
     </pluginManagement>
diff --git a/src/it/multirelease/pom.xml b/src/it/multirelease/pom.xml
index 64be1c3..2ace9bb 100644
--- a/src/it/multirelease/pom.xml
+++ b/src/it/multirelease/pom.xml
@@ -28,8 +28,8 @@ under the License.
   <version>1.0-SNAPSHOT</version>
   
   <properties>
-    <maven.compiler.source>1.6</maven.compiler.source>
-    <maven.compiler.target>1.6</maven.compiler.target>
+    <maven.compiler.source>1.8</maven.compiler.source>
+    <maven.compiler.target>1.8</maven.compiler.target>
   </properties>
   
   <build>
@@ -56,7 +56,7 @@ under the License.
     <dependency>
       <groupId>org.apache.logging.log4j</groupId>
       <artifactId>log4j-api</artifactId>
-      <version>2.9.0</version>
+      <version>2.25.3</version>
     </dependency>
   </dependencies>
 </project>
\ No newline at end of file
diff --git a/src/it/package/pom.xml b/src/it/package/pom.xml
index 674f7d7..a8b746c 100644
--- a/src/it/package/pom.xml
+++ b/src/it/package/pom.xml
@@ -30,8 +30,8 @@ under the License.
   <url>https://issues.apache.org/jira/browse/MJDEPS-12</url>
   
   <properties>
-    <maven.compiler.source>1.6</maven.compiler.source>
-    <maven.compiler.target>1.6</maven.compiler.target>
+    <maven.compiler.source>1.8</maven.compiler.source>
+    <maven.compiler.target>1.8</maven.compiler.target>
   </properties>
   
   <build>
diff --git a/src/it/unsupported-api_main/pom.xml 
b/src/it/unsupported-api_main/pom.xml
index c64ae57..0fb6d0c 100644
--- a/src/it/unsupported-api_main/pom.xml
+++ b/src/it/unsupported-api_main/pom.xml
@@ -28,8 +28,8 @@ under the License.
   <version>1.0-SNAPSHOT</version>
   
   <properties>
-    <maven.compiler.source>1.6</maven.compiler.source>
-    <maven.compiler.target>1.6</maven.compiler.target>
+    <maven.compiler.source>1.8</maven.compiler.source>
+    <maven.compiler.target>1.8</maven.compiler.target>
   </properties>
   
   <build>
diff --git a/src/it/unsupported-api_test/pom.xml 
b/src/it/unsupported-api_test/pom.xml
index 1e50590..8de92ee 100644
--- a/src/it/unsupported-api_test/pom.xml
+++ b/src/it/unsupported-api_test/pom.xml
@@ -28,8 +28,8 @@ under the License.
   <version>1.0-SNAPSHOT</version>
   
   <properties>
-    <maven.compiler.source>1.6</maven.compiler.source>
-    <maven.compiler.target>1.6</maven.compiler.target>
+    <maven.compiler.source>1.8</maven.compiler.source>
+    <maven.compiler.target>1.8</maven.compiler.target>
   </properties>
   
   <build>

Reply via email to