From 63ab71a58966438c528cd8bb88cdf9422ed03304 Mon Sep 17 00:00:00 2001 From: Robert Varga Date: Tue, 7 Jan 2020 00:21:50 +0100 Subject: [PATCH] Move mdsal-uint24-netty We can expect to have more Netty integrations, this creates a top-level directory to hold those artifacts. Change-Id: Ied1645b64b71ddfe9e090f129dc68e8fc785a9c4 Signed-off-by: Robert Varga --- common/pom.xml | 1 - {common => netty}/mdsal-uint24-netty/pom.xml | 0 .../uint24/netty/Uint24ByteBufUtils.java | 0 .../uint24/netty/Uint24ByteBufUtilsTest.java | 0 netty/pom.xml | 35 +++++++++++++++++++ pom.xml | 2 ++ 6 files changed, 37 insertions(+), 1 deletion(-) rename {common => netty}/mdsal-uint24-netty/pom.xml (100%) rename {common => netty}/mdsal-uint24-netty/src/main/java/org/opendaylight/mdsal/uint24/netty/Uint24ByteBufUtils.java (100%) rename {common => netty}/mdsal-uint24-netty/src/test/java/org/opendaylight/mdsal/uint24/netty/Uint24ByteBufUtilsTest.java (100%) create mode 100644 netty/pom.xml diff --git a/common/pom.xml b/common/pom.xml index c6b18f4cca..d3e74f6885 100644 --- a/common/pom.xml +++ b/common/pom.xml @@ -27,7 +27,6 @@ mdsal-common-api mdsal-common-util - mdsal-uint24-netty diff --git a/common/mdsal-uint24-netty/pom.xml b/netty/mdsal-uint24-netty/pom.xml similarity index 100% rename from common/mdsal-uint24-netty/pom.xml rename to netty/mdsal-uint24-netty/pom.xml diff --git a/common/mdsal-uint24-netty/src/main/java/org/opendaylight/mdsal/uint24/netty/Uint24ByteBufUtils.java b/netty/mdsal-uint24-netty/src/main/java/org/opendaylight/mdsal/uint24/netty/Uint24ByteBufUtils.java similarity index 100% rename from common/mdsal-uint24-netty/src/main/java/org/opendaylight/mdsal/uint24/netty/Uint24ByteBufUtils.java rename to netty/mdsal-uint24-netty/src/main/java/org/opendaylight/mdsal/uint24/netty/Uint24ByteBufUtils.java diff --git a/common/mdsal-uint24-netty/src/test/java/org/opendaylight/mdsal/uint24/netty/Uint24ByteBufUtilsTest.java b/netty/mdsal-uint24-netty/src/test/java/org/opendaylight/mdsal/uint24/netty/Uint24ByteBufUtilsTest.java similarity index 100% rename from common/mdsal-uint24-netty/src/test/java/org/opendaylight/mdsal/uint24/netty/Uint24ByteBufUtilsTest.java rename to netty/mdsal-uint24-netty/src/test/java/org/opendaylight/mdsal/uint24/netty/Uint24ByteBufUtilsTest.java diff --git a/netty/pom.xml b/netty/pom.xml new file mode 100644 index 0000000000..de6e29d9f1 --- /dev/null +++ b/netty/pom.xml @@ -0,0 +1,35 @@ + + + + + + + org.opendaylight.odlparent + odlparent-lite + 6.0.3 + + + + 4.0.0 + org.opendaylight.mdsal + netty-agreggator + 6.0.0-SNAPSHOT + pom + ${project.artifactId} + ${project.artifactId} + + + mdsal-uint24-netty + + + + true + true + + diff --git a/pom.xml b/pom.xml index c8f8e21dfe..737508557c 100644 --- a/pom.xml +++ b/pom.xml @@ -35,6 +35,8 @@ singleton-service trace + + netty yanglib -- 2.36.6