Decouple and create features per each topology bundle 95/78395/2
authorClaudio D. Gasparini <claudio.gasparini@pantheon.tech>
Mon, 3 Dec 2018 08:17:08 +0000 (09:17 +0100)
committerClaudio David Gasparini <claudio.gasparini@pantheon.tech>
Mon, 3 Dec 2018 21:13:29 +0000 (21:13 +0000)
Change-Id: I06e914041d48b4aefb6d234094f6c2af0f94b55b
Signed-off-by: Claudio D. Gasparini <claudio.gasparini@pantheon.tech>
features/pcep/odl-bgpcep-programming-api/pom.xml
features/topology/features-topology/pom.xml
features/topology/odl-bgpcep-topology-segment-routing/pom.xml [new file with mode: 0644]
features/topology/odl-bgpcep-topology-tunnel-api/pom.xml [new file with mode: 0644]
features/topology/pom.xml
topology/topology-artifacts/pom.xml

index 7ccd7e7dce4dbebc32e5290ad854f5b249f565d2..3fe7454c7055379f8102e6582ac9c1efe21c6b0a 100644 (file)
     <name>OpenDaylight :: PCEP :: Programming Api</name>
 
     <dependencies>
-        <dependency>
-            <groupId>${project.groupId}</groupId>
-            <artifactId>topology-tunnel-api</artifactId>
-        </dependency>
         <dependency>
             <groupId>${project.groupId}</groupId>
             <artifactId>programming-api</artifactId>
             <type>xml</type>
             <classifier>features</classifier>
         </dependency>
+        <dependency>
+            <groupId>${project.groupId}</groupId>
+            <artifactId>odl-bgpcep-topology-tunnel-api</artifactId>
+            <classifier>features</classifier>
+            <type>xml</type>
+        </dependency>
         <dependency>
             <groupId>${project.groupId}</groupId>
             <artifactId>odl-bgpcep-extras-dependencies</artifactId>
index a866783f926b7c238578e9d6dcb064b50fc220e1..effe1965a69602f7ec124ce3f18b7151140ae907 100644 (file)
             <type>xml</type>
             <classifier>features</classifier>
         </dependency>
+        <dependency>
+            <groupId>${project.groupId}</groupId>
+            <artifactId>odl-bgpcep-topology-tunnel-api</artifactId>
+            <type>xml</type>
+            <classifier>features</classifier>
+        </dependency>
+        <dependency>
+            <groupId>${project.groupId}</groupId>
+            <artifactId>odl-bgpcep-topology-segment-routing</artifactId>
+            <type>xml</type>
+            <classifier>features</classifier>
+        </dependency>
     </dependencies>
 </project>
\ No newline at end of file
diff --git a/features/topology/odl-bgpcep-topology-segment-routing/pom.xml b/features/topology/odl-bgpcep-topology-segment-routing/pom.xml
new file mode 100644 (file)
index 0000000..81ff07a
--- /dev/null
@@ -0,0 +1,37 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!-- vi: set et smarttab sw=4 tabstop=4: -->
+<!--
+ Copyright (c) 2018 AT&T Intellectual Property. All rights reserved.
+
+ This program and the accompanying materials are made available under the
+ terms of the Eclipse Public License v1.0 which accompanies this distribution,
+ 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">
+    <modelVersion>4.0.0</modelVersion>
+    <parent>
+        <groupId>org.opendaylight.bgpcep</groupId>
+        <artifactId>single-feature-parent</artifactId>
+        <version>0.10.2-SNAPSHOT</version>
+        <relativePath>../../../single-feature-parent</relativePath>
+    </parent>
+
+    <artifactId>odl-bgpcep-topology-segment-routing</artifactId>
+    <packaging>feature</packaging>
+    <name>OpenDaylight :: BGPCEP :: Topology :: Segment :: Routing :: Api</name>
+
+    <dependencies>
+        <dependency>
+            <groupId>${project.groupId}</groupId>
+            <artifactId>topology-segment-routing</artifactId>
+        </dependency>
+        <dependency>
+            <groupId>${project.groupId}</groupId>
+            <artifactId>odl-bgpcep-topology-tunnel-api</artifactId>
+            <type>xml</type>
+            <classifier>features</classifier>
+        </dependency>
+    </dependencies>
+</project>
\ No newline at end of file
diff --git a/features/topology/odl-bgpcep-topology-tunnel-api/pom.xml b/features/topology/odl-bgpcep-topology-tunnel-api/pom.xml
new file mode 100644 (file)
index 0000000..c69c501
--- /dev/null
@@ -0,0 +1,37 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!-- vi: set et smarttab sw=4 tabstop=4: -->
+<!--
+ Copyright (c) 2018 AT&T Intellectual Property. All rights reserved.
+
+ This program and the accompanying materials are made available under the
+ terms of the Eclipse Public License v1.0 which accompanies this distribution,
+ 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">
+    <modelVersion>4.0.0</modelVersion>
+    <parent>
+        <groupId>org.opendaylight.bgpcep</groupId>
+        <artifactId>single-feature-parent</artifactId>
+        <version>0.10.2-SNAPSHOT</version>
+        <relativePath>../../../single-feature-parent</relativePath>
+    </parent>
+
+    <artifactId>odl-bgpcep-topology-tunnel-api</artifactId>
+    <packaging>feature</packaging>
+    <name>OpenDaylight :: BGPCEP :: Topology :: Tunnel :: Api</name>
+
+    <dependencies>
+        <dependency>
+            <groupId>${project.groupId}</groupId>
+            <artifactId>topology-tunnel-api</artifactId>
+        </dependency>
+        <dependency>
+            <groupId>org.opendaylight.mdsal.model</groupId>
+            <artifactId>odl-mdsal-model-draft-clemm-netmod-yang-network-topo-01-minimal</artifactId>
+            <type>xml</type>
+            <classifier>features</classifier>
+        </dependency>
+    </dependencies>
+</project>
\ No newline at end of file
index a15392a128d249e35821f849ffe6eb436de464f9..8df10940400c053d4acc3194758dac7fba36fb58 100644 (file)
@@ -24,5 +24,7 @@
     <modules>
         <module>features-topology</module>
         <module>odl-bgpcep-topology-api</module>
+        <module>odl-bgpcep-topology-tunnel-api</module>
+        <module>odl-bgpcep-topology-segment-routing</module>
     </modules>
 </project>
index e5f502fa905784270e6459fa91803df125973bc5..68147806e7c713d0818d42c1ad82a2fa183651d5 100644 (file)
                 <type>xml</type>
                 <version>${project.version}</version>
             </dependency>
+            <dependency>
+                <groupId>${project.groupId}</groupId>
+                <artifactId>odl-bgpcep-topology-tunnel-api</artifactId>
+                <type>xml</type>
+                <classifier>features</classifier>
+                <version>${project.version}</version>
+            </dependency>
+            <dependency>
+                <groupId>${project.groupId}</groupId>
+                <artifactId>odl-bgpcep-topology-segment-routing</artifactId>
+                <type>xml</type>
+                <classifier>features</classifier>
+                <version>${project.version}</version>
+            </dependency>
         </dependencies>
     </dependencyManagement>
 </project>