You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: biojava-structure/pom.xml
+14Lines changed: 14 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -62,10 +62,24 @@
62
62
<version>1.1.0</version>
63
63
</dependency>
64
64
65
+
<!-- JAXb explicit dependency is needed since Java 9. See https://stackoverflow.com/questions/43574426/how-to-resolve-java-lang-noclassdeffounderror-javax-xml-bind-jaxbexception-in-j
66
+
Note versions are set in parent pom in dependency management section -->
65
67
<dependency>
66
68
<groupId>javax.xml.bind</groupId>
67
69
<artifactId>jaxb-api</artifactId>
68
70
</dependency>
71
+
<dependency>
72
+
<groupId>com.sun.xml.bind</groupId>
73
+
<artifactId>jaxb-core</artifactId>
74
+
</dependency>
75
+
<dependency>
76
+
<groupId>com.sun.xml.bind</groupId>
77
+
<artifactId>jaxb-impl</artifactId>
78
+
</dependency>
79
+
<dependency>
80
+
<groupId>javax.activation</groupId>
81
+
<artifactId>activation</artifactId>
82
+
</dependency>
69
83
70
84
<!-- logging dependencies (managed by parent pom, don't set versions or
0 commit comments