File: 03-maven-plugin-testing-compatibility.patch

package info (click to toggle)
plexus-utils2 3.3.0-1
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 2,024 kB
  • sloc: java: 25,796; xml: 166; makefile: 8; sh: 5
file content (18 lines) | stat: -rw-r--r-- 567 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
Description: Adds the missing maven-core dependency since it's no longer provided by maven-plugin-testing-harness 2.x
Author: Emmanuel Bourg <ebourg@apache.org>
Forwarded: no
--- a/pom.xml
+++ b/pom.xml
@@ -70,6 +70,12 @@
       <scope>test</scope>
     </dependency>
     <dependency>
+      <groupId>org.apache.maven</groupId>
+      <artifactId>maven-core</artifactId>
+      <version>3.x</version>
+      <scope>test</scope>
+    </dependency>
+    <dependency>
       <groupId>junit</groupId>
       <artifactId>junit</artifactId>
       <version>4.12</version>