Move shaded components to third-party/ 95/103895/2
authorRobert Varga <robert.varga@pantheon.tech>
Mon, 2 Jan 2023 17:12:47 +0000 (18:12 +0100)
committerRobert Varga <nite@hq.sk>
Mon, 2 Jan 2023 18:05:15 +0000 (18:05 +0000)
In order to make the project more navigable, separate out shaded
artifacts to a new top-level directory.

Change-Id: I227c8338c61b8f341cf4c6aa37cb6715db1f7ff3
Signed-off-by: Robert Varga <robert.varga@pantheon.tech>
netconf/pom.xml
pom.xml
third-party/pom.xml [new file with mode: 0644]
third-party/shaded-exificient-jar/check_jar.sh [moved from netconf/shaded-exificient-jar/check_jar.sh with 100% similarity]
third-party/shaded-exificient-jar/pom.xml [moved from netconf/shaded-exificient-jar/pom.xml with 100% similarity]
third-party/shaded-exificient/pom.xml [moved from netconf/shaded-exificient/pom.xml with 100% similarity]
third-party/shaded-sshd-jar/pom.xml [moved from netconf/shaded-sshd-jar/pom.xml with 100% similarity]
third-party/shaded-sshd/pom.xml [moved from netconf/shaded-sshd/pom.xml with 100% similarity]

index e87ea50ce150a380475857e189f3decbb8970bfd..0091fc50cb3f709995780663e77d9d34e3d55a68 100644 (file)
     <module>callhome-protocol</module>
 
     <module>netconf-test-models</module>
-
-    <module>shaded-exificient-jar</module>
-    <module>shaded-exificient</module>
-    <module>shaded-sshd-jar</module>
-    <module>shaded-sshd</module>
   </modules>
 </project>
diff --git a/pom.xml b/pom.xml
index 8308a522692fbf72f6c4f465e5f65fcd83703d92..d34f0dc36b2268198de4fa4e44fbbe6d364a23f1 100644 (file)
--- a/pom.xml
+++ b/pom.xml
@@ -37,6 +37,7 @@
         <module>model</module>
         <module>transport</module>
         <module>apps</module>
+        <module>third-party</module>
 
         <!-- Legacy layout -->
         <module>netconf</module>
diff --git a/third-party/pom.xml b/third-party/pom.xml
new file mode 100644 (file)
index 0000000..1c8588e
--- /dev/null
@@ -0,0 +1,37 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!-- vi: set et smarttab sw=4 tabstop=4: -->
+<!--
+ Copyright (c) 2023 PANTHEON.tech, s.r.o. and others.  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.odlparent</groupId>
+        <artifactId>odlparent-lite</artifactId>
+        <version>12.0.1</version>
+        <relativePath/>
+    </parent>
+
+    <groupId>org.opendaylight.netconf</groupId>
+    <artifactId>third-party</artifactId>
+    <version>5.0.0-SNAPSHOT</version>
+    <packaging>pom</packaging>
+    <name>${project.artifactId}</name>
+
+    <properties>
+        <maven.deploy.skip>true</maven.deploy.skip>
+        <maven.install.skip>true</maven.install.skip>
+    </properties>
+
+    <modules>
+        <module>shaded-exificient-jar</module>
+        <module>shaded-exificient</module>
+        <module>shaded-sshd-jar</module>
+        <module>shaded-sshd</module>
+    </modules>
+</project>