This is an automated email from the ASF dual-hosted git repository. slachiewicz pushed a commit to branch cleanup in repository https://gitbox.apache.org/repos/asf/maven-jmod-plugin.git
commit 20e44d600678c2efea18f23326ff5f6ffbac13d7 Author: Sylwester Lachiewicz <[email protected]> AuthorDate: Sun Dec 21 22:46:23 2025 +0100 Bump plexus-java to 1.5.2 --- pom.xml | 38 ++++++++++++++++------------------ src/it/mjmod-20-set-main-class/pom.xml | 9 ++++++-- 2 files changed, 25 insertions(+), 22 deletions(-) diff --git a/pom.xml b/pom.xml index 284d055..348de23 100644 --- a/pom.xml +++ b/pom.xml @@ -105,12 +105,28 @@ <dependency> <groupId>org.codehaus.plexus</groupId> <artifactId>plexus-java</artifactId> - <version>1.0.3</version> + <version>1.5.2</version> + <exclusions> + <exclusion> + <groupId>org.ow2.asm</groupId> + <artifactId>asm</artifactId> + </exclusion> + <exclusion> + <groupId>com.thoughtworks.qdox</groupId> + <artifactId>qdox</artifactId> + </exclusion> + </exclusions> </dependency> <dependency> <groupId>org.apache.maven.shared</groupId> <artifactId>maven-shared-utils</artifactId> <version>3.4.2</version> + <exclusions> + <exclusion> + <groupId>commons-io</groupId> + <artifactId>commons-io</artifactId> + </exclusion> + </exclusions> </dependency> <dependency> <groupId>javax.inject</groupId> @@ -142,28 +158,10 @@ </excludes> </configuration> </plugin> - <plugin> - <artifactId>maven-enforcer-plugin</artifactId> - <executions> - <execution> - <id>enforce-bytecode-version</id> - <configuration> - <rules> - <enforceBytecodeVersion> - <maxJdkVersion>${maven.compiler.target}</maxJdkVersion> - <excludes> - <exclude>org.ow2.asm:asm</exclude> - </excludes> - </enforceBytecodeVersion> - <requireSameVersions /> - </rules> - </configuration> - </execution> - </executions> - </plugin> </plugins> </pluginManagement> </build> + <profiles> <profile> <id>run-its</id> diff --git a/src/it/mjmod-20-set-main-class/pom.xml b/src/it/mjmod-20-set-main-class/pom.xml index 6a52afe..b87ed06 100644 --- a/src/it/mjmod-20-set-main-class/pom.xml +++ b/src/it/mjmod-20-set-main-class/pom.xml @@ -49,11 +49,16 @@ <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> - <version>3.8.0</version> + <version>3.14.1</version> <configuration> <release>9</release> </configuration> </plugin> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-jar-plugin</artifactId> + <version>3.5.0</version> + </plugin> </plugins> </pluginManagement> <plugins> @@ -71,4 +76,4 @@ <module>greetings</module> </modules> -</project> \ No newline at end of file +</project>
