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
|
Description: specifying the versions of dependencies in the
dependencyManagement section of the parent POM. Otherwise no version number
whill be shipped in the binary package for these dependencies.
Author: Pierre Gruet <pgt@debian.org>
Bug-Debian: https://bugs.debian.org/1021485
Forwarded: https://github.com/codehaus-plexus/plexus-interactivity/issues/34
Last-Update: 2022-10-09
--- a/pom.xml
+++ b/pom.xml
@@ -51,4 +51,19 @@
</plugin>
</plugins>
</build>
+
+ <dependencyManagement>
+ <dependencies>
+ <dependency>
+ <groupId>org.codehaus.plexus</groupId>
+ <artifactId>plexus-utils</artifactId>
+ <version>3.3.1</version>
+ </dependency>
+ <dependency>
+ <groupId>org.codehaus.plexus</groupId>
+ <artifactId>plexus-container-default</artifactId>
+ <version>2.1.1</version>
+ </dependency>
+ </dependencies>
+ </dependencyManagement>
</project>
|