Skip to content

Commit 12ee735

Browse files
author
Dave Wichers
committed
Add jaxb dependencies removed post Java 11 and upgrade Tomcat.
1 parent e960c73 commit 12ee735

File tree

1 file changed

+13
-1
lines changed

1 file changed

+13
-1
lines changed

pom.xml

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -614,6 +614,18 @@
614614
<scope>provided</scope>
615615
</dependency>
616616

617+
<!-- jaxb dependencies removed from Java 11+ -->
618+
<dependency>
619+
<groupId>javax.xml.bind</groupId>
620+
<artifactId>jaxb-api</artifactId>
621+
<version>2.3.1</version>
622+
</dependency>
623+
<dependency>
624+
<groupId>com.sun.xml.bind</groupId>
625+
<artifactId>jaxb-impl</artifactId>
626+
<version>2.3.9</version>
627+
</dependency>
628+
617629
<!-- mvn dependency:analyze says this is an unused declared dependency, but its wrong. I think the webapp needs it somehow. -->
618630
<dependency>
619631
<groupId>com.sun.jersey</groupId>
@@ -1255,7 +1267,7 @@
12551267
<version.springframework>5.3.39</version.springframework>
12561268
<!-- Tomcat 10 moves from Java EE to Jakarta EE, moving packages javax.* to jakarta.* - code changes likely required to address this change. -->
12571269
<tomcat.major.version>9</tomcat.major.version>
1258-
<version.tomcat>9.0.113</version.tomcat>
1270+
<version.tomcat>9.0.115</version.tomcat>
12591271
<tomcat.url>https://archive.apache.org/dist/tomcat/tomcat-${tomcat.major.version}/v${version.tomcat}/bin/apache-tomcat-${version.tomcat}.zip</tomcat.url>
12601272
</properties>
12611273

0 commit comments

Comments
 (0)