From f4be22754fab5cc6a7bfe9e1d208b5764e7dfdf4 Mon Sep 17 00:00:00 2001 From: Robert Varga Date: Tue, 8 Jul 2025 00:38:06 +0200 Subject: [PATCH 1/4] Fix southbound-impl Clean up dependencies to not use project.groupId and to not pull checker-qual only transtively. Change-Id: I21e1da6d8b06141d9016ce2ce5e897b6419cd42b Signed-off-by: Robert Varga (cherry picked from commit b8b7f872434739c2d70f5f9a54260c00ad2dd424) --- southbound/southbound-impl/pom.xml | 70 ++++++++++++++++-------------- 1 file changed, 37 insertions(+), 33 deletions(-) diff --git a/southbound/southbound-impl/pom.xml b/southbound/southbound-impl/pom.xml index 393883798..2d7c18ead 100644 --- a/southbound/southbound-impl/pom.xml +++ b/southbound/southbound-impl/pom.xml @@ -30,16 +30,37 @@ and is available at http://www.eclipse.org/legal/epl-v10.html - org.opendaylight.yangtools - binding-data-codec-api + com.google.guava + guava - org.opendaylight.yangtools - yang-data-util + com.github.spotbugs + spotbugs-annotations + true - org.opendaylight.yangtools - yang-data-impl + com.guicedee.services + javax.inject + true + + + jakarta.annotation + jakarta.annotation-api + true + + + org.checkerframework + checker-qual + provided + true + + + org.opendaylight.infrautils + diagstatus-api + + + org.opendaylight.infrautils + ready-api org.opendaylight.mdsal @@ -53,24 +74,23 @@ and is available at http://www.eclipse.org/legal/epl-v10.html org.opendaylight.mdsal mdsal-eos-binding-api - - ${project.groupId} + org.opendaylight.ovsdb southbound-api ${project.version} - ${project.groupId} + org.opendaylight.ovsdb utils.mdsal-utils ${project.version} - ${project.groupId} + org.opendaylight.ovsdb library ${project.version} - ${project.groupId} + org.opendaylight.ovsdb schema.openvswitch ${project.version} @@ -80,32 +100,16 @@ and is available at http://www.eclipse.org/legal/epl-v10.html ${project.version} - com.google.guava - guava - - - org.opendaylight.infrautils - ready-api - - - - org.opendaylight.infrautils - diagstatus-api - - - com.github.spotbugs - spotbugs-annotations - true + org.opendaylight.yangtools + binding-data-codec-api - com.guicedee.services - javax.inject - true + org.opendaylight.yangtools + yang-data-util - jakarta.annotation - jakarta.annotation-api - true + org.opendaylight.yangtools + yang-data-impl org.osgi -- 2.34.1 From 2bf864e7f2ba36319b65eea0913a565eb4239868 Mon Sep 17 00:00:00 2001 From: Robert Varga Date: Tue, 8 Jul 2025 01:08:21 +0200 Subject: [PATCH 2/4] Modernize DockerOvs Use java.nio.file.Files for file access. Change-Id: Ib9ddde2010b8c2a928e79f343b04d61129c32bd7 Signed-off-by: Robert Varga (cherry picked from commit 468e867f40df1f71ce7e4a1617de0fbe9041cd08) --- .../ovsdb/utils/ovsdb/it/utils/DockerOvs.java | 21 +++++-------------- 1 file changed, 5 insertions(+), 16 deletions(-) diff --git a/utils/ovsdb-it-utils/src/main/java/org/opendaylight/ovsdb/utils/ovsdb/it/utils/DockerOvs.java b/utils/ovsdb-it-utils/src/main/java/org/opendaylight/ovsdb/utils/ovsdb/it/utils/DockerOvs.java index 75c36ab22..3a01d9e3c 100644 --- a/utils/ovsdb-it-utils/src/main/java/org/opendaylight/ovsdb/utils/ovsdb/it/utils/DockerOvs.java +++ b/utils/ovsdb-it-utils/src/main/java/org/opendaylight/ovsdb/utils/ovsdb/it/utils/DockerOvs.java @@ -11,17 +11,10 @@ import static org.junit.Assert.assertNotNull; import static org.junit.Assert.fail; import static org.ops4j.pax.exam.CoreOptions.propagateSystemProperties; -import com.esotericsoftware.yamlbeans.YamlException; import com.esotericsoftware.yamlbeans.YamlReader; import java.io.File; -import java.io.FileInputStream; -import java.io.FileNotFoundException; -import java.io.FileOutputStream; import java.io.IOException; import java.io.InputStreamReader; -import java.io.OutputStreamWriter; -import java.io.Reader; -import java.io.Writer; import java.net.InetSocketAddress; import java.net.URL; import java.nio.ByteBuffer; @@ -30,6 +23,7 @@ import java.nio.channels.SocketChannel; import java.nio.charset.Charset; import java.nio.charset.CharsetDecoder; import java.nio.charset.StandardCharsets; +import java.nio.file.Files; import java.util.ArrayList; import java.util.Arrays; import java.util.HashMap; @@ -418,18 +412,13 @@ public final class DockerOvs implements AutoCloseable { private List parseDockerComposeYaml() { List ports = new ArrayList<>(); - YamlReader yamlReader = null; Map root = null; try { - yamlReader = new YamlReader(new InputStreamReader(new FileInputStream(tmpDockerComposeFile), - StandardCharsets.UTF_8)); + final var yamlReader = new YamlReader(Files.newBufferedReader(tmpDockerComposeFile.toPath())); root = (Map) yamlReader.read(); - } catch (FileNotFoundException e) { + } catch (IOException e) { LOG.warn("DockerOvs.parseDockerComposeYaml error reading yaml file", e); return ports; - } catch (YamlException e) { - LOG.warn("DockerOvs.parseDockerComposeYaml error parsing yaml file", e); - return ports; } if (null == root) { @@ -610,8 +599,8 @@ public final class DockerOvs implements AutoCloseable { try { tmpFile = File.createTempFile("ovsdb-it-tmp-", null); - try (Reader in = new InputStreamReader(url.openStream(), StandardCharsets.UTF_8); - Writer out = new OutputStreamWriter(new FileOutputStream(tmpFile), StandardCharsets.UTF_8)) { + try (var in = new InputStreamReader(url.openStream(), StandardCharsets.UTF_8); + var out = Files.newBufferedWriter(tmpFile.toPath())) { char[] buf = new char[1024]; int read; while (-1 != (read = in.read(buf))) { -- 2.34.1 From bca86387bf87d9d3841d9ebda32ada65831c6a63 Mon Sep 17 00:00:00 2001 From: Robert Varga Date: Tue, 8 Jul 2025 00:01:36 +0200 Subject: [PATCH 3/4] Fix hwvtepsouthbound-impl Clean up dependencies to not use project.groupId and to not pull checker-qual only transtively. Change-Id: I0bce462ee115d4077468bb3bd71f7b025dd140a3 Signed-off-by: Robert Varga (cherry picked from commit 04cc901682c5ba388b58a53b1952e4289d70939f) --- .../hwvtepsouthbound-impl/pom.xml | 64 ++++++++++--------- 1 file changed, 35 insertions(+), 29 deletions(-) diff --git a/hwvtepsouthbound/hwvtepsouthbound-impl/pom.xml b/hwvtepsouthbound/hwvtepsouthbound-impl/pom.xml index 3c89d285f..78d0f606b 100644 --- a/hwvtepsouthbound/hwvtepsouthbound-impl/pom.xml +++ b/hwvtepsouthbound/hwvtepsouthbound-impl/pom.xml @@ -25,70 +25,76 @@ and is available at http://www.eclipse.org/legal/epl-v10.html - org.opendaylight.yangtools - binding-data-codec-api + com.github.spotbugs + spotbugs-annotations + true - org.opendaylight.yangtools - yang-data-util + com.guicedee.services + javax.inject + true - org.opendaylight.yangtools - yang-data-impl + jakarta.annotation + jakarta.annotation-api + true - org.opendaylight.mdsal - mdsal-dom-api + org.apache.karaf.shell + org.apache.karaf.shell.core + provided - org.opendaylight.mdsal - mdsal-eos-binding-api + org.checkerframework + checker-qual + provided + true - com.github.spotbugs - spotbugs-annotations - true + org.opendaylight.mdsal + mdsal-dom-api - com.guicedee.services - javax.inject - true + org.opendaylight.mdsal + mdsal-eos-binding-api - - ${project.groupId} + org.opendaylight.ovsdb hwvtepsouthbound-api ${project.version} - ${project.groupId} + org.opendaylight.ovsdb library ${project.version} - ${project.groupId} + org.opendaylight.ovsdb schema.hardwarevtep ${project.version} - ${project.groupId} + org.opendaylight.ovsdb utils.mdsal-utils ${project.version} - jakarta.annotation - jakarta.annotation-api - true + org.opendaylight.yangtools + binding-data-codec-api - org.osgi - org.osgi.service.component.annotations + org.opendaylight.yangtools + yang-data-util - org.apache.karaf.shell - org.apache.karaf.shell.core - provided + org.opendaylight.yangtools + yang-data-impl + + + org.osgi + org.osgi.service.component.annotations + -- 2.34.1 From 7d358283ea85719086488df31920231a4c8e0003 Mon Sep 17 00:00:00 2001 From: jenkins-releng Date: Sat, 9 Aug 2025 06:32:06 +0000 Subject: [PATCH 4/4] Release Validate --- commons/binding-parent/pom.xml | 2 +- commons/it/pom.xml | 2 +- commons/pom.xml | 2 +- hwvtepsouthbound/hwvtepsouthbound-api/pom.xml | 4 ++-- hwvtepsouthbound/hwvtepsouthbound-artifacts/pom.xml | 2 +- hwvtepsouthbound/hwvtepsouthbound-features/features/pom.xml | 2 +- .../odl-ovsdb-hwvtepsouthbound-api/pom.xml | 2 +- .../odl-ovsdb-hwvtepsouthbound-rest/pom.xml | 2 +- .../odl-ovsdb-hwvtepsouthbound-test/pom.xml | 2 +- .../odl-ovsdb-hwvtepsouthbound-ui/pom.xml | 2 +- .../odl-ovsdb-hwvtepsouthbound/pom.xml | 2 +- hwvtepsouthbound/hwvtepsouthbound-features/pom.xml | 2 +- hwvtepsouthbound/hwvtepsouthbound-impl/pom.xml | 2 +- hwvtepsouthbound/hwvtepsouthbound-it/pom.xml | 2 +- hwvtepsouthbound/hwvtepsouthbound-karaf/pom.xml | 2 +- hwvtepsouthbound/pom.xml | 2 +- library/artifacts/pom.xml | 2 +- library/features/features/pom.xml | 2 +- library/features/odl-ovsdb-library/pom.xml | 2 +- library/features/pom.xml | 2 +- library/impl/pom.xml | 4 ++-- library/it/pom.xml | 6 +++--- library/karaf/pom.xml | 2 +- library/pom.xml | 2 +- pom.xml | 2 +- schemas/hardwarevtep/pom.xml | 4 ++-- schemas/openvswitch/pom.xml | 4 ++-- schemas/pom.xml | 2 +- southbound/pom.xml | 2 +- southbound/southbound-api/pom.xml | 4 ++-- southbound/southbound-artifacts/pom.xml | 2 +- southbound/southbound-features/features/pom.xml | 2 +- .../southbound-features/odl-ovsdb-southbound-api/pom.xml | 2 +- .../odl-ovsdb-southbound-impl-rest/pom.xml | 2 +- .../odl-ovsdb-southbound-impl-ui/pom.xml | 2 +- .../southbound-features/odl-ovsdb-southbound-impl/pom.xml | 2 +- .../southbound-features/odl-ovsdb-southbound-test/pom.xml | 2 +- southbound/southbound-features/pom.xml | 2 +- southbound/southbound-impl/pom.xml | 2 +- southbound/southbound-it/pom.xml | 2 +- southbound/southbound-karaf/pom.xml | 2 +- utils/config/pom.xml | 4 ++-- utils/hwvtepsouthbound-utils/pom.xml | 4 ++-- utils/mdsal-utils/pom.xml | 4 ++-- utils/odl-ovsdb-utils/pom.xml | 2 +- utils/ovsdb-it-utils/pom.xml | 2 +- utils/pom.xml | 2 +- utils/servicehelper/pom.xml | 4 ++-- utils/southbound-utils/pom.xml | 4 ++-- utils/yang-utils/pom.xml | 2 +- 50 files changed, 62 insertions(+), 62 deletions(-) diff --git a/commons/binding-parent/pom.xml b/commons/binding-parent/pom.xml index 24b243871..6c968028b 100644 --- a/commons/binding-parent/pom.xml +++ b/commons/binding-parent/pom.xml @@ -17,7 +17,7 @@ org.opendaylight.ovsdb ovsdb-binding-parent - 1.19.3-SNAPSHOT + 1.19.3 pom diff --git a/commons/it/pom.xml b/commons/it/pom.xml index 30d8c17ad..945af5f63 100644 --- a/commons/it/pom.xml +++ b/commons/it/pom.xml @@ -18,7 +18,7 @@ and is available at http://www.eclipse.org/legal/epl-v10.html org.opendaylight.ovsdb it - 1.19.3-SNAPSHOT + 1.19.3 pom diff --git a/commons/pom.xml b/commons/pom.xml index 30fd61d1d..457a205ae 100644 --- a/commons/pom.xml +++ b/commons/pom.xml @@ -18,7 +18,7 @@ and is available at http://www.eclipse.org/legal/epl-v10.html org.opendaylight.ovsdb parents - 1.19.3-SNAPSHOT + 1.19.3 ODL :: ovsdb :: ${project.artifactId} diff --git a/hwvtepsouthbound/hwvtepsouthbound-api/pom.xml b/hwvtepsouthbound/hwvtepsouthbound-api/pom.xml index 8d9e8674d..0adc9ba3e 100644 --- a/hwvtepsouthbound/hwvtepsouthbound-api/pom.xml +++ b/hwvtepsouthbound/hwvtepsouthbound-api/pom.xml @@ -10,14 +10,14 @@ and is available at http://www.eclipse.org/legal/epl-v10.html org.opendaylight.ovsdb ovsdb-binding-parent - 1.19.3-SNAPSHOT + 1.19.3 ../../commons/binding-parent 4.0.0 org.opendaylight.ovsdb hwvtepsouthbound-api - 1.19.3-SNAPSHOT + 1.19.3 bundle diff --git a/hwvtepsouthbound/hwvtepsouthbound-artifacts/pom.xml b/hwvtepsouthbound/hwvtepsouthbound-artifacts/pom.xml index 075e6f98b..5507976ed 100644 --- a/hwvtepsouthbound/hwvtepsouthbound-artifacts/pom.xml +++ b/hwvtepsouthbound/hwvtepsouthbound-artifacts/pom.xml @@ -19,7 +19,7 @@ and is available at http://www.eclipse.org/legal/epl-v10.html org.opendaylight.ovsdb hwvtepsouthbound-artifacts - 1.19.3-SNAPSHOT + 1.19.3 pom diff --git a/hwvtepsouthbound/hwvtepsouthbound-features/features/pom.xml b/hwvtepsouthbound/hwvtepsouthbound-features/features/pom.xml index 7e4194509..8e1e4dbe9 100644 --- a/hwvtepsouthbound/hwvtepsouthbound-features/features/pom.xml +++ b/hwvtepsouthbound/hwvtepsouthbound-features/features/pom.xml @@ -18,7 +18,7 @@ and is available at http://www.eclipse.org/legal/epl-v10.html org.opendaylight.ovsdb hwvtepsouthbound-features - 1.19.3-SNAPSHOT + 1.19.3 feature diff --git a/hwvtepsouthbound/hwvtepsouthbound-features/odl-ovsdb-hwvtepsouthbound-api/pom.xml b/hwvtepsouthbound/hwvtepsouthbound-features/odl-ovsdb-hwvtepsouthbound-api/pom.xml index 3b25d0a08..3dd0fe14e 100644 --- a/hwvtepsouthbound/hwvtepsouthbound-features/odl-ovsdb-hwvtepsouthbound-api/pom.xml +++ b/hwvtepsouthbound/hwvtepsouthbound-features/odl-ovsdb-hwvtepsouthbound-api/pom.xml @@ -11,7 +11,7 @@ org.opendaylight.ovsdb odl-ovsdb-hwvtepsouthbound-api - 1.19.3-SNAPSHOT + 1.19.3 feature diff --git a/hwvtepsouthbound/hwvtepsouthbound-features/odl-ovsdb-hwvtepsouthbound-rest/pom.xml b/hwvtepsouthbound/hwvtepsouthbound-features/odl-ovsdb-hwvtepsouthbound-rest/pom.xml index d7c49389f..0ef41c566 100644 --- a/hwvtepsouthbound/hwvtepsouthbound-features/odl-ovsdb-hwvtepsouthbound-rest/pom.xml +++ b/hwvtepsouthbound/hwvtepsouthbound-features/odl-ovsdb-hwvtepsouthbound-rest/pom.xml @@ -18,7 +18,7 @@ and is available at http://www.eclipse.org/legal/epl-v10.html org.opendaylight.ovsdb odl-ovsdb-hwvtepsouthbound-rest - 1.19.3-SNAPSHOT + 1.19.3 feature diff --git a/hwvtepsouthbound/hwvtepsouthbound-impl/pom.xml b/hwvtepsouthbound/hwvtepsouthbound-impl/pom.xml index 78d0f606b..3b2b2f863 100644 --- a/hwvtepsouthbound/hwvtepsouthbound-impl/pom.xml +++ b/hwvtepsouthbound/hwvtepsouthbound-impl/pom.xml @@ -12,7 +12,7 @@ and is available at http://www.eclipse.org/legal/epl-v10.html org.opendaylight.ovsdb ovsdb-binding-parent - 1.19.3-SNAPSHOT + 1.19.3 ../../commons/binding-parent diff --git a/hwvtepsouthbound/hwvtepsouthbound-it/pom.xml b/hwvtepsouthbound/hwvtepsouthbound-it/pom.xml index d01cc53fe..935962ba6 100644 --- a/hwvtepsouthbound/hwvtepsouthbound-it/pom.xml +++ b/hwvtepsouthbound/hwvtepsouthbound-it/pom.xml @@ -11,7 +11,7 @@ and is available at http://www.eclipse.org/legal/epl-v10.html org.opendaylight.ovsdb it - 1.19.3-SNAPSHOT + 1.19.3 ../../commons/it diff --git a/hwvtepsouthbound/hwvtepsouthbound-karaf/pom.xml b/hwvtepsouthbound/hwvtepsouthbound-karaf/pom.xml index df26bc1c9..8eb9befab 100644 --- a/hwvtepsouthbound/hwvtepsouthbound-karaf/pom.xml +++ b/hwvtepsouthbound/hwvtepsouthbound-karaf/pom.xml @@ -15,7 +15,7 @@ and is available at http://www.eclipse.org/legal/epl-v10.html INTERNAL 4.0.0 org.opendaylight.ovsdb hwvtepsouthbound-karaf - 1.19.3-SNAPSHOT + 1.19.3 pom diff --git a/hwvtepsouthbound/pom.xml b/hwvtepsouthbound/pom.xml index e483be7d4..9d2449ba3 100644 --- a/hwvtepsouthbound/pom.xml +++ b/hwvtepsouthbound/pom.xml @@ -17,7 +17,7 @@ and is available at http://www.eclipse.org/legal/epl-v10.html INTERNAL org.opendaylight.ovsdb hwvtepsouthbound-aggregator - 1.19.3-SNAPSHOT + 1.19.3 ODL :: ovsdb :: ${project.artifactId} diff --git a/library/artifacts/pom.xml b/library/artifacts/pom.xml index f58ae320f..3ab0f9a17 100644 --- a/library/artifacts/pom.xml +++ b/library/artifacts/pom.xml @@ -19,7 +19,7 @@ and is available at http://www.eclipse.org/legal/epl-v10.html org.opendaylight.ovsdb library-artifacts - 1.19.3-SNAPSHOT + 1.19.3 pom diff --git a/library/features/features/pom.xml b/library/features/features/pom.xml index efd63ef52..0979ae8ad 100644 --- a/library/features/features/pom.xml +++ b/library/features/features/pom.xml @@ -18,7 +18,7 @@ and is available at http://www.eclipse.org/legal/epl-v10.html org.opendaylight.ovsdb library-features - 1.19.3-SNAPSHOT + 1.19.3 feature diff --git a/library/features/odl-ovsdb-library/pom.xml b/library/features/odl-ovsdb-library/pom.xml index a63b73e3e..f4a90b100 100644 --- a/library/features/odl-ovsdb-library/pom.xml +++ b/library/features/odl-ovsdb-library/pom.xml @@ -18,7 +18,7 @@ and is available at http://www.eclipse.org/legal/epl-v10.html org.opendaylight.ovsdb odl-ovsdb-library - 1.19.3-SNAPSHOT + 1.19.3 feature ODL :: ovsdb :: ${project.artifactId} diff --git a/library/impl/pom.xml b/library/impl/pom.xml index 802f3e3fe..b2b4d2ec2 100644 --- a/library/impl/pom.xml +++ b/library/impl/pom.xml @@ -12,14 +12,14 @@ and is available at http://www.eclipse.org/legal/epl-v10.html org.opendaylight.ovsdb ovsdb-binding-parent - 1.19.3-SNAPSHOT + 1.19.3 ../../commons/binding-parent 4.0.0 org.opendaylight.ovsdb library - 1.19.3-SNAPSHOT + 1.19.3 bundle diff --git a/library/it/pom.xml b/library/it/pom.xml index 18a6cf1f4..c4ac61bcd 100644 --- a/library/it/pom.xml +++ b/library/it/pom.xml @@ -11,14 +11,14 @@ and is available at http://www.eclipse.org/legal/epl-v10.html org.opendaylight.ovsdb it - 1.19.3-SNAPSHOT + 1.19.3 ../../commons/it 4.0.0 org.opendaylight.ovsdb library-it - 1.19.3-SNAPSHOT + 1.19.3 jar @@ -27,7 +27,7 @@ and is available at http://www.eclipse.org/legal/epl-v10.html org.opendaylight.ovsdb library-karaf - 1.19.3-SNAPSHOT + 1.19.3 zip diff --git a/library/karaf/pom.xml b/library/karaf/pom.xml index 7074ab0b9..7de3e05fa 100644 --- a/library/karaf/pom.xml +++ b/library/karaf/pom.xml @@ -15,7 +15,7 @@ and is available at http://www.eclipse.org/legal/epl-v10.html INTERNAL 4.0.0 org.opendaylight.ovsdb library-karaf - 1.19.3-SNAPSHOT + 1.19.3 pom diff --git a/library/pom.xml b/library/pom.xml index bbf9a9627..cb781c1a2 100644 --- a/library/pom.xml +++ b/library/pom.xml @@ -17,7 +17,7 @@ and is available at http://www.eclipse.org/legal/epl-v10.html org.opendaylight.ovsdb library-aggregator - 1.19.3-SNAPSHOT + 1.19.3 ODL :: ovsdb :: ${project.artifactId} diff --git a/pom.xml b/pom.xml index f2ea23e82..81464894f 100644 --- a/pom.xml +++ b/pom.xml @@ -18,7 +18,7 @@ and is available at http://www.eclipse.org/legal/epl-v10.html org.opendaylight.ovsdb ovsdb - 1.19.3-SNAPSHOT + 1.19.3 ${project.artifactId} pom diff --git a/schemas/hardwarevtep/pom.xml b/schemas/hardwarevtep/pom.xml index 421481530..33cc7bed6 100644 --- a/schemas/hardwarevtep/pom.xml +++ b/schemas/hardwarevtep/pom.xml @@ -12,13 +12,13 @@ and is available at http://www.eclipse.org/legal/epl-v10.html org.opendaylight.ovsdb ovsdb-binding-parent - 1.19.3-SNAPSHOT + 1.19.3 ../../commons/binding-parent org.opendaylight.ovsdb schema.hardwarevtep - 1.19.3-SNAPSHOT + 1.19.3 bundle diff --git a/schemas/openvswitch/pom.xml b/schemas/openvswitch/pom.xml index 9028c8634..c0556ef73 100644 --- a/schemas/openvswitch/pom.xml +++ b/schemas/openvswitch/pom.xml @@ -12,13 +12,13 @@ and is available at http://www.eclipse.org/legal/epl-v10.html org.opendaylight.ovsdb ovsdb-binding-parent - 1.19.3-SNAPSHOT + 1.19.3 ../../commons/binding-parent org.opendaylight.ovsdb schema.openvswitch - 1.19.3-SNAPSHOT + 1.19.3 bundle diff --git a/schemas/pom.xml b/schemas/pom.xml index bb563746f..53442781c 100644 --- a/schemas/pom.xml +++ b/schemas/pom.xml @@ -18,7 +18,7 @@ and is available at http://www.eclipse.org/legal/epl-v10.html org.opendaylight.ovsdb schemas - 1.19.3-SNAPSHOT + 1.19.3 ODL :: ovsdb :: ${project.artifactId} diff --git a/southbound/pom.xml b/southbound/pom.xml index 358c16eb7..9a4c880a8 100644 --- a/southbound/pom.xml +++ b/southbound/pom.xml @@ -16,7 +16,7 @@ and is available at http://www.eclipse.org/legal/epl-v10.html INTERNAL org.opendaylight.ovsdb southbound-aggregator - 1.19.3-SNAPSHOT + 1.19.3 ODL :: ovsdb :: ${project.artifactId} diff --git a/southbound/southbound-api/pom.xml b/southbound/southbound-api/pom.xml index 5bf3b0d8f..fb96e85ff 100644 --- a/southbound/southbound-api/pom.xml +++ b/southbound/southbound-api/pom.xml @@ -10,14 +10,14 @@ and is available at http://www.eclipse.org/legal/epl-v10.html org.opendaylight.ovsdb ovsdb-binding-parent - 1.19.3-SNAPSHOT + 1.19.3 ../../commons/binding-parent 4.0.0 org.opendaylight.ovsdb southbound-api - 1.19.3-SNAPSHOT + 1.19.3 bundle diff --git a/southbound/southbound-artifacts/pom.xml b/southbound/southbound-artifacts/pom.xml index a17693128..58eb09145 100644 --- a/southbound/southbound-artifacts/pom.xml +++ b/southbound/southbound-artifacts/pom.xml @@ -19,7 +19,7 @@ and is available at http://www.eclipse.org/legal/epl-v10.html org.opendaylight.ovsdb southbound-artifacts - 1.19.3-SNAPSHOT + 1.19.3 pom diff --git a/southbound/southbound-features/features/pom.xml b/southbound/southbound-features/features/pom.xml index 49c556846..7e4b81ccf 100644 --- a/southbound/southbound-features/features/pom.xml +++ b/southbound/southbound-features/features/pom.xml @@ -18,7 +18,7 @@ and is available at http://www.eclipse.org/legal/epl-v10.html org.opendaylight.ovsdb southbound-features - 1.19.3-SNAPSHOT + 1.19.3 feature diff --git a/southbound/southbound-features/odl-ovsdb-southbound-api/pom.xml b/southbound/southbound-features/odl-ovsdb-southbound-api/pom.xml index 920cd9382..d82ab3d47 100644 --- a/southbound/southbound-features/odl-ovsdb-southbound-api/pom.xml +++ b/southbound/southbound-features/odl-ovsdb-southbound-api/pom.xml @@ -18,7 +18,7 @@ and is available at http://www.eclipse.org/legal/epl-v10.html org.opendaylight.ovsdb odl-ovsdb-southbound-api - 1.19.3-SNAPSHOT + 1.19.3 feature diff --git a/southbound/southbound-features/odl-ovsdb-southbound-impl-rest/pom.xml b/southbound/southbound-features/odl-ovsdb-southbound-impl-rest/pom.xml index c70dfdd86..005925b3b 100644 --- a/southbound/southbound-features/odl-ovsdb-southbound-impl-rest/pom.xml +++ b/southbound/southbound-features/odl-ovsdb-southbound-impl-rest/pom.xml @@ -18,7 +18,7 @@ and is available at http://www.eclipse.org/legal/epl-v10.html org.opendaylight.ovsdb odl-ovsdb-southbound-impl-rest - 1.19.3-SNAPSHOT + 1.19.3 feature ODL :: ovsdb :: ${project.artifactId} diff --git a/southbound/southbound-impl/pom.xml b/southbound/southbound-impl/pom.xml index 2d7c18ead..01fd2b326 100644 --- a/southbound/southbound-impl/pom.xml +++ b/southbound/southbound-impl/pom.xml @@ -12,7 +12,7 @@ and is available at http://www.eclipse.org/legal/epl-v10.html org.opendaylight.ovsdb ovsdb-binding-parent - 1.19.3-SNAPSHOT + 1.19.3 ../../commons/binding-parent diff --git a/southbound/southbound-it/pom.xml b/southbound/southbound-it/pom.xml index 7e2c9091b..5fcf2f27a 100644 --- a/southbound/southbound-it/pom.xml +++ b/southbound/southbound-it/pom.xml @@ -12,7 +12,7 @@ and is available at http://www.eclipse.org/legal/epl-v10.html org.opendaylight.ovsdb it - 1.19.3-SNAPSHOT + 1.19.3 ../../commons/it 4.0.0 diff --git a/southbound/southbound-karaf/pom.xml b/southbound/southbound-karaf/pom.xml index bf1f90a70..863f40054 100644 --- a/southbound/southbound-karaf/pom.xml +++ b/southbound/southbound-karaf/pom.xml @@ -15,7 +15,7 @@ and is available at http://www.eclipse.org/legal/epl-v10.html INTERNAL 4.0.0 org.opendaylight.ovsdb southbound-karaf - 1.19.3-SNAPSHOT + 1.19.3 pom diff --git a/utils/config/pom.xml b/utils/config/pom.xml index a15f43f8b..1dd52e3f8 100644 --- a/utils/config/pom.xml +++ b/utils/config/pom.xml @@ -12,13 +12,13 @@ and is available at http://www.eclipse.org/legal/epl-v10.html org.opendaylight.ovsdb ovsdb-binding-parent - 1.19.3-SNAPSHOT + 1.19.3 ../../commons/binding-parent org.opendaylight.ovsdb utils.config - 1.19.3-SNAPSHOT + 1.19.3 ODL :: ovsdb :: ${project.artifactId} diff --git a/utils/hwvtepsouthbound-utils/pom.xml b/utils/hwvtepsouthbound-utils/pom.xml index 8c2c39447..36657275b 100644 --- a/utils/hwvtepsouthbound-utils/pom.xml +++ b/utils/hwvtepsouthbound-utils/pom.xml @@ -11,13 +11,13 @@ and is available at http://www.eclipse.org/legal/epl-v10.html org.opendaylight.ovsdb ovsdb-binding-parent - 1.19.3-SNAPSHOT + 1.19.3 ../../commons/binding-parent org.opendaylight.ovsdb utils.hwvtepsouthbound-utils - 1.19.3-SNAPSHOT + 1.19.3 bundle diff --git a/utils/mdsal-utils/pom.xml b/utils/mdsal-utils/pom.xml index 2124eb71c..f9dff1afb 100644 --- a/utils/mdsal-utils/pom.xml +++ b/utils/mdsal-utils/pom.xml @@ -11,13 +11,13 @@ and is available at http://www.eclipse.org/legal/epl-v10.html org.opendaylight.ovsdb ovsdb-binding-parent - 1.19.3-SNAPSHOT + 1.19.3 ../../commons/binding-parent org.opendaylight.ovsdb utils.mdsal-utils - 1.19.3-SNAPSHOT + 1.19.3 bundle diff --git a/utils/odl-ovsdb-utils/pom.xml b/utils/odl-ovsdb-utils/pom.xml index 1bc2d6f5b..9e000ced5 100644 --- a/utils/odl-ovsdb-utils/pom.xml +++ b/utils/odl-ovsdb-utils/pom.xml @@ -18,7 +18,7 @@ and is available at http://www.eclipse.org/legal/epl-v10.html org.opendaylight.ovsdb odl-ovsdb-utils - 1.19.3-SNAPSHOT + 1.19.3 feature diff --git a/utils/ovsdb-it-utils/pom.xml b/utils/ovsdb-it-utils/pom.xml index 656f1e5f2..5d728047b 100644 --- a/utils/ovsdb-it-utils/pom.xml +++ b/utils/ovsdb-it-utils/pom.xml @@ -11,7 +11,7 @@ and is available at http://www.eclipse.org/legal/epl-v10.html org.opendaylight.ovsdb ovsdb-binding-parent - 1.19.3-SNAPSHOT + 1.19.3 ../../commons/binding-parent diff --git a/utils/pom.xml b/utils/pom.xml index 66ea541ca..fb82c8528 100644 --- a/utils/pom.xml +++ b/utils/pom.xml @@ -18,7 +18,7 @@ and is available at http://www.eclipse.org/legal/epl-v10.html org.opendaylight.ovsdb utils - 1.19.3-SNAPSHOT + 1.19.3 pom diff --git a/utils/servicehelper/pom.xml b/utils/servicehelper/pom.xml index 45c101c9e..08a925686 100644 --- a/utils/servicehelper/pom.xml +++ b/utils/servicehelper/pom.xml @@ -12,13 +12,13 @@ and is available at http://www.eclipse.org/legal/epl-v10.html org.opendaylight.ovsdb ovsdb-binding-parent - 1.19.3-SNAPSHOT + 1.19.3 ../../commons/binding-parent org.opendaylight.ovsdb utils.servicehelper - 1.19.3-SNAPSHOT + 1.19.3 bundle diff --git a/utils/southbound-utils/pom.xml b/utils/southbound-utils/pom.xml index 2aaedf2c1..5b81f9790 100644 --- a/utils/southbound-utils/pom.xml +++ b/utils/southbound-utils/pom.xml @@ -11,13 +11,13 @@ and is available at http://www.eclipse.org/legal/epl-v10.html org.opendaylight.ovsdb ovsdb-binding-parent - 1.19.3-SNAPSHOT + 1.19.3 ../../commons/binding-parent org.opendaylight.ovsdb utils.southbound-utils - 1.19.3-SNAPSHOT + 1.19.3 bundle diff --git a/utils/yang-utils/pom.xml b/utils/yang-utils/pom.xml index 43edda74f..36c280b3c 100644 --- a/utils/yang-utils/pom.xml +++ b/utils/yang-utils/pom.xml @@ -11,7 +11,7 @@ and is available at http://www.eclipse.org/legal/epl-v10.html org.opendaylight.ovsdb ovsdb-binding-parent - 1.19.3-SNAPSHOT + 1.19.3 ../../commons/binding-parent -- 2.34.1