소스 검색

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>