浏览代码

Add dependencies to get rid of errors in Java 9 for utow-jersey-hikaricp (#3117)

Without the javax.activation and javax.xml.bind dependencies, I was
seeing errors / stack traces when running on Java 9, though the tests
still seemed to pass somehow.  Adding these dependencies makes those
stack traces go away, which is probably for the best, so they don't
distract us from worse problems later.
Michael Hixson 7 年之前
父节点
当前提交
e625604c06
共有 1 个文件被更改,包括 12 次插入0 次删除
  1. 12 0
      frameworks/Java/undertow-jersey-hikaricp/pom.xml

+ 12 - 0
frameworks/Java/undertow-jersey-hikaricp/pom.xml

@@ -82,6 +82,18 @@
       <version>1.3.11.Final</version>
     </dependency>
 
+    <dependency>
+      <groupId>javax.xml.bind</groupId>
+      <artifactId>jaxb-api</artifactId>
+      <version>2.2.12</version>
+    </dependency>
+
+    <dependency>
+      <groupId>javax.activation</groupId>
+      <artifactId>activation</artifactId>
+      <version>1.1.1</version>
+    </dependency>
+
   </dependencies>
 
   <build>