Skip to content

Commit

Permalink
fix support for java 11
Browse files Browse the repository at this point in the history
  • Loading branch information
ibalosh committed Nov 6, 2019
1 parent d896d1c commit 4ad7a9a
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -119,6 +119,29 @@
<version>1.2.17</version>
</dependency>

<!-- javax.xml.bind is removed from java 11 , Jackson will throw error without dependencies for it-->
<!-- https://stackoverflow.com/questions/52502189/java-11-package-javax-xml-bind-does-not-exist -->
<dependency>
<groupId>javax.xml.bind</groupId>
<artifactId>jaxb-api</artifactId>
<version>2.3.0</version>
</dependency>
<dependency>
<groupId>com.sun.xml.bind</groupId>
<artifactId>jaxb-core</artifactId>
<version>2.3.0</version>
</dependency>
<dependency>
<groupId>com.sun.xml.bind</groupId>
<artifactId>jaxb-impl</artifactId>
<version>2.3.0</version>
</dependency>
<dependency>
<groupId>javax.activation</groupId>
<artifactId>activation</artifactId>
<version>1.1.1</version>
</dependency>

</dependencies>

<!-- all of the below is needed for releasing -->
Expand Down

0 comments on commit 4ad7a9a

Please sign in to comment.