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 1a832a896a5dacbbcfa0215b64ba22312d0c7351 Author: Sylwester Lachiewicz <[email protected]> AuthorDate: Sun Dec 21 22:51:08 2025 +0100 Cleanup dependencies --- pom.xml | 26 ++++++++++++++++---------- 1 file changed, 16 insertions(+), 10 deletions(-) diff --git a/pom.xml b/pom.xml index ae6fa52..348de23 100644 --- a/pom.xml +++ b/pom.xml @@ -102,25 +102,31 @@ <version>${version.maven-plugin-tools}</version> <scope>provided</scope> </dependency> - <dependency> - <groupId>org.ow2.asm</groupId> - <artifactId>asm</artifactId> - <version>9.9.1</version> - </dependency> <dependency> <groupId>org.codehaus.plexus</groupId> <artifactId>plexus-java</artifactId> <version>1.5.2</version> - </dependency> - <dependency> - <groupId>commons-io</groupId> - <artifactId>commons-io</artifactId> - <version>2.21.0</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>
