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 30 31 32 33 34 35 36 37 38 39 40 41 42
|
Description: Specifies the missing versions of the dependencies.
The versions are actually specified in a parent pom that is not available
in Debian, and for some reason the Maven rules don't work to substitute
these versions automatically.
Author: Emmanuel Bourg <ebourg@apache.org>
Forwarded: not-needed
--- a/plexus-compiler-api/pom.xml
+++ b/plexus-compiler-api/pom.xml
@@ -17,10 +17,13 @@
<dependency>
<groupId>org.codehaus.plexus</groupId>
<artifactId>plexus-utils</artifactId>
+ <version>debian</version>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
+ <version>3.x</version>
+ <scope>test</scope>
</dependency>
</dependencies>
</project>
--- a/plexus-compilers/plexus-compiler-javac/pom.xml
+++ b/plexus-compilers/plexus-compiler-javac/pom.xml
@@ -16,6 +16,7 @@
<dependency>
<groupId>org.codehaus.plexus</groupId>
<artifactId>plexus-utils</artifactId>
+ <version>debian</version>
</dependency>
</dependencies>
--- a/plexus-compilers/pom.xml
+++ b/plexus-compilers/pom.xml
@@ -26,6 +26,7 @@
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
+ <version>3.x</version>
<scope>test</scope>
</dependency>
<dependency>
|