From 8fc1861f7785e98b23d58045a1b29ed331431260 Mon Sep 17 00:00:00 2001 From: Robert Varga Date: Mon, 21 Oct 2024 10:59:13 +0200 Subject: [PATCH 1/3] Fixup checkstyle Upgraded checkstyle is finding day-0 violations, fix them up. Change-Id: I27e8ee21034ed39702f8b70fa9df723bb10e7677 Signed-off-by: Robert Varga --- .../reconciliation/ReconciliationManager.java | 9 +++------ .../reconciliation/ReconciliationTask.java | 3 +-- .../reconciliation/ReconciliationTaskManager.java | 9 +++------ .../connection/ConnectionReconciliationTask.java | 3 +-- .../ovsdb/lib/schema/typed/MethodDispatch.java | 5 ++--- .../ovsdb/utils/ovsdb/it/utils/DockerOvs.java | 3 +-- 6 files changed, 11 insertions(+), 21 deletions(-) diff --git a/hwvtepsouthbound/hwvtepsouthbound-impl/src/main/java/org/opendaylight/ovsdb/hwvtepsouthbound/reconciliation/ReconciliationManager.java b/hwvtepsouthbound/hwvtepsouthbound-impl/src/main/java/org/opendaylight/ovsdb/hwvtepsouthbound/reconciliation/ReconciliationManager.java index 8beaac578..c27e34244 100644 --- a/hwvtepsouthbound/hwvtepsouthbound-impl/src/main/java/org/opendaylight/ovsdb/hwvtepsouthbound/reconciliation/ReconciliationManager.java +++ b/hwvtepsouthbound/hwvtepsouthbound-impl/src/main/java/org/opendaylight/ovsdb/hwvtepsouthbound/reconciliation/ReconciliationManager.java @@ -21,8 +21,7 @@ import org.slf4j.LoggerFactory; /** * Copied from org.opendaylight.ovsdb.southbound.reconciliation.ReconciliationManager. * - *

- * This class provides the implementation of ovsdb southbound plugins + *

This class provides the implementation of ovsdb southbound plugins * configuration reconciliation engine. This engine provide interfaces * to enqueue (one time retry)/ enqueueForRetry(periodic retry)/ dequeue * (remove from retry queue) reconciliation task. Reconciliation task can @@ -35,8 +34,7 @@ import org.slf4j.LoggerFactory; * Ideally, addition of any type of reconciliation task should not require * any change in this reconciliation manager execution engine. * - *

- * 3-Node Cluster: + *

3-Node Cluster: * Reconciliation manager is agnostic of whether it's running in single * node cluster or 3-node cluster. It's a responsibility of the task * submitter to make sure that it submit the task for reconciliation only @@ -45,8 +43,7 @@ import org.slf4j.LoggerFactory; * the 3-nodes in the cluster, because connection to individual controller * can be interrupted for various reason. * - *

- * Created by Anil Vishnoi (avishnoi@Brocade.com) on 3/9/16. + *

Created by Anil Vishnoi (avishnoi@Brocade.com) on 3/9/16. */ public class ReconciliationManager implements AutoCloseable { private static final Logger LOG = LoggerFactory.getLogger(ReconciliationManager.class); diff --git a/hwvtepsouthbound/hwvtepsouthbound-impl/src/main/java/org/opendaylight/ovsdb/hwvtepsouthbound/reconciliation/ReconciliationTask.java b/hwvtepsouthbound/hwvtepsouthbound-impl/src/main/java/org/opendaylight/ovsdb/hwvtepsouthbound/reconciliation/ReconciliationTask.java index b366e775a..aebe4743d 100644 --- a/hwvtepsouthbound/hwvtepsouthbound-impl/src/main/java/org/opendaylight/ovsdb/hwvtepsouthbound/reconciliation/ReconciliationTask.java +++ b/hwvtepsouthbound/hwvtepsouthbound-impl/src/main/java/org/opendaylight/ovsdb/hwvtepsouthbound/reconciliation/ReconciliationTask.java @@ -17,8 +17,7 @@ import org.opendaylight.yangtools.yang.binding.InstanceIdentifier; /** * Copied from org.opendaylight.ovsdb.southbound.reconciliation.ReconciliationTask * - *

- * Abstract implementation of a reconciliation task. Each new type of + *

Abstract implementation of a reconciliation task. Each new type of * resource configuration reconciliation task should extend this class * and implement the abstract methods. * Created by Anil Vishnoi (avishnoi@Brocade.com) on 3/9/16. diff --git a/hwvtepsouthbound/hwvtepsouthbound-impl/src/main/java/org/opendaylight/ovsdb/hwvtepsouthbound/reconciliation/ReconciliationTaskManager.java b/hwvtepsouthbound/hwvtepsouthbound-impl/src/main/java/org/opendaylight/ovsdb/hwvtepsouthbound/reconciliation/ReconciliationTaskManager.java index 65ff7980f..de3a0798a 100644 --- a/hwvtepsouthbound/hwvtepsouthbound-impl/src/main/java/org/opendaylight/ovsdb/hwvtepsouthbound/reconciliation/ReconciliationTaskManager.java +++ b/hwvtepsouthbound/hwvtepsouthbound-impl/src/main/java/org/opendaylight/ovsdb/hwvtepsouthbound/reconciliation/ReconciliationTaskManager.java @@ -15,23 +15,20 @@ import org.slf4j.LoggerFactory; /** * Copied from org.opendaylight.ovsdb.southbound.reconciliation.ReconciliationTaskManager * - *

- * This class is a task cache manager that provides a cache to store + *

This class is a task cache manager that provides a cache to store * the task that is queued for the reconciliation. Whenever new task * is submitted to the reconciliation manager, it will be cached in * the cache. If the reconciliation is successful or it's done with * all the attempt of reconciliation, * - *

- * Caching of the task is required, because reconciliation task might + *

Caching of the task is required, because reconciliation task might * require longer duration to reconcile and there is a possibility that * meanwhile user can change the configuration in config data store while * task is queued for the reconciliation. In that scenario, reconciliation * manager should not attempt any further reconciliation attempt for that * task. ReconciliationManager will call cancelTask() to cancel the task. * - *

- * Created by Anil Vishnoi (avishnoi@Brocade.com) on 3/15/16. + *

Created by Anil Vishnoi (avishnoi@Brocade.com) on 3/15/16. */ class ReconciliationTaskManager { private static final Logger LOG = LoggerFactory.getLogger(ReconciliationTaskManager.class); diff --git a/hwvtepsouthbound/hwvtepsouthbound-impl/src/main/java/org/opendaylight/ovsdb/hwvtepsouthbound/reconciliation/connection/ConnectionReconciliationTask.java b/hwvtepsouthbound/hwvtepsouthbound-impl/src/main/java/org/opendaylight/ovsdb/hwvtepsouthbound/reconciliation/connection/ConnectionReconciliationTask.java index 367c236e5..a22d37ff2 100644 --- a/hwvtepsouthbound/hwvtepsouthbound-impl/src/main/java/org/opendaylight/ovsdb/hwvtepsouthbound/reconciliation/connection/ConnectionReconciliationTask.java +++ b/hwvtepsouthbound/hwvtepsouthbound-impl/src/main/java/org/opendaylight/ovsdb/hwvtepsouthbound/reconciliation/connection/ConnectionReconciliationTask.java @@ -24,8 +24,7 @@ import org.slf4j.LoggerFactory; /** * Copied from org.opendaylight.ovsdb.southbound.reconciliation.connection.ConnectionReconciliationTask. * - *

- * Created by Anil Vishnoi (avishnoi@Brocade.com) on 3/9/16. + *

Created by Anil Vishnoi (avishnoi@Brocade.com) on 3/9/16. */ public class ConnectionReconciliationTask extends ReconciliationTask { diff --git a/library/impl/src/main/java/org/opendaylight/ovsdb/lib/schema/typed/MethodDispatch.java b/library/impl/src/main/java/org/opendaylight/ovsdb/lib/schema/typed/MethodDispatch.java index 37dfa8842..10085ce56 100644 --- a/library/impl/src/main/java/org/opendaylight/ovsdb/lib/schema/typed/MethodDispatch.java +++ b/library/impl/src/main/java/org/opendaylight/ovsdb/lib/schema/typed/MethodDispatch.java @@ -37,9 +37,8 @@ import org.slf4j.LoggerFactory; * Table to Method runtime-constant support. The binding of Class methods to corresponding data operations is defined * by annotations, which means that such mapping is Class-invariant. This invariance is captured in this class. * - *

- * Data operations are always invoked in the context of a runtime {@link DatabaseSchema}, i.e. for a particular device - * or a device function. This class exposes {@link #bindToSchema(TypedDatabaseSchema)}, which will construct an + *

Data operations are always invoked in the context of a runtime {@link DatabaseSchema}, i.e. for a particular + * device or a device function. This class exposes {@link #bindToSchema(TypedDatabaseSchema)}, which will construct an * immutable mapping between a Method and its invocation handler. */ final class MethodDispatch { 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 825dc4272..75c36ab22 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 @@ -68,8 +68,7 @@ import org.slf4j.LoggerFactory; * to accept OVSDB connections. * Any docker-compose file must have a port mapping. * - *

- * The following explains how system properties are used to configure DockerOvs + *

The following explains how system properties are used to configure DockerOvs *

  *  private static String ENV_USAGE =
  *  "-Ddocker.run - explicitly configure whether or not DockerOvs should run docker-compose\n" +
-- 
2.43.0


From 623c53727d6bded020313c048c842b1cf6fc2b25 Mon Sep 17 00:00:00 2001
From: Robert Varga 
Date: Mon, 21 Oct 2024 10:58:04 +0200
Subject: [PATCH 2/3] WIP: Bump upstreams

Adopt:
- odlparent-14.0.4
- infrautils-7.0.4
- yangtools-14.0.5
- mdsal-14.0.3
- controller-10.0.3
- aaa-0.20.2
- netconf-8.0.3-SNAPSHOT

Change-Id: I9fd8b1b66169eda888c160b52fe42d6bbb80f02e
Signed-off-by: Robert Varga 
---
 commons/binding-parent/pom.xml                              | 6 +++---
 commons/it/pom.xml                                          | 4 ++--
 commons/pom.xml                                             | 2 +-
 hwvtepsouthbound/hwvtepsouthbound-artifacts/pom.xml         | 2 +-
 hwvtepsouthbound/hwvtepsouthbound-features/features/pom.xml | 2 +-
 .../odl-ovsdb-hwvtepsouthbound-api/pom.xml                  | 4 ++--
 .../odl-ovsdb-hwvtepsouthbound-rest/pom.xml                 | 4 ++--
 .../odl-ovsdb-hwvtepsouthbound-test/pom.xml                 | 2 +-
 .../odl-ovsdb-hwvtepsouthbound-ui/pom.xml                   | 4 ++--
 .../odl-ovsdb-hwvtepsouthbound/pom.xml                      | 2 +-
 hwvtepsouthbound/hwvtepsouthbound-features/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                  | 4 ++--
 library/features/pom.xml                                    | 2 +-
 library/karaf/pom.xml                                       | 2 +-
 library/pom.xml                                             | 2 +-
 pom.xml                                                     | 2 +-
 schemas/pom.xml                                             | 2 +-
 southbound/pom.xml                                          | 2 +-
 southbound/southbound-artifacts/pom.xml                     | 2 +-
 southbound/southbound-features/features/pom.xml             | 2 +-
 .../southbound-features/odl-ovsdb-southbound-api/pom.xml    | 4 ++--
 .../odl-ovsdb-southbound-impl-rest/pom.xml                  | 4 ++--
 .../odl-ovsdb-southbound-impl-ui/pom.xml                    | 4 ++--
 .../southbound-features/odl-ovsdb-southbound-impl/pom.xml   | 4 ++--
 .../southbound-features/odl-ovsdb-southbound-test/pom.xml   | 2 +-
 southbound/southbound-features/pom.xml                      | 2 +-
 southbound/southbound-karaf/pom.xml                         | 2 +-
 utils/odl-ovsdb-utils/pom.xml                               | 4 ++--
 utils/pom.xml                                               | 2 +-
 33 files changed, 45 insertions(+), 45 deletions(-)

diff --git a/commons/binding-parent/pom.xml b/commons/binding-parent/pom.xml
index fbe32712b..f94aeae5b 100644
--- a/commons/binding-parent/pom.xml
+++ b/commons/binding-parent/pom.xml
@@ -11,7 +11,7 @@
   
     org.opendaylight.mdsal
     binding-parent
-    14.0.2
+    14.0.3
     
   
 
@@ -25,14 +25,14 @@
       
         org.opendaylight.aaa
         aaa-artifacts
-        0.20.1
+        0.20.2
         pom
         import
       
       
         org.opendaylight.infrautils
         infrautils-artifacts
-        7.0.3
+        7.0.4
         pom
         import
       
diff --git a/commons/it/pom.xml b/commons/it/pom.xml
index 9ebebd8fc..303a6db90 100644
--- a/commons/it/pom.xml
+++ b/commons/it/pom.xml
@@ -12,7 +12,7 @@ and is available at http://www.eclipse.org/legal/epl-v10.html
   
     org.opendaylight.controller
     mdsal-it-parent
-    10.0.2
+    10.0.3
     
   
 
@@ -70,7 +70,7 @@ and is available at http://www.eclipse.org/legal/epl-v10.html
       
         org.opendaylight.mdsal
         mdsal-artifacts
-        14.0.2
+        14.0.3
         pom
         import
       
diff --git a/commons/pom.xml b/commons/pom.xml
index d1b574bc7..2b30744a2 100644
--- a/commons/pom.xml
+++ b/commons/pom.xml
@@ -12,7 +12,7 @@ and is available at http://www.eclipse.org/legal/epl-v10.html
   
     org.opendaylight.odlparent
     odlparent-lite
-    14.0.3
+    14.0.4
     
   
 
diff --git a/hwvtepsouthbound/hwvtepsouthbound-artifacts/pom.xml b/hwvtepsouthbound/hwvtepsouthbound-artifacts/pom.xml
index 5b0cd493a..97290b5d1 100644
--- a/hwvtepsouthbound/hwvtepsouthbound-artifacts/pom.xml
+++ b/hwvtepsouthbound/hwvtepsouthbound-artifacts/pom.xml
@@ -13,7 +13,7 @@ and is available at http://www.eclipse.org/legal/epl-v10.html
   
     org.opendaylight.odlparent
     odlparent-lite
-    14.0.3
+    14.0.4
     
   
 
diff --git a/hwvtepsouthbound/hwvtepsouthbound-features/features/pom.xml b/hwvtepsouthbound/hwvtepsouthbound-features/features/pom.xml
index b3e0e81e3..3b569282e 100644
--- a/hwvtepsouthbound/hwvtepsouthbound-features/features/pom.xml
+++ b/hwvtepsouthbound/hwvtepsouthbound-features/features/pom.xml
@@ -12,7 +12,7 @@ and is available at http://www.eclipse.org/legal/epl-v10.html
     
         org.opendaylight.odlparent
         feature-repo-parent
-        14.0.3
+        14.0.4
         
     
 
diff --git a/hwvtepsouthbound/hwvtepsouthbound-features/odl-ovsdb-hwvtepsouthbound-api/pom.xml b/hwvtepsouthbound/hwvtepsouthbound-features/odl-ovsdb-hwvtepsouthbound-api/pom.xml
index b493154d0..3b890f1c0 100644
--- a/hwvtepsouthbound/hwvtepsouthbound-features/odl-ovsdb-hwvtepsouthbound-api/pom.xml
+++ b/hwvtepsouthbound/hwvtepsouthbound-features/odl-ovsdb-hwvtepsouthbound-api/pom.xml
@@ -5,7 +5,7 @@
     
         org.opendaylight.odlparent
         single-feature-parent
-        14.0.3
+        14.0.4
         
     
 
@@ -22,7 +22,7 @@
             
                 org.opendaylight.mdsal
                 mdsal-artifacts
-                14.0.2
+                14.0.3
                 pom
                 import
             
diff --git a/hwvtepsouthbound/hwvtepsouthbound-features/odl-ovsdb-hwvtepsouthbound-rest/pom.xml b/hwvtepsouthbound/hwvtepsouthbound-features/odl-ovsdb-hwvtepsouthbound-rest/pom.xml
index 636065bce..03b984094 100644
--- a/hwvtepsouthbound/hwvtepsouthbound-features/odl-ovsdb-hwvtepsouthbound-rest/pom.xml
+++ b/hwvtepsouthbound/hwvtepsouthbound-features/odl-ovsdb-hwvtepsouthbound-rest/pom.xml
@@ -12,7 +12,7 @@ and is available at http://www.eclipse.org/legal/epl-v10.html
     
         org.opendaylight.odlparent
         single-feature-parent
-        14.0.3
+        14.0.4
         
     
 
@@ -30,7 +30,7 @@ and is available at http://www.eclipse.org/legal/epl-v10.html
             
                 org.opendaylight.netconf
                 netconf-artifacts
-                8.0.2
+                8.0.3-SNAPSHOT
                 import
                 pom
             
diff --git a/hwvtepsouthbound/hwvtepsouthbound-features/odl-ovsdb-hwvtepsouthbound-test/pom.xml b/hwvtepsouthbound/hwvtepsouthbound-features/odl-ovsdb-hwvtepsouthbound-test/pom.xml
index ed7e3b494..8cee747d0 100644
--- a/hwvtepsouthbound/hwvtepsouthbound-features/odl-ovsdb-hwvtepsouthbound-test/pom.xml
+++ b/hwvtepsouthbound/hwvtepsouthbound-features/odl-ovsdb-hwvtepsouthbound-test/pom.xml
@@ -12,7 +12,7 @@ and is available at http://www.eclipse.org/legal/epl-v10.html
     
         org.opendaylight.odlparent
         single-feature-parent
-        14.0.3
+        14.0.4
         
     
 
diff --git a/hwvtepsouthbound/hwvtepsouthbound-features/odl-ovsdb-hwvtepsouthbound-ui/pom.xml b/hwvtepsouthbound/hwvtepsouthbound-features/odl-ovsdb-hwvtepsouthbound-ui/pom.xml
index d57521271..37d696d69 100644
--- a/hwvtepsouthbound/hwvtepsouthbound-features/odl-ovsdb-hwvtepsouthbound-ui/pom.xml
+++ b/hwvtepsouthbound/hwvtepsouthbound-features/odl-ovsdb-hwvtepsouthbound-ui/pom.xml
@@ -12,7 +12,7 @@ and is available at http://www.eclipse.org/legal/epl-v10.html
     
         org.opendaylight.odlparent
         single-feature-parent
-        14.0.3
+        14.0.4
         
     
 
@@ -30,7 +30,7 @@ and is available at http://www.eclipse.org/legal/epl-v10.html
             
                 org.opendaylight.netconf
                 netconf-artifacts
-                8.0.2
+                8.0.3-SNAPSHOT
                 import
                 pom
             
diff --git a/hwvtepsouthbound/hwvtepsouthbound-features/odl-ovsdb-hwvtepsouthbound/pom.xml b/hwvtepsouthbound/hwvtepsouthbound-features/odl-ovsdb-hwvtepsouthbound/pom.xml
index 77d0d40af..44fb9c448 100644
--- a/hwvtepsouthbound/hwvtepsouthbound-features/odl-ovsdb-hwvtepsouthbound/pom.xml
+++ b/hwvtepsouthbound/hwvtepsouthbound-features/odl-ovsdb-hwvtepsouthbound/pom.xml
@@ -12,7 +12,7 @@ and is available at http://www.eclipse.org/legal/epl-v10.html
     
         org.opendaylight.odlparent
         single-feature-parent
-        14.0.3
+        14.0.4
         
     
 
diff --git a/hwvtepsouthbound/hwvtepsouthbound-features/pom.xml b/hwvtepsouthbound/hwvtepsouthbound-features/pom.xml
index 8abe0c1a6..dac9c8994 100644
--- a/hwvtepsouthbound/hwvtepsouthbound-features/pom.xml
+++ b/hwvtepsouthbound/hwvtepsouthbound-features/pom.xml
@@ -11,7 +11,7 @@ and is available at http://www.eclipse.org/legal/epl-v10.html INTERNAL
   
     org.opendaylight.odlparent
     odlparent-lite
-    14.0.3
+    14.0.4
     
   
   org.opendaylight.ovsdb
diff --git a/hwvtepsouthbound/hwvtepsouthbound-karaf/pom.xml b/hwvtepsouthbound/hwvtepsouthbound-karaf/pom.xml
index 780d06e9f..da73b19b1 100644
--- a/hwvtepsouthbound/hwvtepsouthbound-karaf/pom.xml
+++ b/hwvtepsouthbound/hwvtepsouthbound-karaf/pom.xml
@@ -9,7 +9,7 @@ and is available at http://www.eclipse.org/legal/epl-v10.html INTERNAL
   
     org.opendaylight.odlparent
     karaf4-parent
-    14.0.3
+    14.0.4
     
   
   4.0.0
diff --git a/hwvtepsouthbound/pom.xml b/hwvtepsouthbound/pom.xml
index c1d7a4d1e..0f60fab90 100644
--- a/hwvtepsouthbound/pom.xml
+++ b/hwvtepsouthbound/pom.xml
@@ -11,7 +11,7 @@ and is available at http://www.eclipse.org/legal/epl-v10.html INTERNAL
   
     org.opendaylight.odlparent
     odlparent-lite
-    14.0.3
+    14.0.4
     
   
 
diff --git a/library/artifacts/pom.xml b/library/artifacts/pom.xml
index 7f9d65df4..200be28e3 100644
--- a/library/artifacts/pom.xml
+++ b/library/artifacts/pom.xml
@@ -13,7 +13,7 @@ and is available at http://www.eclipse.org/legal/epl-v10.html
   
     org.opendaylight.odlparent
     odlparent-lite
-    14.0.3
+    14.0.4
     
   
 
diff --git a/library/features/features/pom.xml b/library/features/features/pom.xml
index 2fffa9665..207c52f6c 100644
--- a/library/features/features/pom.xml
+++ b/library/features/features/pom.xml
@@ -12,7 +12,7 @@ and is available at http://www.eclipse.org/legal/epl-v10.html
     
         org.opendaylight.odlparent
         feature-repo-parent
-        14.0.3
+        14.0.4
         
     
 
diff --git a/library/features/odl-ovsdb-library/pom.xml b/library/features/odl-ovsdb-library/pom.xml
index 611a01d9c..708598554 100644
--- a/library/features/odl-ovsdb-library/pom.xml
+++ b/library/features/odl-ovsdb-library/pom.xml
@@ -12,7 +12,7 @@ and is available at http://www.eclipse.org/legal/epl-v10.html
     
         org.opendaylight.odlparent
         single-feature-parent
-        14.0.3
+        14.0.4
         
     
 
@@ -41,7 +41,7 @@ and is available at http://www.eclipse.org/legal/epl-v10.html
         
             org.opendaylight.aaa
             odl-aaa-cert
-            0.20.1
+            0.20.2
             xml
             features
         
diff --git a/library/features/pom.xml b/library/features/pom.xml
index ed9e9e7c5..607efda93 100644
--- a/library/features/pom.xml
+++ b/library/features/pom.xml
@@ -11,7 +11,7 @@ and is available at http://www.eclipse.org/legal/epl-v10.html INTERNAL
   
     org.opendaylight.odlparent
     odlparent-lite
-    14.0.3
+    14.0.4
     
   
   org.opendaylight.ovsdb
diff --git a/library/karaf/pom.xml b/library/karaf/pom.xml
index f24c44da1..4a3c3e13b 100644
--- a/library/karaf/pom.xml
+++ b/library/karaf/pom.xml
@@ -9,7 +9,7 @@ and is available at http://www.eclipse.org/legal/epl-v10.html INTERNAL
   
     org.opendaylight.odlparent
     karaf4-parent
-    14.0.3
+    14.0.4
     
   
   4.0.0
diff --git a/library/pom.xml b/library/pom.xml
index f3c3410b1..ce018859d 100644
--- a/library/pom.xml
+++ b/library/pom.xml
@@ -11,7 +11,7 @@ and is available at http://www.eclipse.org/legal/epl-v10.html
   
     org.opendaylight.odlparent
     odlparent-lite
-    14.0.3
+    14.0.4
     
   
 
diff --git a/pom.xml b/pom.xml
index abfe54f86..a1fe88677 100644
--- a/pom.xml
+++ b/pom.xml
@@ -12,7 +12,7 @@ and is available at http://www.eclipse.org/legal/epl-v10.html
   
     org.opendaylight.odlparent
     odlparent-lite
-    14.0.3
+    14.0.4
     
   
 
diff --git a/schemas/pom.xml b/schemas/pom.xml
index 5f0270178..9668373e4 100644
--- a/schemas/pom.xml
+++ b/schemas/pom.xml
@@ -12,7 +12,7 @@ and is available at http://www.eclipse.org/legal/epl-v10.html
   
     org.opendaylight.odlparent
     odlparent-lite
-    14.0.3
+    14.0.4
     
   
 
diff --git a/southbound/pom.xml b/southbound/pom.xml
index 041a9adca..e085332f9 100644
--- a/southbound/pom.xml
+++ b/southbound/pom.xml
@@ -10,7 +10,7 @@ and is available at http://www.eclipse.org/legal/epl-v10.html INTERNAL
   
     org.opendaylight.odlparent
     odlparent-lite
-    14.0.3
+    14.0.4
     
   
 
diff --git a/southbound/southbound-artifacts/pom.xml b/southbound/southbound-artifacts/pom.xml
index c21d320c5..e690f4399 100644
--- a/southbound/southbound-artifacts/pom.xml
+++ b/southbound/southbound-artifacts/pom.xml
@@ -13,7 +13,7 @@ and is available at http://www.eclipse.org/legal/epl-v10.html
   
     org.opendaylight.odlparent
     odlparent-lite
-    14.0.3
+    14.0.4
     
   
 
diff --git a/southbound/southbound-features/features/pom.xml b/southbound/southbound-features/features/pom.xml
index 62a8a7794..ab6259c8e 100644
--- a/southbound/southbound-features/features/pom.xml
+++ b/southbound/southbound-features/features/pom.xml
@@ -12,7 +12,7 @@ and is available at http://www.eclipse.org/legal/epl-v10.html
     
         org.opendaylight.odlparent
         feature-repo-parent
-        14.0.3
+        14.0.4
         
     
 
diff --git a/southbound/southbound-features/odl-ovsdb-southbound-api/pom.xml b/southbound/southbound-features/odl-ovsdb-southbound-api/pom.xml
index a1f9d262c..d4f8486c3 100644
--- a/southbound/southbound-features/odl-ovsdb-southbound-api/pom.xml
+++ b/southbound/southbound-features/odl-ovsdb-southbound-api/pom.xml
@@ -12,7 +12,7 @@ and is available at http://www.eclipse.org/legal/epl-v10.html
     
         org.opendaylight.odlparent
         single-feature-parent
-        14.0.3
+        14.0.4
         
     
 
@@ -29,7 +29,7 @@ and is available at http://www.eclipse.org/legal/epl-v10.html
             
                 org.opendaylight.mdsal
                 mdsal-artifacts
-                14.0.2
+                14.0.3
                 pom
                 import
             
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 4fe6b224e..411b95a55 100644
--- a/southbound/southbound-features/odl-ovsdb-southbound-impl-rest/pom.xml
+++ b/southbound/southbound-features/odl-ovsdb-southbound-impl-rest/pom.xml
@@ -12,7 +12,7 @@ and is available at http://www.eclipse.org/legal/epl-v10.html
     
         org.opendaylight.odlparent
         single-feature-parent
-        14.0.3
+        14.0.4
         
     
 
@@ -30,7 +30,7 @@ and is available at http://www.eclipse.org/legal/epl-v10.html
             
                 org.opendaylight.netconf
                 netconf-artifacts
-                8.0.2
+                8.0.3-SNAPSHOT
                 import
                 pom
             
diff --git a/southbound/southbound-features/odl-ovsdb-southbound-impl-ui/pom.xml b/southbound/southbound-features/odl-ovsdb-southbound-impl-ui/pom.xml
index 86982a327..aeb101288 100644
--- a/southbound/southbound-features/odl-ovsdb-southbound-impl-ui/pom.xml
+++ b/southbound/southbound-features/odl-ovsdb-southbound-impl-ui/pom.xml
@@ -12,7 +12,7 @@ and is available at http://www.eclipse.org/legal/epl-v10.html
     
         org.opendaylight.odlparent
         single-feature-parent
-        14.0.3
+        14.0.4
         
     
 
@@ -30,7 +30,7 @@ and is available at http://www.eclipse.org/legal/epl-v10.html
             
                 org.opendaylight.netconf
                 netconf-artifacts
-                8.0.2
+                8.0.3-SNAPSHOT
                 import
                 pom
             
diff --git a/southbound/southbound-features/odl-ovsdb-southbound-impl/pom.xml b/southbound/southbound-features/odl-ovsdb-southbound-impl/pom.xml
index e1b49b1b7..5b2d244d7 100644
--- a/southbound/southbound-features/odl-ovsdb-southbound-impl/pom.xml
+++ b/southbound/southbound-features/odl-ovsdb-southbound-impl/pom.xml
@@ -12,7 +12,7 @@ and is available at http://www.eclipse.org/legal/epl-v10.html
     
         org.opendaylight.odlparent
         single-feature-parent
-        14.0.3
+        14.0.4
         
     
 
@@ -30,7 +30,7 @@ and is available at http://www.eclipse.org/legal/epl-v10.html
             
                 org.opendaylight.infrautils
                 infrautils-artifacts
-                7.0.3
+                7.0.4
                 pom
                 import
             
diff --git a/southbound/southbound-features/odl-ovsdb-southbound-test/pom.xml b/southbound/southbound-features/odl-ovsdb-southbound-test/pom.xml
index 545fa0661..1c07adbbb 100644
--- a/southbound/southbound-features/odl-ovsdb-southbound-test/pom.xml
+++ b/southbound/southbound-features/odl-ovsdb-southbound-test/pom.xml
@@ -12,7 +12,7 @@ and is available at http://www.eclipse.org/legal/epl-v10.html
     
         org.opendaylight.odlparent
         single-feature-parent
-        14.0.3
+        14.0.4
         
     
 
diff --git a/southbound/southbound-features/pom.xml b/southbound/southbound-features/pom.xml
index cfa82b893..454d53002 100644
--- a/southbound/southbound-features/pom.xml
+++ b/southbound/southbound-features/pom.xml
@@ -12,7 +12,7 @@ and is available at http://www.eclipse.org/legal/epl-v10.html
     
         org.opendaylight.odlparent
         odlparent-lite
-        14.0.3
+        14.0.4
         
     
 
diff --git a/southbound/southbound-karaf/pom.xml b/southbound/southbound-karaf/pom.xml
index 7a05a4cea..d18e4fb3a 100644
--- a/southbound/southbound-karaf/pom.xml
+++ b/southbound/southbound-karaf/pom.xml
@@ -9,7 +9,7 @@ and is available at http://www.eclipse.org/legal/epl-v10.html INTERNAL
   
     org.opendaylight.odlparent
     karaf4-parent
-    14.0.3
+    14.0.4
     
   
   4.0.0
diff --git a/utils/odl-ovsdb-utils/pom.xml b/utils/odl-ovsdb-utils/pom.xml
index 0d41ed328..2e58ea602 100644
--- a/utils/odl-ovsdb-utils/pom.xml
+++ b/utils/odl-ovsdb-utils/pom.xml
@@ -12,7 +12,7 @@ and is available at http://www.eclipse.org/legal/epl-v10.html
     
         org.opendaylight.odlparent
         single-feature-parent
-        14.0.3
+        14.0.4
         
     
 
@@ -29,7 +29,7 @@ and is available at http://www.eclipse.org/legal/epl-v10.html
             
                 org.opendaylight.controller
                 controller-artifacts
-                10.0.2
+                10.0.3
                 pom
                 import
             
diff --git a/utils/pom.xml b/utils/pom.xml
index 3416a66d6..dbae3c205 100644
--- a/utils/pom.xml
+++ b/utils/pom.xml
@@ -12,7 +12,7 @@ and is available at http://www.eclipse.org/legal/epl-v10.html
   
     org.opendaylight.odlparent
     odlparent-lite
-    14.0.3
+    14.0.4
     
   
 
-- 
2.43.0


From 106dfbc585977641dce605059de413aae13eaecb Mon Sep 17 00:00:00 2001
From: jenkins-releng 
Date: Mon, 21 Oct 2024 09:25:05 +0000
Subject: [PATCH 3/3] 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                 | 4 ++--
 .../odl-ovsdb-hwvtepsouthbound-test/pom.xml                 | 2 +-
 .../odl-ovsdb-hwvtepsouthbound-ui/pom.xml                   | 4 ++--
 .../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                  | 4 ++--
 .../odl-ovsdb-southbound-impl-ui/pom.xml                    | 4 ++--
 .../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, 66 insertions(+), 66 deletions(-)

diff --git a/commons/binding-parent/pom.xml b/commons/binding-parent/pom.xml
index f94aeae5b..7b36eef7c 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.1-SNAPSHOT
+  1.19.1
   pom
 
   
diff --git a/commons/it/pom.xml b/commons/it/pom.xml
index 303a6db90..aded37a0e 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.1-SNAPSHOT
+  1.19.1
   pom
   
diff --git a/commons/pom.xml b/commons/pom.xml
index 2b30744a2..839f2909e 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.1-SNAPSHOT
+  1.19.1
   
   ODL :: ovsdb :: ${project.artifactId}
diff --git a/hwvtepsouthbound/hwvtepsouthbound-api/pom.xml b/hwvtepsouthbound/hwvtepsouthbound-api/pom.xml
index 08cbc35b0..a03285d75 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.1-SNAPSHOT
+    1.19.1
     ../../commons/binding-parent
   
 
   4.0.0
   org.opendaylight.ovsdb
   hwvtepsouthbound-api
-  1.19.1-SNAPSHOT
+  1.19.1
   bundle
   
diff --git a/hwvtepsouthbound/hwvtepsouthbound-artifacts/pom.xml b/hwvtepsouthbound/hwvtepsouthbound-artifacts/pom.xml
index 97290b5d1..1d994cea7 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.1-SNAPSHOT
+  1.19.1
   pom
   
diff --git a/hwvtepsouthbound/hwvtepsouthbound-features/features/pom.xml b/hwvtepsouthbound/hwvtepsouthbound-features/features/pom.xml
index 3b569282e..48fc5caac 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.1-SNAPSHOT
+    1.19.1
     feature
     
diff --git a/hwvtepsouthbound/hwvtepsouthbound-features/odl-ovsdb-hwvtepsouthbound-api/pom.xml b/hwvtepsouthbound/hwvtepsouthbound-features/odl-ovsdb-hwvtepsouthbound-api/pom.xml
index 3b890f1c0..40a28c990 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.1-SNAPSHOT
+    1.19.1
     feature
     
diff --git a/hwvtepsouthbound/hwvtepsouthbound-features/odl-ovsdb-hwvtepsouthbound-rest/pom.xml b/hwvtepsouthbound/hwvtepsouthbound-features/odl-ovsdb-hwvtepsouthbound-rest/pom.xml
index 03b984094..1cc26fd1e 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.1-SNAPSHOT
+    1.19.1
     feature
 
     
diff --git a/hwvtepsouthbound/hwvtepsouthbound-impl/pom.xml b/hwvtepsouthbound/hwvtepsouthbound-impl/pom.xml
index c16d7b002..a7da96448 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.1-SNAPSHOT
+    1.19.1
     ../../commons/binding-parent
   
 
diff --git a/hwvtepsouthbound/hwvtepsouthbound-it/pom.xml b/hwvtepsouthbound/hwvtepsouthbound-it/pom.xml
index b22f0ee73..3d5817514 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.1-SNAPSHOT
+    1.19.1
     ../../commons/it
   
 
diff --git a/hwvtepsouthbound/hwvtepsouthbound-karaf/pom.xml b/hwvtepsouthbound/hwvtepsouthbound-karaf/pom.xml
index da73b19b1..162adf1c5 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.1-SNAPSHOT
+  1.19.1
   pom
   
diff --git a/hwvtepsouthbound/pom.xml b/hwvtepsouthbound/pom.xml
index 0f60fab90..33251ecbc 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.1-SNAPSHOT
+  1.19.1
   
   ODL :: ovsdb :: ${project.artifactId}
diff --git a/library/artifacts/pom.xml b/library/artifacts/pom.xml
index 200be28e3..d1caf48bd 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.1-SNAPSHOT
+  1.19.1
   pom
   
diff --git a/library/features/features/pom.xml b/library/features/features/pom.xml
index 207c52f6c..1c6dbfd76 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.1-SNAPSHOT
+    1.19.1
     feature
     
diff --git a/library/features/odl-ovsdb-library/pom.xml b/library/features/odl-ovsdb-library/pom.xml
index 708598554..7ed5e74f3 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.1-SNAPSHOT
+    1.19.1
     feature
 
     
   ODL :: ovsdb :: ${project.artifactId}
diff --git a/library/impl/pom.xml b/library/impl/pom.xml
index 05eb73649..cfd7b4ef1 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.1-SNAPSHOT
+    1.19.1
     ../../commons/binding-parent
   
 
   4.0.0
   org.opendaylight.ovsdb
   library
-  1.19.1-SNAPSHOT
+  1.19.1
   bundle
   
diff --git a/library/it/pom.xml b/library/it/pom.xml
index 88846b87c..731bf11ea 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.1-SNAPSHOT
+    1.19.1
     ../../commons/it
   
 
   4.0.0
   org.opendaylight.ovsdb
   library-it
-  1.19.1-SNAPSHOT
+  1.19.1
   jar
   
@@ -27,7 +27,7 @@ and is available at http://www.eclipse.org/legal/epl-v10.html
   
     org.opendaylight.ovsdb
     library-karaf
-    1.19.1-SNAPSHOT
+    1.19.1
     zip
   
 
diff --git a/library/karaf/pom.xml b/library/karaf/pom.xml
index 4a3c3e13b..0d3d455e5 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.1-SNAPSHOT
+  1.19.1
   pom
   
diff --git a/library/pom.xml b/library/pom.xml
index ce018859d..28a5ff26c 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.1-SNAPSHOT
+  1.19.1
   
   ODL :: ovsdb :: ${project.artifactId}
diff --git a/pom.xml b/pom.xml
index a1fe88677..fd772caf7 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.1-SNAPSHOT
+  1.19.1
   ${project.artifactId} 
   pom
 
diff --git a/schemas/hardwarevtep/pom.xml b/schemas/hardwarevtep/pom.xml
index eac350ceb..cf14c8f0d 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.1-SNAPSHOT
+    1.19.1
     ../../commons/binding-parent
   
 
   org.opendaylight.ovsdb
   schema.hardwarevtep
-  1.19.1-SNAPSHOT
+  1.19.1
   bundle
   
diff --git a/schemas/openvswitch/pom.xml b/schemas/openvswitch/pom.xml
index db850214d..b713b5dd6 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.1-SNAPSHOT
+    1.19.1
     ../../commons/binding-parent
   
 
   org.opendaylight.ovsdb
   schema.openvswitch
-  1.19.1-SNAPSHOT
+  1.19.1
   bundle
   
diff --git a/schemas/pom.xml b/schemas/pom.xml
index 9668373e4..2e68fe7b2 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.1-SNAPSHOT
+  1.19.1
   
   ODL :: ovsdb :: ${project.artifactId}
diff --git a/southbound/pom.xml b/southbound/pom.xml
index e085332f9..1020da9a2 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.1-SNAPSHOT
+  1.19.1
   
   ODL :: ovsdb :: ${project.artifactId}
diff --git a/southbound/southbound-api/pom.xml b/southbound/southbound-api/pom.xml
index 8353cada7..75a4dcc1a 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.1-SNAPSHOT
+    1.19.1
     ../../commons/binding-parent
   
 
   4.0.0
   org.opendaylight.ovsdb
   southbound-api
-  1.19.1-SNAPSHOT
+  1.19.1
   bundle
   
diff --git a/southbound/southbound-artifacts/pom.xml b/southbound/southbound-artifacts/pom.xml
index e690f4399..2cac05b32 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.1-SNAPSHOT
+  1.19.1
   pom
   
diff --git a/southbound/southbound-features/features/pom.xml b/southbound/southbound-features/features/pom.xml
index ab6259c8e..9eac7e1ba 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.1-SNAPSHOT
+    1.19.1
     feature
     
diff --git a/southbound/southbound-features/odl-ovsdb-southbound-api/pom.xml b/southbound/southbound-features/odl-ovsdb-southbound-api/pom.xml
index d4f8486c3..a098aef14 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.1-SNAPSHOT
+    1.19.1
     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 411b95a55..c06e017d3 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.1-SNAPSHOT
+    1.19.1
     feature
 
     
     ODL :: ovsdb :: ${project.artifactId}
diff --git a/southbound/southbound-impl/pom.xml b/southbound/southbound-impl/pom.xml
index 3528f4da8..bbd3f886b 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.1-SNAPSHOT
+    1.19.1
     ../../commons/binding-parent
   
 
diff --git a/southbound/southbound-it/pom.xml b/southbound/southbound-it/pom.xml
index d7a238a0f..630cec1b6 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.1-SNAPSHOT
+    1.19.1
     ../../commons/it
   
   4.0.0
diff --git a/southbound/southbound-karaf/pom.xml b/southbound/southbound-karaf/pom.xml
index d18e4fb3a..3f75880b1 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.1-SNAPSHOT
+  1.19.1
   pom
   
diff --git a/utils/config/pom.xml b/utils/config/pom.xml
index d85d0d4a2..15258b4ca 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.1-SNAPSHOT
+    1.19.1
     ../../commons/binding-parent
   
 
   org.opendaylight.ovsdb
   utils.config
-  1.19.1-SNAPSHOT
+  1.19.1
   
   ODL :: ovsdb :: ${project.artifactId}
diff --git a/utils/hwvtepsouthbound-utils/pom.xml b/utils/hwvtepsouthbound-utils/pom.xml
index d35365aa2..c28fae5c1 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.1-SNAPSHOT
+    1.19.1
     ../../commons/binding-parent
   
 
   org.opendaylight.ovsdb
   utils.hwvtepsouthbound-utils
-  1.19.1-SNAPSHOT
+  1.19.1
   bundle
   
diff --git a/utils/mdsal-utils/pom.xml b/utils/mdsal-utils/pom.xml
index fa6188cda..7e1c62fae 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.1-SNAPSHOT
+    1.19.1
     ../../commons/binding-parent
   
 
   org.opendaylight.ovsdb
   utils.mdsal-utils
-  1.19.1-SNAPSHOT
+  1.19.1
   bundle
   
diff --git a/utils/odl-ovsdb-utils/pom.xml b/utils/odl-ovsdb-utils/pom.xml
index 2e58ea602..772b34195 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.1-SNAPSHOT
+    1.19.1
     feature
     
diff --git a/utils/ovsdb-it-utils/pom.xml b/utils/ovsdb-it-utils/pom.xml
index 876eea9f9..e127940d3 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.1-SNAPSHOT
+    1.19.1
     ../../commons/binding-parent
   
 
diff --git a/utils/pom.xml b/utils/pom.xml
index dbae3c205..6fbc9dbdb 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.1-SNAPSHOT
+  1.19.1
   pom
   
diff --git a/utils/servicehelper/pom.xml b/utils/servicehelper/pom.xml
index e5d44f33a..d84a5145b 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.1-SNAPSHOT
+    1.19.1
     ../../commons/binding-parent
   
 
   org.opendaylight.ovsdb
   utils.servicehelper
-  1.19.1-SNAPSHOT
+  1.19.1
   bundle
   
diff --git a/utils/southbound-utils/pom.xml b/utils/southbound-utils/pom.xml
index 097313390..f8b6214bc 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.1-SNAPSHOT
+    1.19.1
     ../../commons/binding-parent
   
 
   org.opendaylight.ovsdb
   utils.southbound-utils
-  1.19.1-SNAPSHOT
+  1.19.1
   bundle
   
diff --git a/utils/yang-utils/pom.xml b/utils/yang-utils/pom.xml
index 5d65bef51..9dd314efd 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.1-SNAPSHOT
+    1.19.1
     ../../commons/binding-parent
   
 
-- 
2.43.0