Add workarounds for ARIES-1923 52/85052/2
authorRobert Varga <robert.varga@pantheon.tech>
Fri, 11 Oct 2019 11:12:13 +0000 (13:12 +0200)
committerRobert Varga <robert.varga@pantheon.tech>
Fri, 11 Oct 2019 12:00:43 +0000 (14:00 +0200)
mdsal-binding-api needs it, possibly also spi/util, which we have
just brough to JDK9+ land. Better be safe than sorry.

JIRA: MDSAL-484
Change-Id: Ib2c5c0fbd2fbc2ac083f82423a1d4e918c277cf4
Signed-off-by: Robert Varga <robert.varga@pantheon.tech>
binding/mdsal-binding-api/pom.xml
binding/mdsal-binding-spi/pom.xml
binding/mdsal-binding-util/pom.xml

index ab3f5d612931ff01b7a926dab914a1550e6fea9d..593efb19a4b8af9a1b99d6b47fcbdef9e05822ed 100644 (file)
     <artifactId>mdsal-binding-api</artifactId>
     <packaging>bundle</packaging>
 
+    <properties>
+        <!-- FIXME: Workaround for https://issues.apache.org/jira/browse/ARIES-1923 -->
+        <maven.compiler.release>10</maven.compiler.release>
+    </properties>
+
     <dependencies>
         <dependency>
             <groupId>com.google.guava</groupId>
index 5cb6e81619f0f0765d6a5ec0a83b42895b9b7998..900d38cfa9b8dbcc1ac53b99fec4510dfd67dabb 100644 (file)
     <artifactId>mdsal-binding-spi</artifactId>
     <packaging>bundle</packaging>
 
+    <properties>
+        <!-- FIXME: Workaround for https://issues.apache.org/jira/browse/ARIES-1923 -->
+        <maven.compiler.release>10</maven.compiler.release>
+    </properties>
+
     <dependencies>
         <dependency>
             <groupId>org.opendaylight.mdsal</groupId>
index 83450cf6152161bf4020f437e43389f06e888f8c..b9bc15325e1fd49bc878b66087c91353c7c8dbdb 100644 (file)
     <artifactId>mdsal-binding-util</artifactId>
     <packaging>bundle</packaging>
 
+    <properties>
+        <!-- FIXME: Workaround for https://issues.apache.org/jira/browse/ARIES-1923 -->
+        <maven.compiler.release>10</maven.compiler.release>
+    </properties>
+
     <dependencies>
         <dependency>
             <groupId>com.google.guava</groupId>