Add odl-netconf-transport 72/105772/8
authorRobert Varga <robert.varga@pantheon.tech>
Tue, 2 May 2023 11:06:17 +0000 (13:06 +0200)
committerRobert Varga <robert.varga@pantheon.tech>
Thu, 8 Jun 2023 18:30:15 +0000 (20:30 +0200)
Package the rest of the transport-level features, so that individual
users may depend on this feature to provide all the transports
available.

JIRA: NETCONF-590
Change-Id: Ie3091c2ba29df287a7b374768e25ef100ff54e67
Signed-off-by: Robert Varga <robert.varga@pantheon.tech>
Signed-off-by: Ruslan Kashapov <ruslan.kashapov@pantheon.tech>
artifacts/pom.xml
features/features-netconf/pom.xml
features/odl-netconf-transport/pom.xml [new file with mode: 0644]
features/pom.xml

index 7082e1a76d0c5864cbfbc1c88d5d15d9dc82f99b..5c4ac9fcf798d2c70d235d013bd06128158e1c3d 100644 (file)
             </dependency>
 
             <!-- NETCONF Transport features -->
+            <dependency>
+                <groupId>org.opendaylight.netconf</groupId>
+                <artifactId>odl-netconf-transport</artifactId>
+                <version>${project.version}</version>
+                <type>xml</type>
+                <classifier>features</classifier>
+            </dependency>
             <dependency>
                 <groupId>org.opendaylight.netconf</groupId>
                 <artifactId>odl-netconf-transport-api</artifactId>
index 5ea9128a93798c12e0070d392c06af462b229980..f63151eba906edff0411dfb001db9f843e53b50a 100644 (file)
             <type>xml</type>
             <classifier>features</classifier>
         </dependency>
+        <dependency>
+            <groupId>org.opendaylight.netconf</groupId>
+            <artifactId>odl-netconf-transport</artifactId>
+            <type>xml</type>
+            <classifier>features</classifier>
+        </dependency>
         <dependency>
             <groupId>org.opendaylight.netconf</groupId>
             <artifactId>odl-netconf-keystore</artifactId>
diff --git a/features/odl-netconf-transport/pom.xml b/features/odl-netconf-transport/pom.xml
new file mode 100644 (file)
index 0000000..e9983eb
--- /dev/null
@@ -0,0 +1,56 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+ Copyright © 2023 PANTHEON.tech, s.r.o. and others.
+
+ 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.netconf</groupId>
+        <artifactId>feature-parent</artifactId>
+        <version>6.0.0-SNAPSHOT</version>
+        <relativePath>../parent</relativePath>
+    </parent>
+
+    <artifactId>odl-netconf-transport</artifactId>
+    <packaging>feature</packaging>
+    <name>OpenDaylight :: Netconf :: Transport</name>
+
+    <dependencies>
+        <dependency>
+            <groupId>org.opendaylight.netconf</groupId>
+            <artifactId>odl-netconf-keystore</artifactId>
+            <type>xml</type>
+            <classifier>features</classifier>
+        </dependency>
+        <dependency>
+            <groupId>org.opendaylight.netconf</groupId>
+            <artifactId>odl-netconf-truststore</artifactId>
+            <type>xml</type>
+            <classifier>features</classifier>
+        </dependency>
+        <dependency>
+            <groupId>org.opendaylight.netconf</groupId>
+            <artifactId>odl-netconf-transport-api</artifactId>
+            <type>xml</type>
+            <classifier>features</classifier>
+        </dependency>
+
+        <dependency>
+            <groupId>org.opendaylight.netconf</groupId>
+            <artifactId>transport-ssh</artifactId>
+        </dependency>
+        <dependency>
+            <groupId>org.opendaylight.netconf</groupId>
+            <artifactId>transport-tcp</artifactId>
+        </dependency>
+        <dependency>
+            <groupId>org.opendaylight.netconf</groupId>
+            <artifactId>transport-tls</artifactId>
+        </dependency>
+    </dependencies>
+</project>
index 41bfd6191f82dbe177ea9922595fe46e4b434d6b..af4e508a97a444fe180c56aedd6c6ebb947313f8 100644 (file)
@@ -58,6 +58,7 @@
         <module>odl-netconf-ssh</module>
         <module>odl-netconf-test-tools</module>
         <module>odl-netconf-topology</module>
+        <module>odl-netconf-transport</module>
         <module>odl-netconf-transport-api</module>
         <module>odl-netconf-truststore</module>
         <module>odl-netconf-util</module>