You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@jclouds.apache.org by ga...@apache.org on 2021/07/20 14:04:58 UTC

[jclouds] branch master updated: Add missing javax dependencies for modern Java

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

gaul pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/jclouds.git


The following commit(s) were added to refs/heads/master by this push:
     new d861768  Add missing javax dependencies for modern Java
d861768 is described below

commit d861768d495257b0c16b2f97c45e3124f28bac34
Author: Andrew Gaul <ga...@apache.org>
AuthorDate: Sat Jul 10 11:20:20 2021 +0900

    Add missing javax dependencies for modern Java
    
    Java 9 modularization removed these.
---
 core/pom.xml    |  8 ++++++++
 project/pom.xml | 12 ++++++++++++
 2 files changed, 20 insertions(+)

diff --git a/core/pom.xml b/core/pom.xml
index 1594ce8..52e5565 100644
--- a/core/pom.xml
+++ b/core/pom.xml
@@ -58,6 +58,14 @@
       <artifactId>javax.ws.rs-api</artifactId>
     </dependency>
     <dependency>
+      <groupId>javax.annotation</groupId>
+      <artifactId>javax.annotation-api</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>com.sun.xml.bind</groupId>
+      <artifactId>jaxb-impl</artifactId>
+    </dependency>
+    <dependency>
       <groupId>org.osgi</groupId>
       <artifactId>org.osgi.core</artifactId>
       <scope>provided</scope>
diff --git a/project/pom.xml b/project/pom.xml
index e2178d6..048d500 100644
--- a/project/pom.xml
+++ b/project/pom.xml
@@ -322,6 +322,18 @@
       </dependency>
 
       <dependency>
+        <groupId>javax.annotation</groupId>
+        <artifactId>javax.annotation-api</artifactId>
+        <version>1.2</version>
+      </dependency>
+
+      <dependency>
+        <groupId>com.sun.xml.bind</groupId>
+        <artifactId>jaxb-impl</artifactId>
+        <version>2.3.3</version>
+      </dependency>
+
+      <dependency>
         <groupId>org.gaul</groupId>
         <artifactId>modernizer-maven-annotations</artifactId>
         <version>${modernizer-maven-annotations.version}</version>