1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27
|
Description: Because libasm-java doesn't provide an asm-bom POM, we
add it to debian/maven.ignoreRules but also need to set a version
for uses the asm artifacts. (The version specified in this patch
is immaterial, as it will be rewritten by debian/maven.rules.)
Author: tony mancill <tmancill@debian.org>
Forwarded: not-needed
--- a/org.jacoco.core/pom.xml
+++ b/org.jacoco.core/pom.xml
@@ -29,14 +29,17 @@
<dependency>
<groupId>org.ow2.asm</groupId>
<artifactId>asm</artifactId>
+ <version>debian</version>
</dependency>
<dependency>
<groupId>org.ow2.asm</groupId>
<artifactId>asm-commons</artifactId>
+ <version>debian</version>
</dependency>
<dependency>
<groupId>org.ow2.asm</groupId>
<artifactId>asm-tree</artifactId>
+ <version>debian</version>
</dependency>
</dependencies>
|