Bumping versions by x.y.(z+1) for next dev cycle
[mdsal.git] / dom / mdsal-dom-spi / pom.xml
index 6c48f969a65755b99e6aa16f44bab37a9dc0cc17..3d15294bc1069ce49567f2ef52a1d61b8ef8ee93 100644 (file)
@@ -4,9 +4,11 @@
   <parent>
     <groupId>org.opendaylight.mdsal</groupId>
     <artifactId>mdsal-dom</artifactId>
-    <version>2.1.0-SNAPSHOT</version>
+    <version>2.1.4-SNAPSHOT</version>
   </parent>
+
   <artifactId>mdsal-dom-spi</artifactId>
+
   <packaging>bundle</packaging>
 
   <dependencies>
       <groupId>org.opendaylight.mdsal</groupId>
       <artifactId>mdsal-dom-api</artifactId>
     </dependency>
+
+    <!-- Test Dependencies -->
+    <dependency>
+      <groupId>junit</groupId>
+      <artifactId>junit</artifactId>
+      <scope>test</scope>
+    </dependency>
+    <dependency>
+      <groupId>org.slf4j</groupId>
+      <artifactId>slf4j-simple</artifactId>
+      <scope>test</scope>
+    </dependency>
+    <dependency>
+      <groupId>org.opendaylight.yangtools</groupId>
+      <artifactId>mockito-configuration</artifactId>
+      <scope>test</scope>
+    </dependency>
   </dependencies>
 
   <scm>
     <tag>HEAD</tag>
     <url>https://wiki.opendaylight.org/view/MD-SAL:Main</url>
   </scm>
-</project>
+
+  <!--
+      Maven Site Configuration
+
+      The following configuration is necessary for maven-site-plugin to
+      correctly identify the correct deployment path for OpenDaylight Maven
+      sites.
+  -->
+  <url>${odl.site.url}/${project.groupId}/${stream}/${project.artifactId}/</url>
+
+  <distributionManagement>
+    <site>
+      <id>opendaylight-site</id>
+      <url>${nexus.site.url}/${project.artifactId}/</url>
+    </site>
+  </distributionManagement>
+
+</project>
\ No newline at end of file