Incrementing versions by 0.1.0 for post-Helium master branch
[ovsdb.git] / ovs-sfc / pom.xml
index ca1435b8c95c29c4ebb37b7e4046a14311127c0e..0d58e465a4c3f715c7a663b48a5bcb144a6067c9 100644 (file)
@@ -7,28 +7,97 @@
     <parent>
         <groupId>org.opendaylight.ovsdb</groupId>
         <artifactId>commons</artifactId>
-        <version>1.2.0-SNAPSHOT</version>
+        <version>1.3.0-SNAPSHOT</version>
         <relativePath>../commons/parent</relativePath>
     </parent>
     <artifactId>ovssfc</artifactId>
-    <version>0.0.1-SNAPSHOT</version>
+    <name>OpenDaylight OVS Service Function Chaining</name>
+    <version>0.1.0-SNAPSHOT</version>
     <packaging>bundle</packaging>
 
     <properties>
-        <sfc-model.version>0.0.1-SNAPSHOT</sfc-model.version>
         <jmxGeneratorPath>target/generated-sources/config</jmxGeneratorPath>
+        <ietf.model.version>2010.09.24.7-SNAPSHOT</ietf.model.version>
+        <ietf.yang.types.version>2013.07.15.7-SNAPSHOT</ietf.yang.types.version>
     </properties>
 
     <dependencies>
+        <dependency>
+            <groupId>ch.qos.logback</groupId>
+            <artifactId>logback-classic</artifactId>
+        </dependency>
+        <dependency>
+            <groupId>ch.qos.logback</groupId>
+            <artifactId>logback-core</artifactId>
+        </dependency>
+        <!--<dependency>
+            <groupId>com.google.guava</groupId>
+            <artifactId>guava</artifactId>
+        </dependency>-->
+        <dependency>
+            <groupId>junit</groupId>
+            <artifactId>junit</artifactId>
+            <scope>test</scope>
+        </dependency>
+        <dependency>
+            <groupId>org.mockito</groupId>
+            <artifactId>mockito-all</artifactId>
+            <scope>test</scope>
+        </dependency>
         <dependency>
             <groupId>org.opendaylight.controller</groupId>
             <artifactId>sal-binding-config</artifactId>
             <version>${mdsal.version}</version>
         </dependency>
+        <dependency>
+            <groupId>org.opendaylight.controller</groupId>
+            <artifactId>sal-common-api</artifactId>
+            <version>${mdsal.version}</version>
+        </dependency>
+        <!--<dependency>
+            <groupId>org.opendaylight.controller</groupId>
+            <artifactId>sal-core-api</artifactId>
+            <version>${mdsal.version}</version>
+        </dependency>-->
+        <dependency>
+            <groupId>org.opendaylight.controller.model</groupId>
+            <artifactId>model-flow-base</artifactId>
+        </dependency>
+        <dependency>
+            <groupId>org.opendaylight.controller.model</groupId>
+            <artifactId>model-flow-service</artifactId>
+        </dependency>
+        <dependency>
+            <groupId>org.opendaylight.controller.model</groupId>
+            <artifactId>model-inventory</artifactId>
+        </dependency>
+        <dependency>
+            <groupId>org.opendaylight.ovsdb</groupId>
+            <artifactId>plugin</artifactId>
+        </dependency>
+        <dependency>
+            <groupId>org.opendaylight.ovsdb</groupId>
+            <artifactId>utils.mdsal-openflow</artifactId>
+            <version>1.1.0-SNAPSHOT</version>
+        </dependency>
         <dependency>
             <groupId>org.opendaylight.sfc</groupId>
             <artifactId>sfc-model</artifactId>
-            <version>${sfc-model.version}</version>
+        </dependency>
+        <dependency>
+            <groupId>org.opendaylight.yangtools.model</groupId>
+            <artifactId>ietf-inet-types</artifactId>
+            <version>${ietf.model.version}</version>
+        </dependency>
+        <dependency>
+            <groupId>org.opendaylight.yangtools.model</groupId>
+            <artifactId>ietf-yang-types</artifactId>
+            <version>${ietf.model.version}</version>
+        </dependency>
+        <dependency>
+            <groupId>org.opendaylight.yangtools.model</groupId>
+            <artifactId>ietf-yang-types-20130715</artifactId>
+            <version>${ietf.yang.types.version}</version>
         </dependency>
     </dependencies>
 
                 <version>${bundle.plugin.version}</version>
                 <extensions>true</extensions>
                 <configuration>
+                    <instructions>
+                        <Embed-Dependency>utils.mdsal-openflow;type=!pom;inline=false</Embed-Dependency>
+                        <Embed-Transitive>true</Embed-Transitive>
+                        <Include-Resource>
+                            /OSGI-OPT/ovs-sfc/53-ovssfc-provider.xml=${project.basedir}/src/main/resources/initial/53-ovssfc-provider.xml,{maven-resources}
+                        </Include-Resource>
+                    </instructions>
                     <manifestLocation>${project.basedir}/META-INF</manifestLocation>
                 </configuration>
             </plugin>