Bump versions to 4.0.1-SNAPSHOT
[mdsal.git] / binding / mdsal-binding-spi / pom.xml
index b55a0b5879db3acfb03b6d3301fd7a831a31c4d7..f9f8504842acf3172735a82f2115bf1a2bfebf26 100644 (file)
          xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
          xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
     <modelVersion>4.0.0</modelVersion>
-
     <parent>
-        <groupId>org.opendaylight.odlparent</groupId>
-        <artifactId>bundle-parent</artifactId>
-        <version>3.1.3</version>
+        <groupId>org.opendaylight.mdsal</groupId>
+        <artifactId>dom-parent</artifactId>
+        <version>5.0.1-SNAPSHOT</version>
+        <relativePath>../../dom/dom-parent</relativePath>
     </parent>
 
-    <groupId>org.opendaylight.mdsal</groupId>
     <artifactId>mdsal-binding-spi</artifactId>
-    <version>2.6.0-SNAPSHOT</version>
     <packaging>bundle</packaging>
 
-    <dependencyManagement>
-        <dependencies>
-            <dependency>
-                <groupId>org.opendaylight.mdsal</groupId>
-                <artifactId>mdsal-artifacts</artifactId>
-                <version>2.6.0-SNAPSHOT</version>
-                <type>pom</type>
-                <scope>import</scope>
-            </dependency>
-        </dependencies>
-    </dependencyManagement>
+    <properties>
+        <!-- FIXME: this works around a javadoc bug, where it throws an internal exception -->
+        <maven.compiler.release>8</maven.compiler.release>
+    </properties>
 
     <dependencies>
         <dependency>
     <build>
         <plugins>
             <plugin>
-                <groupId>org.apache.maven.plugins</groupId>
-                <artifactId>maven-checkstyle-plugin</artifactId>
+                <groupId>org.apache.felix</groupId>
+                <artifactId>maven-bundle-plugin</artifactId>
                 <configuration>
-                    <propertyExpansion>checkstyle.violationSeverity=error</propertyExpansion>
+                    <instructions>
+                        <Automatic-Module-Name>org.opendaylight.mdsal.binding.spi</Automatic-Module-Name>
+                    </instructions>
                 </configuration>
             </plugin>
         </plugins>
     </build>
 
-</project>
\ No newline at end of file
+</project>