Repository: any23
Updated Branches:
refs/heads/master 6a399c7f5 -> b37d08621
ANY23-419 Add J2EE depednencies such that service runs under JDK11
Project: http://git-wip-us.apache.org/repos/asf/any23/repo
Commit: http://git-wip-us.apache.org/repos/asf/any23/commit/c57abb13
Tree: http://git-wip-us.apache.org/repos/asf/any23/tree/c57abb13
Diff: http://git-wip-us.apache.org/repos/asf/any23/diff/c57abb13
Branch: refs/heads/master
Commit: c57abb13de5d1bf0b81d5ea9cbe28038355842c7
Parents: 6a399c7
Author: Lewis John McGibbney <lewis.mcgibbney@gmail.com>
Authored: Wed Nov 7 19:00:04 2018 -0800
Committer: Lewis John McGibbney <lewis.mcgibbney@gmail.com>
Committed: Wed Nov 7 19:00:04 2018 -0800
----------------------------------------------------------------------
service/pom.xml | 27 +++++++++++++++++++++++++++
1 file changed, 27 insertions(+)
----------------------------------------------------------------------
http://git-wip-us.apache.org/repos/asf/any23/blob/c57abb13/service/pom.xml
----------------------------------------------------------------------
diff --git a/service/pom.xml b/service/pom.xml
index d21e474..cf2e112 100644
--- a/service/pom.xml
+++ b/service/pom.xml
@@ -90,6 +90,33 @@
<scope>provided</scope>
</dependency>
+ <!-- BEGIN: Java EE APIs -->
+ <dependency>
+ <groupId>javax.xml.bind</groupId>
+ <artifactId>jaxb-api</artifactId>
+ <version>2.3.1</version>
+ </dependency>
+ <dependency>
+ <groupId>com.sun.xml.bind</groupId>
+ <artifactId>jaxb-core</artifactId>
+ <version>2.3.0.1</version>
+ </dependency>
+ <dependency>
+ <groupId>com.sun.xml.bind</groupId>
+ <artifactId>jaxb-impl</artifactId>
+ <version>2.3.1</version>
+ </dependency>
+ <dependency>
+ <groupId>javax.activation</groupId>
+ <artifactId>activation</artifactId>
+ <version>1.1.1</version>
+ </dependency>
+ <dependency>
+ <groupId>javax.xml.ws</groupId>
+ <artifactId>jaxws-api</artifactId>
+ <version>2.3.1</version>
+ </dependency>
+
<!-- BEGIN: Jetty Dependencies -->
<dependency>
<groupId>org.eclipse.jetty</groupId>
|