Fix standalone test with JDK11 60/79260/1
authorRobert Varga <robert.varga@pantheon.tech>
Mon, 7 Jan 2019 01:06:28 +0000 (02:06 +0100)
committerRobert Varga <robert.varga@pantheon.tech>
Mon, 7 Jan 2019 01:06:28 +0000 (02:06 +0100)
javax.activation is no longer part of JDK in Java9+, add it as
an explicit dependency.

Change-Id: I6ce3df30f06188958d454484c42b904e74020333
Signed-off-by: Robert Varga <robert.varga@pantheon.tech>
integration/test-standalone/pom.xml

index 36a404b72a4adc5224586e40ed90419b99c5d800..ced43c824b4a92abc5067483a0ea68425da975a5 100644 (file)
       <version>${project.version}</version>
       <scope>test</scope>
     </dependency>
+    <dependency>
+      <groupId>javax.activation</groupId>
+      <artifactId>activation</artifactId>
+      <scope>test</scope>
+    </dependency>
 
     <dependency>
       <groupId>org.opendaylight.controller</groupId>
           <groupId>javax.xml.bind</groupId>
           <artifactId>jaxb-api</artifactId>
         </exclusion>
-        <exclusion>
-          <groupId>javax.activation</groupId>
-          <artifactId>activation</artifactId>
-        </exclusion>
       </exclusions>
     </dependency>
     <dependency>