First use of the infrautils counters in netvirt.
[netvirt.git] / vpnservice / natservice / natservice-impl / pom.xml
index d40b99b422691009fe4e356d8ab6108d5fa7a4f3..b44b29f4cdb59d5339a402f9a51befd120bdef23 100644 (file)
@@ -9,14 +9,14 @@ and is available at http://www.eclipse.org/legal/epl-v10.html
 <project xmlns="http://maven.apache.org/POM/4.0.0" 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">
 
   <parent>
-    <groupId>org.opendaylight.vpnservice</groupId>
+    <groupId>org.opendaylight.netvirt</groupId>
     <artifactId>config-parent</artifactId>
     <version>0.3.0-SNAPSHOT</version>
     <relativePath>../../commons/config-parent</relativePath>
   </parent>
 
   <modelVersion>4.0.0</modelVersion>
-  <groupId>org.opendaylight.vpnservice</groupId>
+  <groupId>org.opendaylight.netvirt</groupId>
   <artifactId>natservice-impl</artifactId>
   <version>${vpnservices.version}</version>
   <packaging>bundle</packaging>
@@ -26,19 +26,19 @@ and is available at http://www.eclipse.org/legal/epl-v10.html
 </properties>
   <dependencies>
     <dependency>
-      <groupId>org.opendaylight.vpnservice</groupId>
+      <groupId>${project.groupId}</groupId>
       <artifactId>natservice-api</artifactId>
       <version>${vpnservices.version}</version>
     </dependency>
     <dependency>
-      <groupId>${project.groupId}</groupId>
+      <groupId>org.opendaylight.genius</groupId>
       <artifactId>mdsalutil-api</artifactId>
-      <version>${vpnservices.version}</version>
+      <version>${genius.version}</version>
     </dependency>
     <dependency>
-      <groupId>org.opendaylight.vpnservice</groupId>
+      <groupId>org.opendaylight.genius</groupId>
       <artifactId>itm-api</artifactId>
-      <version>${vpnservices.version}</version>
+      <version>${genius.version}</version>
     </dependency>
     <dependency>
       <groupId>${project.groupId}</groupId>
@@ -46,24 +46,24 @@ and is available at http://www.eclipse.org/legal/epl-v10.html
       <version>${vpnservices.version}</version>
     </dependency>
     <dependency>
-      <groupId>org.opendaylight.vpnservice</groupId>
+      <groupId>${project.groupId}</groupId>
       <artifactId>vpnmanager-api</artifactId>
       <version>${vpnservices.version}</version>
     </dependency>
     <dependency>
-      <groupId>org.opendaylight.vpnservice</groupId>
+      <groupId>${project.groupId}</groupId>
       <artifactId>fibmanager-api</artifactId>
       <version>${vpnservices.version}</version>
     </dependency>
     <dependency>
-      <groupId>org.opendaylight.vpnservice</groupId>
+      <groupId>org.opendaylight.genius</groupId>
       <artifactId>idmanager-api</artifactId>
-      <version>${vpnservices.version}</version>
+      <version>${genius.version}</version>
     </dependency>
     <dependency>
-      <groupId>${project.groupId}</groupId>
-      <artifactId>interfacemgr-api</artifactId>
-      <version>${vpnservices.version}</version>
+      <groupId>org.opendaylight.genius</groupId>
+      <artifactId>interfacemanager-api</artifactId>
+      <version>${genius.version}</version>
     </dependency>
     <dependency>
       <groupId>${project.groupId}</groupId>
@@ -101,7 +101,27 @@ and is available at http://www.eclipse.org/legal/epl-v10.html
         <artifactId>powermock-module-junit4</artifactId>
         <version>${powermock.version}</version>
         <scope>test</scope>
-        </dependency>
-    </dependencies> 
+    </dependency>
+    <dependency>
+      <groupId>org.opendaylight.infrautils</groupId>
+      <artifactId>counters-api</artifactId>
+      <version>${infrautils.version}</version>
+    </dependency>
+    </dependencies>
+
+    <!--
+        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>