This is an automated email from the ASF dual-hosted git repository. slachiewicz pushed a commit to branch asm991 in repository https://gitbox.apache.org/repos/asf/maven-jmod-plugin.git
commit c1f531d3d67c705ec2e845dd7c2ffbf9a55c3a21 Author: Sylwester Lachiewicz <[email protected]> AuthorDate: Sun Dec 21 22:46:23 2025 +0100 Bump asm to 9.9.1 --- pom.xml | 32 ++++++++++++-------------------- 1 file changed, 12 insertions(+), 20 deletions(-) diff --git a/pom.xml b/pom.xml index 284d055..ae6fa52 100644 --- a/pom.xml +++ b/pom.xml @@ -102,10 +102,20 @@ <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.0.3</version> + <version>1.5.2</version> + </dependency> + <dependency> + <groupId>commons-io</groupId> + <artifactId>commons-io</artifactId> + <version>2.21.0</version> </dependency> <dependency> <groupId>org.apache.maven.shared</groupId> @@ -142,28 +152,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>
