1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
|
Description: adding missing jaxb-api dependency in pom
Author: Pierre Gruet <pgt@debian.org>
Forwarded: https://github.com/CampagneLaboratory/goby3/issues/10
Last-Update: 2021-11-23
--- a/goby-distribution/pom.xml
+++ b/goby-distribution/pom.xml
@@ -389,5 +389,10 @@
<artifactId>distlib</artifactId>
<version>debian</version>
</dependency>
+ <dependency>
+ <groupId>javax.xml.bind</groupId>
+ <artifactId>jaxb-api</artifactId>
+ <version>debian</version>
+ </dependency>
</dependencies>
</project>
|