From cd2a0ca6beaeae25013ba0e720d2a5d127325005 Mon Sep 17 00:00:00 2001 From: Robert Varga Date: Wed, 19 Feb 2025 16:27:43 +0100 Subject: [PATCH 1/3] Fixup checkstyle We have more violations reported, fix them up. Change-Id: I3568449518e8c2c30b2b6708d71a19be3d96d0f6 Signed-off-by: Robert Varga --- .../reconciliation/ReconciliationTask.java | 11 +++++------ .../southbound/ovsdb/transact/TransactUtils.java | 6 +++--- .../reconciliation/ReconciliationManager.java | 5 ++--- .../southbound/reconciliation/ReconciliationTask.java | 11 +++++------ .../reconciliation/ReconciliationTaskManager.java | 10 +++++----- .../transactions/md/OvsdbControllerUpdateCommand.java | 8 ++------ .../transactions/md/OvsdbManagersUpdateCommand.java | 8 ++------ .../transactions/md/OvsdbQosUpdateCommand.java | 6 ++---- .../transactions/md/OvsdbQueueUpdateCommand.java | 5 ++--- .../ovsdb/southbound/it/SouthboundIT.java | 7 ++----- 10 files changed, 30 insertions(+), 47 deletions(-) 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 aebe4743d..b5530e7d9 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 @@ -54,10 +54,10 @@ public abstract class ReconciliationTask implements Runnable { * and specify the delay using {@link #retryDelayInMills()}. * If data store operation is required to decide if the task need retry, please implement * it as an async operation and submit the task on the callback of the future. - *

- * Note:Please do not write blocking data store operations + * + *

Note:Please do not write blocking data store operations * {@link ConnectionReconciliationTask#doRetry(boolean)} - *

+ * * @param wasPreviousAttemptSuccessful Status of the previous attempt */ public abstract void doRetry(boolean wasPreviousAttemptSuccessful); @@ -70,10 +70,9 @@ public abstract class ReconciliationTask implements Runnable { * using {@link ReconciliationManager#enqueueForRetry(ReconciliationTask)}. * To check the readiness of the task, if the data store operation is required, please * implement it as an async operation and submit the task on the callback of the future. - *

- * Note:Please do not write blocking data store operations + * + *

Note:Please do not write blocking data store operations * {@link ConnectionReconciliationTask#doRetry(boolean)} - *

*/ public abstract void checkReadinessAndProcess(); diff --git a/southbound/southbound-impl/src/main/java/org/opendaylight/ovsdb/southbound/ovsdb/transact/TransactUtils.java b/southbound/southbound-impl/src/main/java/org/opendaylight/ovsdb/southbound/ovsdb/transact/TransactUtils.java index 28e9dfc40..95b3239da 100644 --- a/southbound/southbound-impl/src/main/java/org/opendaylight/ovsdb/southbound/ovsdb/transact/TransactUtils.java +++ b/southbound/southbound-impl/src/main/java/org/opendaylight/ovsdb/southbound/ovsdb/transact/TransactUtils.java @@ -454,8 +454,8 @@ public class TransactUtils { /** * This method builds a string by concatenating the 2 character * hexadecimal representation of each byte from the input byte array. - *

- * For example: an input byte array containing: + * + *

For example: an input byte array containing: * bytes[0] = 'a' * bytes[1] = 'b' * bytes[2] = 'c' @@ -464,7 +464,7 @@ public class TransactUtils { * bytes[5] = '2' * bytes[6] = '3' * returns the string "6162632d313233" - *

+ * * @param bytes * The byte array to convert to string * @return The hexadecimal representation of the byte array. If bytes is diff --git a/southbound/southbound-impl/src/main/java/org/opendaylight/ovsdb/southbound/reconciliation/ReconciliationManager.java b/southbound/southbound-impl/src/main/java/org/opendaylight/ovsdb/southbound/reconciliation/ReconciliationManager.java index cb898ff07..7466b2028 100644 --- a/southbound/southbound-impl/src/main/java/org/opendaylight/ovsdb/southbound/reconciliation/ReconciliationManager.java +++ b/southbound/southbound-impl/src/main/java/org/opendaylight/ovsdb/southbound/reconciliation/ReconciliationManager.java @@ -58,8 +58,8 @@ import org.slf4j.LoggerFactory; * if task is ready for execution. * 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 @@ -67,7 +67,6 @@ import org.slf4j.LoggerFactory; * Reconciliation of controller initiated connection should be done by all * the 3-nodes in the cluster, because connection to individual controller * can be interrupted for various reason. - *

*/ public class ReconciliationManager implements AutoCloseable { private static final Logger LOG = LoggerFactory.getLogger(ReconciliationManager.class); diff --git a/southbound/southbound-impl/src/main/java/org/opendaylight/ovsdb/southbound/reconciliation/ReconciliationTask.java b/southbound/southbound-impl/src/main/java/org/opendaylight/ovsdb/southbound/reconciliation/ReconciliationTask.java index fc4e66e98..9ca048817 100644 --- a/southbound/southbound-impl/src/main/java/org/opendaylight/ovsdb/southbound/reconciliation/ReconciliationTask.java +++ b/southbound/southbound-impl/src/main/java/org/opendaylight/ovsdb/southbound/reconciliation/ReconciliationTask.java @@ -51,10 +51,10 @@ public abstract class ReconciliationTask implements Runnable { * and specify the delay using {@link #retryDelayInMills()}. * If data store operation is required to decide if the task need retry, please implement * it as an async operation and submit the task on the callback of the future. - *

- * Note:Please do not write blocking data store operations + * + *

Note:Please do not write blocking data store operations * {@link ConnectionReconciliationTask#doRetry(boolean)} - *

+ * * @param wasPreviousAttemptSuccessful Status of the previous attempt */ public abstract void doRetry(boolean wasPreviousAttemptSuccessful); @@ -67,10 +67,9 @@ public abstract class ReconciliationTask implements Runnable { * using {@link ReconciliationManager#enqueueForRetry(ReconciliationTask)}. * To check the readiness of the task, if the data store operation is required, please * implement it as an async operation and submit the task on the callback of the future. - *

- * Note:Please do not write blocking data store operations + * + *

Note:Please do not write blocking data store operations * {@link ConnectionReconciliationTask#doRetry(boolean)} - *

*/ public abstract void checkReadinessAndProcess(); diff --git a/southbound/southbound-impl/src/main/java/org/opendaylight/ovsdb/southbound/reconciliation/ReconciliationTaskManager.java b/southbound/southbound-impl/src/main/java/org/opendaylight/ovsdb/southbound/reconciliation/ReconciliationTaskManager.java index 876bfc054..a5e164947 100644 --- a/southbound/southbound-impl/src/main/java/org/opendaylight/ovsdb/southbound/reconciliation/ReconciliationTaskManager.java +++ b/southbound/southbound-impl/src/main/java/org/opendaylight/ovsdb/southbound/reconciliation/ReconciliationTaskManager.java @@ -17,16 +17,16 @@ import org.slf4j.LoggerFactory; * 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 + * all the attempt of reconciliation. + * + *

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/southbound/southbound-impl/src/main/java/org/opendaylight/ovsdb/southbound/transactions/md/OvsdbControllerUpdateCommand.java b/southbound/southbound-impl/src/main/java/org/opendaylight/ovsdb/southbound/transactions/md/OvsdbControllerUpdateCommand.java index b0e91133b..0a0c60cd5 100644 --- a/southbound/southbound-impl/src/main/java/org/opendaylight/ovsdb/southbound/transactions/md/OvsdbControllerUpdateCommand.java +++ b/southbound/southbound-impl/src/main/java/org/opendaylight/ovsdb/southbound/transactions/md/OvsdbControllerUpdateCommand.java @@ -71,13 +71,11 @@ public class OvsdbControllerUpdateCommand extends AbstractTransactionCommand { /** * Update the ControllerEntry values for the given {@link Bridge} list. * - *

- * Controller and Bridge are independent tables in the Open_vSwitch schema + *

Controller and Bridge are independent tables in the Open_vSwitch schema * but the OVSDB yang model includes the Controller fields in the * Bridge data. In some cases the OVSDB will send Bridge and Controller * updates together and in other cases independently. This method here * assumes the former. - *

* * @param transaction the {@link ReadWriteTransaction} * @param newUpdatedControllerRows updated {@link Controller} rows @@ -102,13 +100,11 @@ public class OvsdbControllerUpdateCommand extends AbstractTransactionCommand { /** * Update the ControllerEntry values after finding the related {@Bridge} list. * - *

- * Controller and Bridge are independent tables in the Open_vSwitch schema + *

Controller and Bridge are independent tables in the Open_vSwitch schema * but the OVSDB yang model includes the Controller fields in the * Bridge data. In some cases the OVSDB will send Bridge and Controller * updates together and in other cases independently. This method here * assumes the latter. - *

* * @param transaction the {@link ReadWriteTransaction} * @param newUpdatedControllerRows updated {@link Controller} rows diff --git a/southbound/southbound-impl/src/main/java/org/opendaylight/ovsdb/southbound/transactions/md/OvsdbManagersUpdateCommand.java b/southbound/southbound-impl/src/main/java/org/opendaylight/ovsdb/southbound/transactions/md/OvsdbManagersUpdateCommand.java index eb208327c..cf01ccd00 100644 --- a/southbound/southbound-impl/src/main/java/org/opendaylight/ovsdb/southbound/transactions/md/OvsdbManagersUpdateCommand.java +++ b/southbound/southbound-impl/src/main/java/org/opendaylight/ovsdb/southbound/transactions/md/OvsdbManagersUpdateCommand.java @@ -66,13 +66,11 @@ public class OvsdbManagersUpdateCommand extends AbstractTransactionCommand { /** * Update the Manager values for the given {@link OpenVSwitch} list. * - *

- * Manager and OpenVSwitch are independent tables in the Open_vSwitch schema + *

Manager and OpenVSwitch are independent tables in the Open_vSwitch schema * but the OVSDB yang model includes the Manager fields in the * OVSDB Node data. In some cases the OVSDB will send OpenVSwitch and Manager * updates together and in other cases independently. This method here * assumes the former. - *

* * @param transaction the {@link ReadWriteTransaction} * @param newUpdatedManagerRows updated {@link Manager} rows @@ -98,13 +96,11 @@ public class OvsdbManagersUpdateCommand extends AbstractTransactionCommand { /** * Update the ManagerEntry values after finding the related {@OpenVSwitch} list. * - *

- * Manager and OpenVSwitch are independent tables in the Open_vSwitch schema + *

Manager and OpenVSwitch are independent tables in the Open_vSwitch schema * but the OVSDB yang model includes the Manager fields in the * OvsdbNode data. In some cases the OVSDB will send OpenVSwitch and Manager * updates together and in other cases independently. This method here * assumes the latter. - *

* * @param transaction the {@link ReadWriteTransaction} * @param newUpdatedManagerRows updated {@link Manager} rows diff --git a/southbound/southbound-impl/src/main/java/org/opendaylight/ovsdb/southbound/transactions/md/OvsdbQosUpdateCommand.java b/southbound/southbound-impl/src/main/java/org/opendaylight/ovsdb/southbound/transactions/md/OvsdbQosUpdateCommand.java index ae7eed49c..3cec5af75 100644 --- a/southbound/southbound-impl/src/main/java/org/opendaylight/ovsdb/southbound/transactions/md/OvsdbQosUpdateCommand.java +++ b/southbound/southbound-impl/src/main/java/org/opendaylight/ovsdb/southbound/transactions/md/OvsdbQosUpdateCommand.java @@ -82,17 +82,15 @@ public class OvsdbQosUpdateCommand extends AbstractTransactionCommand { /** * Update the QosEntries values after finding the related * {@link org.opendaylight.ovsdb.schema.openvswitch.OpenVSwitch} list. - *

- * Qos and OpenVSwitch are independent tables in the Open_vSwitch schema + * + *

Qos and OpenVSwitch are independent tables in the Open_vSwitch schema * but the OVSDB yang model includes the Qos fields in the * OvsdbNode data. In some cases the OVSDB will send OpenVSwitch and Qos * updates together and in other cases independently. This method here * assumes the latter. - *

* * @param transaction the {@link ReadWriteTransaction} * @param newUpdatedQosRows updated {@link Qos} rows - */ private void updateQos(ReadWriteTransaction transaction, Map newUpdatedQosRows) { diff --git a/southbound/southbound-impl/src/main/java/org/opendaylight/ovsdb/southbound/transactions/md/OvsdbQueueUpdateCommand.java b/southbound/southbound-impl/src/main/java/org/opendaylight/ovsdb/southbound/transactions/md/OvsdbQueueUpdateCommand.java index e64974104..712bba331 100644 --- a/southbound/southbound-impl/src/main/java/org/opendaylight/ovsdb/southbound/transactions/md/OvsdbQueueUpdateCommand.java +++ b/southbound/southbound-impl/src/main/java/org/opendaylight/ovsdb/southbound/transactions/md/OvsdbQueueUpdateCommand.java @@ -70,13 +70,12 @@ public class OvsdbQueueUpdateCommand extends AbstractTransactionCommand { /** * Update the Queues values after finding the related {@OpenVSwitch} list. - *

- * Queue and OpenVSwitch are independent tables in the Open_vSwitch schema + * + *

Queue and OpenVSwitch are independent tables in the Open_vSwitch schema * but the OVSDB yang model includes the Queue fields in the * OvsdbNode data. In some cases the OVSDB will send OpenVSwitch and Queue * updates together and in other cases independently. This method here * assumes the latter. - *

* * @param transaction the {@link ReadWriteTransaction} */ diff --git a/southbound/southbound-it/src/test/java/org/opendaylight/ovsdb/southbound/it/SouthboundIT.java b/southbound/southbound-it/src/test/java/org/opendaylight/ovsdb/southbound/it/SouthboundIT.java index 3fd72a3dd..25c22deeb 100644 --- a/southbound/southbound-it/src/test/java/org/opendaylight/ovsdb/southbound/it/SouthboundIT.java +++ b/southbound/southbound-it/src/test/java/org/opendaylight/ovsdb/southbound/it/SouthboundIT.java @@ -2570,14 +2570,11 @@ public class SouthboundIT extends AbstractMdsalTestBase { } /** - *

* Representation of a southbound test case. Each test case has a name, a list of input values and a list of * expected values. The input values are provided to the augmentation builder, and the expected values are checked * against the output of the resulting augmentation. - *

- *

- * Instances of this class are immutable. - *

+ * + *

Instances of this class are immutable. * * @param The type of data used for the test case. */ -- 2.34.1 From 0ede2c6dfed0485c7db837500825e3ceb823baf7 Mon Sep 17 00:00:00 2001 From: Robert Varga Date: Wed, 19 Feb 2025 16:19:33 +0100 Subject: [PATCH 2/3] Bump upstreams Adopt: - odlparent-14.0.7 - infrautils-7.1.1 - yangtools-14.0.9 - mdsal-14.0.9 - controller-10.0.7 - aaa-0.20.6 - netconf-8.0.5 Change-Id: I349ace0296543b19166990471970a7132a34c4a8 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/ovsdb-it-utils/pom.xml | 4 ++++ utils/pom.xml | 2 +- 34 files changed, 49 insertions(+), 45 deletions(-) diff --git a/commons/binding-parent/pom.xml b/commons/binding-parent/pom.xml index 23adb99b7..37cbdff16 100644 --- a/commons/binding-parent/pom.xml +++ b/commons/binding-parent/pom.xml @@ -11,7 +11,7 @@ org.opendaylight.mdsal binding-parent - 14.0.4 + 14.0.9 @@ -25,14 +25,14 @@ org.opendaylight.aaa aaa-artifacts - 0.20.3 + 0.20.6 pom import org.opendaylight.infrautils infrautils-artifacts - 7.0.4 + 7.1.1 pom import diff --git a/commons/it/pom.xml b/commons/it/pom.xml index c3e04340e..90cd32153 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.4 + 10.0.7 @@ -70,7 +70,7 @@ and is available at http://www.eclipse.org/legal/epl-v10.html org.opendaylight.mdsal mdsal-artifacts - 14.0.4 + 14.0.9 pom import diff --git a/commons/pom.xml b/commons/pom.xml index cfaf640a2..c09b81542 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.4 + 14.0.7 diff --git a/hwvtepsouthbound/hwvtepsouthbound-artifacts/pom.xml b/hwvtepsouthbound/hwvtepsouthbound-artifacts/pom.xml index 64dd8f393..59e5aa9a4 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.4 + 14.0.7 diff --git a/hwvtepsouthbound/hwvtepsouthbound-features/features/pom.xml b/hwvtepsouthbound/hwvtepsouthbound-features/features/pom.xml index cc5fe7ece..2960103bb 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.4 + 14.0.7 diff --git a/hwvtepsouthbound/hwvtepsouthbound-features/odl-ovsdb-hwvtepsouthbound-api/pom.xml b/hwvtepsouthbound/hwvtepsouthbound-features/odl-ovsdb-hwvtepsouthbound-api/pom.xml index 552f61d2a..41a6d6caf 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.4 + 14.0.7 @@ -22,7 +22,7 @@ org.opendaylight.mdsal mdsal-artifacts - 14.0.4 + 14.0.9 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 35f110255..8649f9698 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.4 + 14.0.7 @@ -30,7 +30,7 @@ and is available at http://www.eclipse.org/legal/epl-v10.html org.opendaylight.netconf netconf-artifacts - 8.0.3 + 8.0.5 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 dc41a7e35..dc78491bb 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.4 + 14.0.7 diff --git a/hwvtepsouthbound/hwvtepsouthbound-features/odl-ovsdb-hwvtepsouthbound-ui/pom.xml b/hwvtepsouthbound/hwvtepsouthbound-features/odl-ovsdb-hwvtepsouthbound-ui/pom.xml index 0904b1ebd..04872fb75 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.4 + 14.0.7 @@ -30,7 +30,7 @@ and is available at http://www.eclipse.org/legal/epl-v10.html org.opendaylight.netconf netconf-artifacts - 8.0.3 + 8.0.5 import pom diff --git a/hwvtepsouthbound/hwvtepsouthbound-features/odl-ovsdb-hwvtepsouthbound/pom.xml b/hwvtepsouthbound/hwvtepsouthbound-features/odl-ovsdb-hwvtepsouthbound/pom.xml index 823e4bc37..47634cd5e 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.4 + 14.0.7 diff --git a/hwvtepsouthbound/hwvtepsouthbound-features/pom.xml b/hwvtepsouthbound/hwvtepsouthbound-features/pom.xml index 95e8d52f1..9dba0a0e5 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.4 + 14.0.7 org.opendaylight.ovsdb diff --git a/hwvtepsouthbound/hwvtepsouthbound-karaf/pom.xml b/hwvtepsouthbound/hwvtepsouthbound-karaf/pom.xml index c1cf09a19..6a1683444 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.4 + 14.0.7 4.0.0 diff --git a/hwvtepsouthbound/pom.xml b/hwvtepsouthbound/pom.xml index 9cd0df48a..bd7a5a377 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.4 + 14.0.7 diff --git a/library/artifacts/pom.xml b/library/artifacts/pom.xml index ab4fd9043..329e3f281 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.4 + 14.0.7 diff --git a/library/features/features/pom.xml b/library/features/features/pom.xml index 29a9b9bc5..41273fc8e 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.4 + 14.0.7 diff --git a/library/features/odl-ovsdb-library/pom.xml b/library/features/odl-ovsdb-library/pom.xml index f7b3ddfd4..c633f7f34 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.4 + 14.0.7 @@ -41,7 +41,7 @@ and is available at http://www.eclipse.org/legal/epl-v10.html org.opendaylight.aaa odl-aaa-cert - 0.20.3 + 0.20.6 xml features diff --git a/library/features/pom.xml b/library/features/pom.xml index 1baf9ec11..f7fd4a97c 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.4 + 14.0.7 org.opendaylight.ovsdb diff --git a/library/karaf/pom.xml b/library/karaf/pom.xml index ced085bc7..d1d28cb7c 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.4 + 14.0.7 4.0.0 diff --git a/library/pom.xml b/library/pom.xml index f85413d16..effba4836 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.4 + 14.0.7 diff --git a/pom.xml b/pom.xml index 090f7112b..b2b43de0e 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.4 + 14.0.7 diff --git a/schemas/pom.xml b/schemas/pom.xml index ba877202d..3037ebf09 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.4 + 14.0.7 diff --git a/southbound/pom.xml b/southbound/pom.xml index 9952249e5..609793956 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.4 + 14.0.7 diff --git a/southbound/southbound-artifacts/pom.xml b/southbound/southbound-artifacts/pom.xml index de71336f8..9874efedc 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.4 + 14.0.7 diff --git a/southbound/southbound-features/features/pom.xml b/southbound/southbound-features/features/pom.xml index b98c4b777..2f2792b92 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.4 + 14.0.7 diff --git a/southbound/southbound-features/odl-ovsdb-southbound-api/pom.xml b/southbound/southbound-features/odl-ovsdb-southbound-api/pom.xml index 829d22726..a1642513d 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.4 + 14.0.7 @@ -29,7 +29,7 @@ and is available at http://www.eclipse.org/legal/epl-v10.html org.opendaylight.mdsal mdsal-artifacts - 14.0.4 + 14.0.9 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 840bfca19..983976659 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.4 + 14.0.7 @@ -30,7 +30,7 @@ and is available at http://www.eclipse.org/legal/epl-v10.html org.opendaylight.netconf netconf-artifacts - 8.0.3 + 8.0.5 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 3dc1d4d53..c593fa229 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.4 + 14.0.7 @@ -30,7 +30,7 @@ and is available at http://www.eclipse.org/legal/epl-v10.html org.opendaylight.netconf netconf-artifacts - 8.0.3 + 8.0.5 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 330414f13..a42814b08 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.4 + 14.0.7 @@ -30,7 +30,7 @@ and is available at http://www.eclipse.org/legal/epl-v10.html org.opendaylight.infrautils infrautils-artifacts - 7.0.4 + 7.1.1 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 d3f21a473..a42ab177d 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.4 + 14.0.7 diff --git a/southbound/southbound-features/pom.xml b/southbound/southbound-features/pom.xml index a66582a2d..953e17c58 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.4 + 14.0.7 diff --git a/southbound/southbound-karaf/pom.xml b/southbound/southbound-karaf/pom.xml index b6efb8bfa..03c52604a 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.4 + 14.0.7 4.0.0 diff --git a/utils/odl-ovsdb-utils/pom.xml b/utils/odl-ovsdb-utils/pom.xml index ea0417b3a..dff3c29c6 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.4 + 14.0.7 @@ -29,7 +29,7 @@ and is available at http://www.eclipse.org/legal/epl-v10.html org.opendaylight.controller controller-artifacts - 10.0.4 + 10.0.7 pom import diff --git a/utils/ovsdb-it-utils/pom.xml b/utils/ovsdb-it-utils/pom.xml index 6ad90105d..c10c0c71a 100644 --- a/utils/ovsdb-it-utils/pom.xml +++ b/utils/ovsdb-it-utils/pom.xml @@ -22,6 +22,10 @@ and is available at http://www.eclipse.org/legal/epl-v10.html build failure. Please do not modify this unless you have a good reason. --> ODL :: ovsdb :: ${project.artifactId} + + false + + ${project.groupId} diff --git a/utils/pom.xml b/utils/pom.xml index ef6fbe9f2..bb0d60182 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.4 + 14.0.7 -- 2.34.1 From c63bcdb80179a880234621107a999e533ba881dd Mon Sep 17 00:00:00 2001 From: jenkins-releng Date: Wed, 19 Feb 2025 15:46:50 +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 | 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 37cbdff16..baf3f2ebc 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.2-SNAPSHOT + 1.19.2 pom diff --git a/commons/it/pom.xml b/commons/it/pom.xml index 90cd32153..f9c12fc08 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.2-SNAPSHOT + 1.19.2 pom diff --git a/commons/pom.xml b/commons/pom.xml index c09b81542..c8c2f628c 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.2-SNAPSHOT + 1.19.2 ODL :: ovsdb :: ${project.artifactId} diff --git a/hwvtepsouthbound/hwvtepsouthbound-api/pom.xml b/hwvtepsouthbound/hwvtepsouthbound-api/pom.xml index e3bd94689..3525b8256 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.2-SNAPSHOT + 1.19.2 ../../commons/binding-parent 4.0.0 org.opendaylight.ovsdb hwvtepsouthbound-api - 1.19.2-SNAPSHOT + 1.19.2 bundle diff --git a/hwvtepsouthbound/hwvtepsouthbound-artifacts/pom.xml b/hwvtepsouthbound/hwvtepsouthbound-artifacts/pom.xml index 59e5aa9a4..ee383c5dc 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.2-SNAPSHOT + 1.19.2 pom diff --git a/hwvtepsouthbound/hwvtepsouthbound-features/features/pom.xml b/hwvtepsouthbound/hwvtepsouthbound-features/features/pom.xml index 2960103bb..cc301e51e 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.2-SNAPSHOT + 1.19.2 feature diff --git a/hwvtepsouthbound/hwvtepsouthbound-features/odl-ovsdb-hwvtepsouthbound-api/pom.xml b/hwvtepsouthbound/hwvtepsouthbound-features/odl-ovsdb-hwvtepsouthbound-api/pom.xml index 41a6d6caf..e8415354e 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.2-SNAPSHOT + 1.19.2 feature diff --git a/hwvtepsouthbound/hwvtepsouthbound-features/odl-ovsdb-hwvtepsouthbound-rest/pom.xml b/hwvtepsouthbound/hwvtepsouthbound-features/odl-ovsdb-hwvtepsouthbound-rest/pom.xml index 8649f9698..cdd9977cf 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.2-SNAPSHOT + 1.19.2 feature diff --git a/hwvtepsouthbound/hwvtepsouthbound-impl/pom.xml b/hwvtepsouthbound/hwvtepsouthbound-impl/pom.xml index 4c19e620a..0e37de18e 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.2-SNAPSHOT + 1.19.2 ../../commons/binding-parent diff --git a/hwvtepsouthbound/hwvtepsouthbound-it/pom.xml b/hwvtepsouthbound/hwvtepsouthbound-it/pom.xml index 010909a0a..b9c6a1f8a 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.2-SNAPSHOT + 1.19.2 ../../commons/it diff --git a/hwvtepsouthbound/hwvtepsouthbound-karaf/pom.xml b/hwvtepsouthbound/hwvtepsouthbound-karaf/pom.xml index 6a1683444..71ff87676 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.2-SNAPSHOT + 1.19.2 pom diff --git a/hwvtepsouthbound/pom.xml b/hwvtepsouthbound/pom.xml index bd7a5a377..30f161d6d 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.2-SNAPSHOT + 1.19.2 ODL :: ovsdb :: ${project.artifactId} diff --git a/library/artifacts/pom.xml b/library/artifacts/pom.xml index 329e3f281..1585f40f7 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.2-SNAPSHOT + 1.19.2 pom diff --git a/library/features/features/pom.xml b/library/features/features/pom.xml index 41273fc8e..236b4bffc 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.2-SNAPSHOT + 1.19.2 feature diff --git a/library/features/odl-ovsdb-library/pom.xml b/library/features/odl-ovsdb-library/pom.xml index c633f7f34..f010d62bc 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.2-SNAPSHOT + 1.19.2 feature ODL :: ovsdb :: ${project.artifactId} diff --git a/library/impl/pom.xml b/library/impl/pom.xml index f08cd0631..1eed406c1 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.2-SNAPSHOT + 1.19.2 ../../commons/binding-parent 4.0.0 org.opendaylight.ovsdb library - 1.19.2-SNAPSHOT + 1.19.2 bundle diff --git a/library/it/pom.xml b/library/it/pom.xml index d9ce541b8..aecb8be47 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.2-SNAPSHOT + 1.19.2 ../../commons/it 4.0.0 org.opendaylight.ovsdb library-it - 1.19.2-SNAPSHOT + 1.19.2 jar @@ -27,7 +27,7 @@ and is available at http://www.eclipse.org/legal/epl-v10.html org.opendaylight.ovsdb library-karaf - 1.19.2-SNAPSHOT + 1.19.2 zip diff --git a/library/karaf/pom.xml b/library/karaf/pom.xml index d1d28cb7c..734b3ee47 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.2-SNAPSHOT + 1.19.2 pom diff --git a/library/pom.xml b/library/pom.xml index effba4836..811d235c1 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.2-SNAPSHOT + 1.19.2 ODL :: ovsdb :: ${project.artifactId} diff --git a/pom.xml b/pom.xml index b2b43de0e..9b5634010 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.2-SNAPSHOT + 1.19.2 ${project.artifactId} pom diff --git a/schemas/hardwarevtep/pom.xml b/schemas/hardwarevtep/pom.xml index bef80d66a..338c463e0 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.2-SNAPSHOT + 1.19.2 ../../commons/binding-parent org.opendaylight.ovsdb schema.hardwarevtep - 1.19.2-SNAPSHOT + 1.19.2 bundle diff --git a/schemas/openvswitch/pom.xml b/schemas/openvswitch/pom.xml index 9098d2291..e364477be 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.2-SNAPSHOT + 1.19.2 ../../commons/binding-parent org.opendaylight.ovsdb schema.openvswitch - 1.19.2-SNAPSHOT + 1.19.2 bundle diff --git a/schemas/pom.xml b/schemas/pom.xml index 3037ebf09..4a4ac0b34 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.2-SNAPSHOT + 1.19.2 ODL :: ovsdb :: ${project.artifactId} diff --git a/southbound/pom.xml b/southbound/pom.xml index 609793956..121234799 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.2-SNAPSHOT + 1.19.2 ODL :: ovsdb :: ${project.artifactId} diff --git a/southbound/southbound-api/pom.xml b/southbound/southbound-api/pom.xml index 3e1dc8a2c..292459f5c 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.2-SNAPSHOT + 1.19.2 ../../commons/binding-parent 4.0.0 org.opendaylight.ovsdb southbound-api - 1.19.2-SNAPSHOT + 1.19.2 bundle diff --git a/southbound/southbound-artifacts/pom.xml b/southbound/southbound-artifacts/pom.xml index 9874efedc..109c8352b 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.2-SNAPSHOT + 1.19.2 pom diff --git a/southbound/southbound-features/features/pom.xml b/southbound/southbound-features/features/pom.xml index 2f2792b92..c5528d0b4 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.2-SNAPSHOT + 1.19.2 feature diff --git a/southbound/southbound-features/odl-ovsdb-southbound-api/pom.xml b/southbound/southbound-features/odl-ovsdb-southbound-api/pom.xml index a1642513d..6e2ec8f0c 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.2-SNAPSHOT + 1.19.2 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 983976659..098913552 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.2-SNAPSHOT + 1.19.2 feature ODL :: ovsdb :: ${project.artifactId} diff --git a/southbound/southbound-impl/pom.xml b/southbound/southbound-impl/pom.xml index a49f2f6ce..69a3435cc 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.2-SNAPSHOT + 1.19.2 ../../commons/binding-parent diff --git a/southbound/southbound-it/pom.xml b/southbound/southbound-it/pom.xml index 07957ab95..c07cd51d2 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.2-SNAPSHOT + 1.19.2 ../../commons/it 4.0.0 diff --git a/southbound/southbound-karaf/pom.xml b/southbound/southbound-karaf/pom.xml index 03c52604a..7ee8b0786 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.2-SNAPSHOT + 1.19.2 pom diff --git a/utils/config/pom.xml b/utils/config/pom.xml index 60f55a7a8..e2ab3e393 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.2-SNAPSHOT + 1.19.2 ../../commons/binding-parent org.opendaylight.ovsdb utils.config - 1.19.2-SNAPSHOT + 1.19.2 ODL :: ovsdb :: ${project.artifactId} diff --git a/utils/hwvtepsouthbound-utils/pom.xml b/utils/hwvtepsouthbound-utils/pom.xml index 39bbc06fe..4b8df62d3 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.2-SNAPSHOT + 1.19.2 ../../commons/binding-parent org.opendaylight.ovsdb utils.hwvtepsouthbound-utils - 1.19.2-SNAPSHOT + 1.19.2 bundle diff --git a/utils/mdsal-utils/pom.xml b/utils/mdsal-utils/pom.xml index 159225da0..01b6fecb9 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.2-SNAPSHOT + 1.19.2 ../../commons/binding-parent org.opendaylight.ovsdb utils.mdsal-utils - 1.19.2-SNAPSHOT + 1.19.2 bundle diff --git a/utils/odl-ovsdb-utils/pom.xml b/utils/odl-ovsdb-utils/pom.xml index dff3c29c6..2e4c62504 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.2-SNAPSHOT + 1.19.2 feature diff --git a/utils/ovsdb-it-utils/pom.xml b/utils/ovsdb-it-utils/pom.xml index c10c0c71a..d164e7d7d 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.2-SNAPSHOT + 1.19.2 ../../commons/binding-parent diff --git a/utils/pom.xml b/utils/pom.xml index bb0d60182..677d79732 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.2-SNAPSHOT + 1.19.2 pom diff --git a/utils/servicehelper/pom.xml b/utils/servicehelper/pom.xml index 432bea88c..1344b7ac3 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.2-SNAPSHOT + 1.19.2 ../../commons/binding-parent org.opendaylight.ovsdb utils.servicehelper - 1.19.2-SNAPSHOT + 1.19.2 bundle diff --git a/utils/southbound-utils/pom.xml b/utils/southbound-utils/pom.xml index 75a2e7b43..4a7bbc57e 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.2-SNAPSHOT + 1.19.2 ../../commons/binding-parent org.opendaylight.ovsdb utils.southbound-utils - 1.19.2-SNAPSHOT + 1.19.2 bundle diff --git a/utils/yang-utils/pom.xml b/utils/yang-utils/pom.xml index bf9d1eb6a..1b48709f1 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.2-SNAPSHOT + 1.19.2 ../../commons/binding-parent -- 2.34.1