From c1c8a172df7b7ed2de7752bcd0fa8107748c12b2 Mon Sep 17 00:00:00 2001 From: Robert Varga Date: Mon, 2 Jan 2023 18:12:47 +0100 Subject: [PATCH] Move shaded components to third-party/ 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 --- netconf/pom.xml | 5 --- pom.xml | 1 + third-party/pom.xml | 37 +++++++++++++++++++ .../shaded-exificient-jar/check_jar.sh | 0 .../shaded-exificient-jar/pom.xml | 0 .../shaded-exificient/pom.xml | 0 .../shaded-sshd-jar/pom.xml | 0 {netconf => third-party}/shaded-sshd/pom.xml | 0 8 files changed, 38 insertions(+), 5 deletions(-) create mode 100644 third-party/pom.xml rename {netconf => third-party}/shaded-exificient-jar/check_jar.sh (100%) rename {netconf => third-party}/shaded-exificient-jar/pom.xml (100%) rename {netconf => third-party}/shaded-exificient/pom.xml (100%) rename {netconf => third-party}/shaded-sshd-jar/pom.xml (100%) rename {netconf => third-party}/shaded-sshd/pom.xml (100%) diff --git a/netconf/pom.xml b/netconf/pom.xml index e87ea50ce1..0091fc50cb 100644 --- a/netconf/pom.xml +++ b/netconf/pom.xml @@ -56,10 +56,5 @@ callhome-protocol netconf-test-models - - shaded-exificient-jar - shaded-exificient - shaded-sshd-jar - shaded-sshd diff --git a/pom.xml b/pom.xml index 8308a52269..d34f0dc36b 100644 --- a/pom.xml +++ b/pom.xml @@ -37,6 +37,7 @@ model transport apps + third-party netconf diff --git a/third-party/pom.xml b/third-party/pom.xml new file mode 100644 index 0000000000..1c8588e4f0 --- /dev/null +++ b/third-party/pom.xml @@ -0,0 +1,37 @@ + + + + + 4.0.0 + + + org.opendaylight.odlparent + odlparent-lite + 12.0.1 + + + + org.opendaylight.netconf + third-party + 5.0.0-SNAPSHOT + pom + ${project.artifactId} + + + true + true + + + + shaded-exificient-jar + shaded-exificient + shaded-sshd-jar + shaded-sshd + + diff --git a/netconf/shaded-exificient-jar/check_jar.sh b/third-party/shaded-exificient-jar/check_jar.sh similarity index 100% rename from netconf/shaded-exificient-jar/check_jar.sh rename to third-party/shaded-exificient-jar/check_jar.sh diff --git a/netconf/shaded-exificient-jar/pom.xml b/third-party/shaded-exificient-jar/pom.xml similarity index 100% rename from netconf/shaded-exificient-jar/pom.xml rename to third-party/shaded-exificient-jar/pom.xml diff --git a/netconf/shaded-exificient/pom.xml b/third-party/shaded-exificient/pom.xml similarity index 100% rename from netconf/shaded-exificient/pom.xml rename to third-party/shaded-exificient/pom.xml diff --git a/netconf/shaded-sshd-jar/pom.xml b/third-party/shaded-sshd-jar/pom.xml similarity index 100% rename from netconf/shaded-sshd-jar/pom.xml rename to third-party/shaded-sshd-jar/pom.xml diff --git a/netconf/shaded-sshd/pom.xml b/third-party/shaded-sshd/pom.xml similarity index 100% rename from netconf/shaded-sshd/pom.xml rename to third-party/shaded-sshd/pom.xml -- 2.36.6