File: missing-dependency-management-entries.patch

package info (click to toggle)
plexus-compiler 2.8.5-1
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 1,012 kB
  • sloc: java: 6,809; xml: 590; makefile: 2
file content (29 lines) | stat: -rw-r--r-- 876 bytes parent folder | download
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
28
29
Description: Add the missing dependency management entries that should be
 inherited from the ignored parent pom. This fixes a Maven warning displayed
 when invoking the maven-compiler-plugin.
Author: Emmanuel Bourg <ebourg@apache.org>
Forwarded: not-needed
--- a/pom.xml
+++ b/pom.xml
@@ -64,6 +64,11 @@
         <scope>test</scope>
         <version>4.12</version>
       </dependency>
+      <dependency>
+        <groupId>org.codehaus.plexus</groupId>
+        <artifactId>plexus-utils</artifactId>
+        <version>3.0.22</version>
+      </dependency>
     </dependencies>
   </dependencyManagement>
   <dependencies>
--- a/plexus-compiler-api/pom.xml
+++ b/plexus-compiler-api/pom.xml
@@ -21,6 +21,7 @@
     <dependency>
       <groupId>junit</groupId>
       <artifactId>junit</artifactId>
+      <scope>test</scope>
     </dependency>
   </dependencies>
 </project>