Add jaxb-api dependencies 00/79200/5
authorRobert Varga <robert.varga@pantheon.tech>
Thu, 3 Jan 2019 18:22:10 +0000 (19:22 +0100)
committerArunprakash D <d.arunprakash@ericsson.com>
Thu, 24 Jan 2019 08:26:02 +0000 (08:26 +0000)
Java9+ does not ship JAXB, add dependecies on jaxb-api to make
Java 11 build pass.

Change-Id: I8eca4865d8029a5b29c1abdca6ac08befa5f6aa2
Signed-off-by: Robert Varga <robert.varga@pantheon.tech>
libraries/liblldp/pom.xml
samples/simple-client/pom.xml

index b785890d4d602aac9b92adf30579d6a2e9952fbf..a5720baf12948d3d9ae52de69a38256d50c73572 100644 (file)
       <groupId>com.google.guava</groupId>
       <artifactId>guava</artifactId>
     </dependency>
+    <dependency>
+      <groupId>javax.xml.bind</groupId>
+      <artifactId>jaxb-api</artifactId>
+    </dependency>
   </dependencies>
 
   <build>
index a6747f165de316e653fa2e71478dfc241a95748f..d44d5de86509bc36ad928cf2f0f96db5cbd449d1 100644 (file)
@@ -46,5 +46,9 @@
             <groupId>net.sourceforge.argparse4j</groupId>
             <artifactId>argparse4j</artifactId>
         </dependency>
+        <dependency>
+            <groupId>javax.xml.bind</groupId>
+            <artifactId>jaxb-api</artifactId>
+        </dependency>
     </dependencies>
 </project>