File: jsr305-dependency.patch

package info (click to toggle)
surefire 2.22.3-4
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 9,884 kB
  • sloc: java: 65,603; xml: 16,675; jsp: 5; sh: 3; makefile: 2
file content (18 lines) | stat: -rw-r--r-- 552 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
Description: Adds the dependency on JSR 305 (why is the dependency defined in the parent pom ignored?)
Author: Emmanuel Bourg <ebourg@apache.org>
Forwarded: not-needed
--- a/surefire-api/pom.xml
+++ b/surefire-api/pom.xml
@@ -45,6 +45,12 @@
       <artifactId>jsr305</artifactId>
       <scope>provided</scope>
     </dependency>
+    <dependency>
+      <groupId>com.google.code.findbugs</groupId>
+      <artifactId>jsr305</artifactId>
+      <version>2.0.1</version>
+      <scope>provided</scope>
+    </dependency>
   </dependencies>
 
   <build>