Cleanup of state managers' interfaces (constructor and init).
[packetcable.git] / pom.xml
diff --git a/pom.xml b/pom.xml
index f4ba28321501a87963157a7c5ab77b0da88a9d78..cfeec5b8ad0a68dca3fe3452276b356c6e6a7708 100644 (file)
--- a/pom.xml
+++ b/pom.xml
 <?xml version="1.0" encoding="UTF-8"?>
 <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">
-  <modelVersion>4.0.0</modelVersion>
-  <parent>
-    <groupId>org.opendaylight.controller</groupId>
-    <artifactId>commons.opendaylight</artifactId>
-    <version>1.4.1-SNAPSHOT</version>
-    <relativePath>../../commons/opendaylight</relativePath>
-  </parent>
-  <artifactId>protocol_plugins.packetcable</artifactId>
-  <version>0.5.1-SNAPSHOT</version>
-  <packaging>bundle</packaging>
-  <build>
-    <plugins>
-      <plugin>
-        <artifactId>maven-checkstyle-plugin</artifactId>
-        <configuration>
-          <skip>true</skip>
-        </configuration>
-      </plugin>
-      <plugin>
-        <groupId>org.apache.felix</groupId>
-        <artifactId>maven-bundle-plugin</artifactId>
-        <version>2.3.6</version>
-        <extensions>true</extensions>
-        <configuration>
-          <instructions>
-            <Import-Package> org.opendaylight.controller.sal.packet,
-              org.opendaylight.controller.sal.action,
-              org.opendaylight.controller.sal.discovery,
-              org.opendaylight.controller.sal.topology,
-              org.opendaylight.controller.sal.core,
-              org.opendaylight.controller.sal.flowprogrammer,
-              org.opendaylight.controller.sal.reader,
-              org.opendaylight.controller.sal.inventory,
-              org.opendaylight.controller.sal.match,
-              org.opendaylight.controller.sal.utils,
-              org.apache.commons.lang3.builder,
-              org.apache.commons.lang3.tuple, org.apache.felix.dm,
-              org.slf4j, org.eclipse.osgi.framework.console,
-              org.osgi.framework
-            </Import-Package>
-            <Bundle-Activator>org.opendaylight.controller.protocol_plugin.packetcable.internal.Activator</Bundle-Activator>
-          </instructions>
-          <manifestLocation>${project.basedir}/META-INF</manifestLocation>
-        </configuration>
-      </plugin>
-    </plugins>
-  </build>
-  <dependencies>
-    <dependency>
-      <groupId>org.opendaylight.controller</groupId>
-      <artifactId>sal</artifactId>
-      <version>0.5.1-SNAPSHOT</version>
-    </dependency>
-    <dependency>
-      <groupId>junit</groupId>
-      <artifactId>junit</artifactId>
-    </dependency>
-<dependency>
-<groupId>javax.sip</groupId>
-<artifactId>jain-sip-ri</artifactId>
-<version>1.2.158</version>
-</dependency>
-<dependency>
-<groupId>commons-primitives</groupId>
-<artifactId>commons-primitives</artifactId>
-<version>20041207.202534</version>
-</dependency>
-</dependencies>
+       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.controller</groupId>
+               <artifactId>sal-parent</artifactId>
+               <version>1.2.0-SNAPSHOT</version>
+        <relativePath/>
+       </parent>
+
+       <groupId>org.opendaylight.packetcable</groupId>
+       <artifactId>packetcable</artifactId>
+       <name>packetcable</name> <!-- Used by Sonar to set project name -->
+       <packaging>pom</packaging>
+
+    <properties>
+      <openflowplugin.version>0.1.0-SNAPSHOT</openflowplugin.version>
+    </properties>
+
+   <distributionManagement>
+        <!-- OpenDayLight Released artifact -->
+        <repository>
+            <id>opendaylight-release</id>
+            <url>${nexusproxy}/repositories/opendaylight.release</url>
+        </repository>
+        <!-- OpenDayLight Snapshot artifact -->
+        <snapshotRepository>
+            <id>opendaylight-snapshot</id>
+            <url>${nexusproxy}/repositories/opendaylight.snapshot</url>
+        </snapshotRepository>
+    </distributionManagement>
+
+       <modules>
+               <module>packetcable-driver</module>
+               <module>packetcable-model</module>
+               <module>packetcable-provider</module>
+               <module>packetcable-consumer</module>
+               <module>features-packetcable</module>
+               <module>packetcable-config</module>
+               <module>packetcable-karaf</module>
+
+               <!-- New modules for the new Arris API -->
+               <module>packetcable-policy-model</module>
+               <module>packetcable-policy-server</module>
+               <module>features-packetcable-policy</module>
+               <module>packetcable-policy-config</module>
+               <module>packetcable-policy-karaf</module>
+       </modules>
+       <scm>
+               <connection>scm:git:ssh://git.opendaylight.org:29418/packetcable.git</connection>
+               <developerConnection>scm:git:ssh://git.opendaylight.org:29418/packetcable.git</developerConnection>
+               <tag>HEAD</tag>
+               <url>https://wiki.opendaylight.org/view/PacketCablePCMM:Main</url>
+       </scm>
+       <dependencies>
+               <dependency>
+                       <groupId>org.opendaylight.openflowplugin.model</groupId>
+                       <artifactId>model-flow-base</artifactId>
+            <version>${openflowplugin.version}</version>
+               </dependency>
+               <dependency>
+                       <groupId>org.opendaylight.openflowplugin.model</groupId>
+                       <artifactId>model-flow-service</artifactId>
+            <version>${openflowplugin.version}</version>
+               </dependency>
+               <dependency>
+                       <groupId>org.opendaylight.yangtools.model</groupId>
+                       <artifactId>ietf-inet-types</artifactId>
+               </dependency>
+               <dependency>
+                       <groupId>org.opendaylight.yangtools.model</groupId>
+                       <artifactId>ietf-yang-types</artifactId>
+               </dependency>
+               <dependency>
+                       <groupId>org.opendaylight.controller.model</groupId>
+                       <artifactId>model-inventory</artifactId>
+               </dependency>
+               <dependency>
+                       <groupId>org.opendaylight.yangtools.model</groupId>
+                       <artifactId>opendaylight-l2-types</artifactId>
+               </dependency>
+               <dependency>
+                       <groupId>org.opendaylight.openflowplugin.model</groupId>
+                       <artifactId>model-flow-statistics</artifactId>
+            <version>${openflowplugin.version}</version>
+               </dependency>
+       </dependencies>
+       <build>
+               <plugins>
+                       <plugin>
+                               <artifactId>maven-checkstyle-plugin</artifactId>
+                               <configuration>
+                                       <skip>true</skip>
+                               </configuration>
+                       </plugin>
+               </plugins>
+       </build>
+
+
+       <!-- <profiles> -->
+       <!-- <profile> -->
+       <!-- <id>integrationtests</id> -->
+       <!-- <activation> -->
+       <!-- <activeByDefault>false</activeByDefault> -->
+       <!-- </activation> -->
+       <!-- <modules> -->
+       <!-- <module>packetcable-it</module> -->
+       <!-- </modules> -->
+       <!-- </profile> -->
+       <!-- </profiles> -->
 </project>