1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
|
Description: Adding colt in pom.xml dependencies
colt is added using systemPath as its Debian packaging does not include Maven
files.
Author: Pierre Gruet <pgt@debian.org>
Forwarded: not-needed
Last-Update: 2020-08-29
--- a/pom.xml
+++ b/pom.xml
@@ -206,6 +206,8 @@
<groupId>colt</groupId>
<artifactId>colt</artifactId>
<version>1.2.0</version>
+ <scope>system</scope>
+ <systemPath>/usr/share/java/colt.jar</systemPath>
</dependency>
<dependency>
|