Browse Source

Add explicit javax.xml.bind dependency to rapidoid for Java 9 compat (#3114)

Without this, the rapidoid test fails with a runtime exception on Java 9.
Michael Hixson 7 years ago
parent
commit
efb3e3dc2e
1 changed files with 5 additions and 0 deletions
  1. 5 0
      frameworks/Java/rapidoid/pom.xml

+ 5 - 0
frameworks/Java/rapidoid/pom.xml

@@ -33,6 +33,11 @@
 			<artifactId>HikariCP</artifactId>
 			<version>2.6.1</version>
 		</dependency>
+		<dependency>
+			<groupId>javax.xml.bind</groupId>
+			<artifactId>jaxb-api</artifactId>
+			<version>2.2.12</version>
+		</dependency>
 	</dependencies>
 
 	<build>