File: set-asm-version.patch

package info (click to toggle)
jacoco 0.8.14-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 6,400 kB
  • sloc: java: 43,503; xml: 6,542; javascript: 1,316; sh: 210; makefile: 2
file content (27 lines) | stat: -rw-r--r-- 878 bytes parent folder | download | duplicates (2)
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>