export lldp as feature 33/68233/2
authorFaseela K <faseela.k@ericsson.com>
Wed, 14 Feb 2018 11:05:44 +0000 (16:35 +0530)
committerFaseela K <faseela.k@ericsson.com>
Wed, 14 Feb 2018 16:54:25 +0000 (22:24 +0530)
Those bundles are used by genius and netvirt.
They should be consumable as feature, not bundle.

For detailed discussion, please refer to the followings
https://lists.opendaylight.org/pipermail/release/2018-January/013604.html
https://lists.opendaylight.org/pipermail/release/2017-September/012356.html

Change-Id: I034494a38c88c69c8d75731b73bab7b0f116db9d
Signed-off-by: Faseela K <faseela.k@ericsson.com>
artifacts/pom.xml
features-aggregator/features-openflowplugin/pom.xml
features-aggregator/odl-openflowplugin-libraries/pom.xml [new file with mode: 0644]
features-aggregator/pom.xml

index ea271f9b00b4506e5d6f52b94c868cc104088ade..ac820dfc18eaee620ff046041607cc95a332bb1f 100644 (file)
                 <type>xml</type>
                 <version>${project.version}</version>
             </dependency>
+            <dependency>
+                <groupId>${project.groupId}</groupId>
+                <artifactId>odl-openflowplugin-libraries</artifactId>
+                <classifier>features</classifier>
+                <type>xml</type>
+                <version>${project.version}</version>
+            </dependency>
             <dependency>
                 <groupId>${project.groupId}</groupId>
                 <artifactId>odl-openflowplugin-app-forwardingrules-sync</artifactId>
index 416f962518ef0106aa2e121934123343e5f96891..704f827f2422629e0123fd80a7c611f8de21bc86 100644 (file)
             <type>xml</type>
             <classifier>features</classifier>
         </dependency>
+        <dependency>
+            <groupId>${project.groupId}</groupId>
+            <artifactId>odl-openflowplugin-libraries</artifactId>
+            <version>${project.version}</version>
+            <type>xml</type>
+            <classifier>features</classifier>
+        </dependency>
     </dependencies>
 
 </project>
diff --git a/features-aggregator/odl-openflowplugin-libraries/pom.xml b/features-aggregator/odl-openflowplugin-libraries/pom.xml
new file mode 100644 (file)
index 0000000..4404b66
--- /dev/null
@@ -0,0 +1,27 @@
+<?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.odlparent</groupId>
+        <artifactId>single-feature-parent</artifactId>
+        <version>3.0.2</version>
+        <relativePath/>
+    </parent>
+
+    <groupId>org.opendaylight.openflowplugin</groupId>
+    <artifactId>odl-openflowplugin-libraries</artifactId>
+    <packaging>feature</packaging>
+    <version>0.6.0-SNAPSHOT</version>
+
+    <name>OpenDaylight :: Openflow Plugin :: Libraries</name>
+
+    <dependencies>
+        <dependency>
+            <groupId>org.opendaylight.openflowplugin.libraries</groupId>
+            <artifactId>liblldp</artifactId>
+            <version>${project.version}</version>
+        </dependency>
+    </dependencies>
+
+</project>
index 4924218828b08519fd0fc91c3a7eda4c1c13386f..26369a0191eba476a7b079383025dec9918c917b 100644 (file)
@@ -30,6 +30,7 @@
         <module>odl-openflowplugin-app-forwardingrules-sync</module>
         <module>odl-openflowplugin-app-reconciliation-framework</module>
         <module>odl-openflowplugin-app-southbound-cli</module>
+        <module>odl-openflowplugin-libraries</module>
     </modules>
 
 </project>