You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tomee.apache.org by jl...@apache.org on 2019/07/22 13:07:00 UTC

[tomee] 01/31: Adding new modules to the build as they have been removed from the JDK

This is an automated email from the ASF dual-hosted git repository.

jlmonteiro pushed a commit to branch tomee8-java11
in repository https://gitbox.apache.org/repos/asf/tomee.git

commit d7e8e95068ba70e0d57d73f2f44a6ac013be2dbf
Author: Jonathan Gallimore <jo...@jrg.me.uk>
AuthorDate: Mon Dec 17 15:18:06 2018 +0000

    Adding new modules to the build as they have been removed from the JDK
---
 container/openejb-core/pom.xml | 20 ++++++++++++++++++++
 pom.xml                        | 25 +++++++++++++++++++++++++
 2 files changed, 45 insertions(+)

diff --git a/container/openejb-core/pom.xml b/container/openejb-core/pom.xml
index b0ab010..df5d188 100644
--- a/container/openejb-core/pom.xml
+++ b/container/openejb-core/pom.xml
@@ -427,6 +427,26 @@
 
   <dependencies>
     <dependency>
+      <groupId>javax.xml.bind</groupId>
+      <artifactId>jaxb-api</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.glassfish.jaxb</groupId>
+      <artifactId>jaxb-runtime</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>javax.activation</groupId>
+      <artifactId>javax.activation-api</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.jacorb</groupId>
+      <artifactId>jacorb</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.jboss.spec.javax.rmi</groupId>
+      <artifactId>jboss-rmi-api_1.0_spec</artifactId>
+    </dependency>
+    <dependency>
       <groupId>${project.groupId}</groupId>
       <artifactId>mbean-annotation-api</artifactId>
       <version>${project.version}</version>
diff --git a/pom.xml b/pom.xml
index f57c072..5c61c59 100644
--- a/pom.xml
+++ b/pom.xml
@@ -896,6 +896,31 @@
   <dependencyManagement>
     <dependencies>
       <dependency>
+        <groupId>javax.xml.bind</groupId>
+        <artifactId>jaxb-api</artifactId>
+        <version>2.3.0</version>
+      </dependency>
+      <dependency>
+        <groupId>org.glassfish.jaxb</groupId>
+        <artifactId>jaxb-runtime</artifactId>
+        <version>2.3.0</version>
+      </dependency>
+      <dependency>
+        <groupId>javax.activation</groupId>
+        <artifactId>javax.activation-api</artifactId>
+        <version>1.2.0</version>
+      </dependency>
+      <dependency>
+        <groupId>org.jacorb</groupId>
+        <artifactId>jacorb</artifactId>
+        <version>3.9</version>
+      </dependency>
+      <dependency>
+        <groupId>org.jboss.spec.javax.rmi</groupId>
+        <artifactId>jboss-rmi-api_1.0_spec</artifactId>
+        <version>1.0.6.Final</version>
+      </dependency>
+      <dependency>
         <groupId>${project.groupId}</groupId>
         <artifactId>javaee-api</artifactId>
         <version>${version.javaee-api}</version>