From 091dd1a55d06c7ea48eb82a447fcf1b077954bb3 Mon Sep 17 00:00:00 2001 From: Prakhar Gupta Date: Thu, 29 Feb 2024 15:22:26 +0530 Subject: [PATCH 01/15] added log to check deployment --- .../java/com/bazaarvoice/emodb/client/Jersey2EmoResource.java | 2 ++ .../bazaarvoice/emodb/web/resources/sor/DataStoreResource1.java | 1 + 2 files changed, 3 insertions(+) diff --git a/common/client-jersey2/src/main/java/com/bazaarvoice/emodb/client/Jersey2EmoResource.java b/common/client-jersey2/src/main/java/com/bazaarvoice/emodb/client/Jersey2EmoResource.java index 4d1dee1042..7e53fec68b 100644 --- a/common/client-jersey2/src/main/java/com/bazaarvoice/emodb/client/Jersey2EmoResource.java +++ b/common/client-jersey2/src/main/java/com/bazaarvoice/emodb/client/Jersey2EmoResource.java @@ -80,6 +80,7 @@ public EmoResponse head() { private T send(String method, @Nullable Object entity) { try { Response response; + LOG.info("HI Anand -msg from Prakhar"); if (entity == null) { response = builder().method(method); } else { @@ -97,6 +98,7 @@ private T send(String method, @Nullable Object entity) { return null; } catch (WebApplicationException e) { + LOG.error("Error response is- {},{}",e.getResponse(),e.toString()); throw asEmoClientException(e); } } diff --git a/web/src/main/java/com/bazaarvoice/emodb/web/resources/sor/DataStoreResource1.java b/web/src/main/java/com/bazaarvoice/emodb/web/resources/sor/DataStoreResource1.java index 27baf89a04..2598f9ac28 100644 --- a/web/src/main/java/com/bazaarvoice/emodb/web/resources/sor/DataStoreResource1.java +++ b/web/src/main/java/com/bazaarvoice/emodb/web/resources/sor/DataStoreResource1.java @@ -294,6 +294,7 @@ public Map getPurgeStatus(@PathParam ("table") String table, @Qu public Map getTableTemplate(@PathParam ("table") String table, @QueryParam ("debug") BooleanParam debug) { Map template = _dataStore.getTableTemplate(table); + _log.info("Hi Anana i am here"); // if debugging, sort the json result so it's easier to understand in a browser return optionallyOrdered(template, debug); } From f522f538aa31b527e5785a3371d43847f1316d64 Mon Sep 17 00:00:00 2001 From: Prakhar Gupta Date: Thu, 29 Feb 2024 15:22:26 +0530 Subject: [PATCH 02/15] added log to check deployment --- .../emodb/client/Jersey2EmoResource.java | 2 ++ kafka/pom.xml | 3 +++ megabus/pom.xml | 5 +++++ sor-client/pom.xml | 6 ++++++ sor/pom.xml | 2 ++ web/pom.xml | 20 +++++++++++++++++++ .../web/resources/sor/DataStoreResource1.java | 1 + 7 files changed, 39 insertions(+) diff --git a/common/client-jersey2/src/main/java/com/bazaarvoice/emodb/client/Jersey2EmoResource.java b/common/client-jersey2/src/main/java/com/bazaarvoice/emodb/client/Jersey2EmoResource.java index 4d1dee1042..7e53fec68b 100644 --- a/common/client-jersey2/src/main/java/com/bazaarvoice/emodb/client/Jersey2EmoResource.java +++ b/common/client-jersey2/src/main/java/com/bazaarvoice/emodb/client/Jersey2EmoResource.java @@ -80,6 +80,7 @@ public EmoResponse head() { private T send(String method, @Nullable Object entity) { try { Response response; + LOG.info("HI Anand -msg from Prakhar"); if (entity == null) { response = builder().method(method); } else { @@ -97,6 +98,7 @@ private T send(String method, @Nullable Object entity) { return null; } catch (WebApplicationException e) { + LOG.error("Error response is- {},{}",e.getResponse(),e.toString()); throw asEmoClientException(e); } } diff --git a/kafka/pom.xml b/kafka/pom.xml index 00b2784e79..f7f926ee8c 100644 --- a/kafka/pom.xml +++ b/kafka/pom.xml @@ -21,6 +21,7 @@ com.bazaarvoice.emodb emodb-common-json ${project.version} + provided com.bazaarvoice.emodb @@ -63,6 +64,7 @@ com.fasterxml.jackson.dataformat jackson-dataformat-yaml + provided com.fasterxml.jackson.datatype @@ -91,6 +93,7 @@ io.dropwizard dropwizard-configuration + provided org.apache.kafka diff --git a/megabus/pom.xml b/megabus/pom.xml index 969387ab5a..1253206701 100644 --- a/megabus/pom.xml +++ b/megabus/pom.xml @@ -41,6 +41,7 @@ com.bazaarvoice.emodb emodb-common-json ${project.version} + provided com.bazaarvoice.emodb @@ -137,6 +138,7 @@ com.fasterxml.jackson.dataformat jackson-dataformat-yaml + provided com.fasterxml.jackson.core @@ -147,6 +149,7 @@ com.fasterxml.jackson.datatype jackson-datatype-jsr310 + provided com.fasterxml.jackson.core @@ -169,6 +172,7 @@ io.dropwizard dropwizard-configuration + provided io.dropwizard @@ -192,6 +196,7 @@ org.apache.kafka connect-json ${kafka.version} + provided org.apache.kafka diff --git a/sor-client/pom.xml b/sor-client/pom.xml index e54e1de99c..055ba281aa 100644 --- a/sor-client/pom.xml +++ b/sor-client/pom.xml @@ -21,26 +21,31 @@ com.bazaarvoice.emodb emodb-common-api ${project.version} + provided com.bazaarvoice.emodb emodb-common-client ${project.version} + provided com.bazaarvoice.emodb emodb-sor-api ${project.version} + provided com.bazaarvoice.emodb emodb-sor-client-common ${project.version} + provided com.bazaarvoice.emodb emodb-common-jersey-client ${project.version} + provided @@ -89,6 +94,7 @@ javax.ws.rs jsr311-api + provided org.apache.httpcomponents diff --git a/sor/pom.xml b/sor/pom.xml index 5499b04202..02f2f88253 100644 --- a/sor/pom.xml +++ b/sor/pom.xml @@ -211,10 +211,12 @@ com.sun.jersey jersey-client + provided io.dropwizard dropwizard-jackson + provided com.fasterxml.jackson.datatype diff --git a/web/pom.xml b/web/pom.xml index cbe776b28a..c3dbaac1aa 100644 --- a/web/pom.xml +++ b/web/pom.xml @@ -718,6 +718,26 @@ stop + + + com.bazaarvoice.emodb:emodb-job-api:jar:6.5.84-SNAPSHOT:compile + + + org.apache.commons:commons-compress:jar:1.21:compile + + + org.apache.cassandra:cassandra-all:jar:3.11.12:compile + + + com.bazaarvoice.astyanax:astyanax-core:jar:3.8.0-bv14:compile + + + org.coursera:dropwizard-metrics-datadog:jar:1.1.13:compile + + + io.dropwizard:dropwizard-metrics:jar:0.7.1:compile + + build diff --git a/web/src/main/java/com/bazaarvoice/emodb/web/resources/sor/DataStoreResource1.java b/web/src/main/java/com/bazaarvoice/emodb/web/resources/sor/DataStoreResource1.java index 27baf89a04..2598f9ac28 100644 --- a/web/src/main/java/com/bazaarvoice/emodb/web/resources/sor/DataStoreResource1.java +++ b/web/src/main/java/com/bazaarvoice/emodb/web/resources/sor/DataStoreResource1.java @@ -294,6 +294,7 @@ public Map getPurgeStatus(@PathParam ("table") String table, @Qu public Map getTableTemplate(@PathParam ("table") String table, @QueryParam ("debug") BooleanParam debug) { Map template = _dataStore.getTableTemplate(table); + _log.info("Hi Anana i am here"); // if debugging, sort the json result so it's easier to understand in a browser return optionallyOrdered(template, debug); } From b8d490d94c00369e1f1918aae6ca6bb2d309d08b Mon Sep 17 00:00:00 2001 From: Prakhar Gupta Date: Mon, 4 Mar 2024 15:33:55 +0530 Subject: [PATCH 03/15] adde ignopre dependency --- parent/pom.xml | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/parent/pom.xml b/parent/pom.xml index 2880adacae..5efa70dee8 100644 --- a/parent/pom.xml +++ b/parent/pom.xml @@ -909,6 +909,12 @@ com.fasterxml.jackson.datatype:jackson-datatype-joda io.netty:netty-all + io.dropwizard:dropwizard-metrics + org.coursera:dropwizard-metrics-datadog + com.bazaarvoice.astyanax:astyanax-core + com.bazaarvoice.emodb:emodb-job-api + org.apache.commons:commons-compress + org.apache.cassandra:cassandra-all @@ -917,7 +923,7 @@ org.slf4j:jul-to-slf4j org.slf4j:jcl-over-slf4j org.slf4j:log4j-over-slf4j - + com.bazaarvoice.emodb:emodb-job-api javax.ws.rs:jsr311-api @@ -925,7 +931,7 @@ com.bazaarvoice.emodb:emodb-common-api com.bazaarvoice.emodb:emodb-common-client com.bazaarvoice.emodb:emodb-common-json - com.bazaarvoice.emodb:emodb-job-api + com.bazaarvoice.emodb:emodb-sor-api com.sun.jersey:jersey-client io.dropwizard:dropwizard-configuration From 17f8663dab53d0382b8d76ba2b2f24fbe2582b4b Mon Sep 17 00:00:00 2001 From: Prakhar Gupta Date: Mon, 4 Mar 2024 15:36:50 +0530 Subject: [PATCH 04/15] remove blank --- parent/pom.xml | 1 - 1 file changed, 1 deletion(-) diff --git a/parent/pom.xml b/parent/pom.xml index 5efa70dee8..03b92e0615 100644 --- a/parent/pom.xml +++ b/parent/pom.xml @@ -931,7 +931,6 @@ com.bazaarvoice.emodb:emodb-common-api com.bazaarvoice.emodb:emodb-common-client com.bazaarvoice.emodb:emodb-common-json - com.bazaarvoice.emodb:emodb-sor-api com.sun.jersey:jersey-client io.dropwizard:dropwizard-configuration From 17a89728cf68ed46ec9b299dfbb70195b47630ac Mon Sep 17 00:00:00 2001 From: Prakhar Gupta Date: Mon, 4 Mar 2024 15:41:03 +0530 Subject: [PATCH 05/15] remove configuration --- web/pom.xml | 21 +-------------------- 1 file changed, 1 insertion(+), 20 deletions(-) diff --git a/web/pom.xml b/web/pom.xml index c3dbaac1aa..da40da5193 100644 --- a/web/pom.xml +++ b/web/pom.xml @@ -718,26 +718,7 @@ stop - - - com.bazaarvoice.emodb:emodb-job-api:jar:6.5.84-SNAPSHOT:compile - - - org.apache.commons:commons-compress:jar:1.21:compile - - - org.apache.cassandra:cassandra-all:jar:3.11.12:compile - - - com.bazaarvoice.astyanax:astyanax-core:jar:3.8.0-bv14:compile - - - org.coursera:dropwizard-metrics-datadog:jar:1.1.13:compile - - - io.dropwizard:dropwizard-metrics:jar:0.7.1:compile - - + build From be2422c58682e3fc022d4e5182f9e128897288b3 Mon Sep 17 00:00:00 2001 From: Prakhar Gupta Date: Mon, 4 Mar 2024 15:42:42 +0530 Subject: [PATCH 06/15] extra words removed --- parent/pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/parent/pom.xml b/parent/pom.xml index 03b92e0615..3814d4c18c 100644 --- a/parent/pom.xml +++ b/parent/pom.xml @@ -923,7 +923,7 @@ org.slf4j:jul-to-slf4j org.slf4j:jcl-over-slf4j org.slf4j:log4j-over-slf4j - com.bazaarvoice.emodb:emodb-job-api + javax.ws.rs:jsr311-api From 1c65aaa7811f77daaaad9cd0e9236c3b8528a33b Mon Sep 17 00:00:00 2001 From: Prakhar Gupta Date: Mon, 4 Mar 2024 15:47:32 +0530 Subject: [PATCH 07/15] revert --- parent/pom.xml | 1 + 1 file changed, 1 insertion(+) diff --git a/parent/pom.xml b/parent/pom.xml index 3814d4c18c..b4c674dffc 100644 --- a/parent/pom.xml +++ b/parent/pom.xml @@ -931,6 +931,7 @@ com.bazaarvoice.emodb:emodb-common-api com.bazaarvoice.emodb:emodb-common-client com.bazaarvoice.emodb:emodb-common-json + com.bazaarvoice.emodb:emodb-job-api com.bazaarvoice.emodb:emodb-sor-api com.sun.jersey:jersey-client io.dropwizard:dropwizard-configuration From f4e91f603995bcce3ac04e4c7a9e1ecefefbc377 Mon Sep 17 00:00:00 2001 From: jenkins Date: Mon, 4 Mar 2024 10:24:51 +0000 Subject: [PATCH 08/15] branch admin -prepare release emodb-6.5.84 --- auth/auth-client/pom.xml | 2 +- auth/auth-core/pom.xml | 2 +- auth/auth-store/pom.xml | 2 +- auth/auth-util/pom.xml | 2 +- blob-api/pom.xml | 2 +- blob-clients/blob-client-common/pom.xml | 2 +- blob-clients/blob-client-jersey2/pom.xml | 2 +- blob-clients/blob-client/pom.xml | 2 +- blob/pom.xml | 2 +- cachemgr/pom.xml | 2 +- common/api/pom.xml | 2 +- common/astyanax/pom.xml | 2 +- common/client-jax-rs-2/pom.xml | 2 +- common/client-jersey2/pom.xml | 2 +- common/client/pom.xml | 2 +- common/dropwizard/pom.xml | 2 +- common/jersey-client/pom.xml | 2 +- common/json/pom.xml | 2 +- common/stash/pom.xml | 2 +- common/uuid/pom.xml | 2 +- common/zookeeper/pom.xml | 2 +- databus-api/pom.xml | 2 +- databus-client-common/pom.xml | 2 +- databus-client-jersey2/pom.xml | 2 +- databus-client/pom.xml | 2 +- databus/pom.xml | 2 +- datacenter/pom.xml | 2 +- event/pom.xml | 2 +- job-api/pom.xml | 2 +- job/pom.xml | 2 +- kafka/pom.xml | 2 +- megabus/pom.xml | 2 +- parent/pom.xml | 4 ++-- plugins/pom.xml | 2 +- pom.xml | 4 ++-- quality/integration/pom.xml | 2 +- quality/pom.xml | 2 +- queue-api/pom.xml | 2 +- queue-client-common/pom.xml | 2 +- queue-client-jersey2/pom.xml | 2 +- queue-client/pom.xml | 2 +- queue/pom.xml | 2 +- sdk/pom.xml | 2 +- sor-api/pom.xml | 2 +- sor-client-common/pom.xml | 2 +- sor-client-jersey2/pom.xml | 2 +- sor-client/pom.xml | 2 +- sor/pom.xml | 2 +- table/pom.xml | 2 +- uac-api/pom.xml | 2 +- uac-client-jersey2/pom.xml | 2 +- uac-client/pom.xml | 2 +- web-local/pom.xml | 2 +- web/pom.xml | 2 +- yum/pom.xml | 2 +- 55 files changed, 57 insertions(+), 57 deletions(-) diff --git a/auth/auth-client/pom.xml b/auth/auth-client/pom.xml index 9d344949af..9738113f10 100644 --- a/auth/auth-client/pom.xml +++ b/auth/auth-client/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.84-SNAPSHOT + 6.5.84 ../../parent/pom.xml diff --git a/auth/auth-core/pom.xml b/auth/auth-core/pom.xml index 972794bb5a..99b706d0aa 100644 --- a/auth/auth-core/pom.xml +++ b/auth/auth-core/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.84-SNAPSHOT + 6.5.84 ../../parent/pom.xml diff --git a/auth/auth-store/pom.xml b/auth/auth-store/pom.xml index 7fa3cd8711..4e1649c239 100644 --- a/auth/auth-store/pom.xml +++ b/auth/auth-store/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.84-SNAPSHOT + 6.5.84 ../../parent/pom.xml diff --git a/auth/auth-util/pom.xml b/auth/auth-util/pom.xml index c12051a550..0ed6cef63e 100644 --- a/auth/auth-util/pom.xml +++ b/auth/auth-util/pom.xml @@ -3,7 +3,7 @@ emodb com.bazaarvoice.emodb - 6.5.84-SNAPSHOT + 6.5.84 ../../pom.xml 4.0.0 diff --git a/blob-api/pom.xml b/blob-api/pom.xml index 39c25ee68c..2c67b37be9 100644 --- a/blob-api/pom.xml +++ b/blob-api/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.84-SNAPSHOT + 6.5.84 ../parent/pom.xml diff --git a/blob-clients/blob-client-common/pom.xml b/blob-clients/blob-client-common/pom.xml index fee2cff963..6e50fe5c8f 100644 --- a/blob-clients/blob-client-common/pom.xml +++ b/blob-clients/blob-client-common/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.84-SNAPSHOT + 6.5.84 ../../parent/pom.xml diff --git a/blob-clients/blob-client-jersey2/pom.xml b/blob-clients/blob-client-jersey2/pom.xml index 90b4f93c2a..50515f4be9 100644 --- a/blob-clients/blob-client-jersey2/pom.xml +++ b/blob-clients/blob-client-jersey2/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.84-SNAPSHOT + 6.5.84 ../../parent/pom.xml diff --git a/blob-clients/blob-client/pom.xml b/blob-clients/blob-client/pom.xml index 05c432d583..3e34b56155 100644 --- a/blob-clients/blob-client/pom.xml +++ b/blob-clients/blob-client/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.84-SNAPSHOT + 6.5.84 ../../parent/pom.xml diff --git a/blob/pom.xml b/blob/pom.xml index e32cd25908..b738dcedcd 100644 --- a/blob/pom.xml +++ b/blob/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.84-SNAPSHOT + 6.5.84 ../parent/pom.xml diff --git a/cachemgr/pom.xml b/cachemgr/pom.xml index 722d465930..d84335865f 100644 --- a/cachemgr/pom.xml +++ b/cachemgr/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.84-SNAPSHOT + 6.5.84 ../parent/pom.xml diff --git a/common/api/pom.xml b/common/api/pom.xml index 8927e09c84..5a8372b42c 100644 --- a/common/api/pom.xml +++ b/common/api/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.84-SNAPSHOT + 6.5.84 ../../parent/pom.xml diff --git a/common/astyanax/pom.xml b/common/astyanax/pom.xml index 781d7d0f2c..27931a342c 100644 --- a/common/astyanax/pom.xml +++ b/common/astyanax/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.84-SNAPSHOT + 6.5.84 ../../parent/pom.xml diff --git a/common/client-jax-rs-2/pom.xml b/common/client-jax-rs-2/pom.xml index 84c3e1d04e..edb8a755a5 100644 --- a/common/client-jax-rs-2/pom.xml +++ b/common/client-jax-rs-2/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.84-SNAPSHOT + 6.5.84 ../../parent/pom.xml diff --git a/common/client-jersey2/pom.xml b/common/client-jersey2/pom.xml index b9758d2007..8d116dc137 100644 --- a/common/client-jersey2/pom.xml +++ b/common/client-jersey2/pom.xml @@ -5,7 +5,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.84-SNAPSHOT + 6.5.84 ../../parent/pom.xml diff --git a/common/client/pom.xml b/common/client/pom.xml index 6041ba40c9..32410ab92a 100644 --- a/common/client/pom.xml +++ b/common/client/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.84-SNAPSHOT + 6.5.84 ../../parent/pom.xml diff --git a/common/dropwizard/pom.xml b/common/dropwizard/pom.xml index e92da97102..97064b4aa5 100644 --- a/common/dropwizard/pom.xml +++ b/common/dropwizard/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.84-SNAPSHOT + 6.5.84 ../../parent/pom.xml diff --git a/common/jersey-client/pom.xml b/common/jersey-client/pom.xml index edfa323779..27953c95ab 100644 --- a/common/jersey-client/pom.xml +++ b/common/jersey-client/pom.xml @@ -5,7 +5,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.84-SNAPSHOT + 6.5.84 ../../parent/pom.xml diff --git a/common/json/pom.xml b/common/json/pom.xml index 102dcd1742..c9ca80edb2 100644 --- a/common/json/pom.xml +++ b/common/json/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.84-SNAPSHOT + 6.5.84 ../../parent/pom.xml diff --git a/common/stash/pom.xml b/common/stash/pom.xml index 423702b54e..d71fb596e7 100644 --- a/common/stash/pom.xml +++ b/common/stash/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.84-SNAPSHOT + 6.5.84 ../../parent/pom.xml diff --git a/common/uuid/pom.xml b/common/uuid/pom.xml index 69ea6a7a8d..a596d54d4d 100644 --- a/common/uuid/pom.xml +++ b/common/uuid/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.84-SNAPSHOT + 6.5.84 ../../parent/pom.xml diff --git a/common/zookeeper/pom.xml b/common/zookeeper/pom.xml index 947858b8ba..44b8bceb1e 100644 --- a/common/zookeeper/pom.xml +++ b/common/zookeeper/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.84-SNAPSHOT + 6.5.84 ../../parent/pom.xml diff --git a/databus-api/pom.xml b/databus-api/pom.xml index 8b46311066..2150a167ac 100644 --- a/databus-api/pom.xml +++ b/databus-api/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.84-SNAPSHOT + 6.5.84 ../parent/pom.xml diff --git a/databus-client-common/pom.xml b/databus-client-common/pom.xml index a7b8f650fc..abea8c4d02 100644 --- a/databus-client-common/pom.xml +++ b/databus-client-common/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.84-SNAPSHOT + 6.5.84 ../parent/pom.xml diff --git a/databus-client-jersey2/pom.xml b/databus-client-jersey2/pom.xml index 7a796058f7..7ce6610765 100644 --- a/databus-client-jersey2/pom.xml +++ b/databus-client-jersey2/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.84-SNAPSHOT + 6.5.84 ../parent/pom.xml diff --git a/databus-client/pom.xml b/databus-client/pom.xml index a8e60d6db0..87b540812e 100644 --- a/databus-client/pom.xml +++ b/databus-client/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.84-SNAPSHOT + 6.5.84 ../parent/pom.xml diff --git a/databus/pom.xml b/databus/pom.xml index c5cd4679d2..40614a4167 100644 --- a/databus/pom.xml +++ b/databus/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.84-SNAPSHOT + 6.5.84 ../parent/pom.xml diff --git a/datacenter/pom.xml b/datacenter/pom.xml index 46aea96877..c993c71bbb 100644 --- a/datacenter/pom.xml +++ b/datacenter/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.84-SNAPSHOT + 6.5.84 ../parent/pom.xml diff --git a/event/pom.xml b/event/pom.xml index ae4d8c1e5e..d2df675fe2 100644 --- a/event/pom.xml +++ b/event/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.84-SNAPSHOT + 6.5.84 ../parent/pom.xml diff --git a/job-api/pom.xml b/job-api/pom.xml index 624418cbb5..3cb4aad405 100644 --- a/job-api/pom.xml +++ b/job-api/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.84-SNAPSHOT + 6.5.84 ../parent/pom.xml diff --git a/job/pom.xml b/job/pom.xml index b76cb2d6a0..d31998ebe2 100644 --- a/job/pom.xml +++ b/job/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.84-SNAPSHOT + 6.5.84 ../parent/pom.xml diff --git a/kafka/pom.xml b/kafka/pom.xml index f7f926ee8c..c03fdb5539 100644 --- a/kafka/pom.xml +++ b/kafka/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.84-SNAPSHOT + 6.5.84 ../parent/pom.xml diff --git a/megabus/pom.xml b/megabus/pom.xml index 1253206701..2dba06c476 100644 --- a/megabus/pom.xml +++ b/megabus/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.84-SNAPSHOT + 6.5.84 ../parent/pom.xml diff --git a/parent/pom.xml b/parent/pom.xml index b4c674dffc..1620ae66ef 100644 --- a/parent/pom.xml +++ b/parent/pom.xml @@ -11,7 +11,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.84-SNAPSHOT + 6.5.84 pom EmoDB Parent @@ -20,7 +20,7 @@ scm:git:git@github.com:bazaarvoice/emodb.git scm:git:git@github.com:bazaarvoice/emodb.git scm:git:git@github.com:bazaarvoice/emodb.git - emodb-6.5.70 + emodb-6.5.84 diff --git a/plugins/pom.xml b/plugins/pom.xml index b914be9fdb..d027e86d1b 100644 --- a/plugins/pom.xml +++ b/plugins/pom.xml @@ -4,7 +4,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.84-SNAPSHOT + 6.5.84 ../parent/pom.xml diff --git a/pom.xml b/pom.xml index c1050fb0f4..20658c2838 100644 --- a/pom.xml +++ b/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.84-SNAPSHOT + 6.5.84 parent/pom.xml @@ -18,7 +18,7 @@ scm:git:git@github.com:bazaarvoice/emodb.git scm:git:git@github.com:bazaarvoice/emodb.git scm:git:git@github.com:bazaarvoice/emodb.git - emodb-6.5.70 + emodb-6.5.84 diff --git a/quality/integration/pom.xml b/quality/integration/pom.xml index 0e9eafad60..1d80de351c 100644 --- a/quality/integration/pom.xml +++ b/quality/integration/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.84-SNAPSHOT + 6.5.84 ../../parent/pom.xml diff --git a/quality/pom.xml b/quality/pom.xml index e19239288d..150aa80f09 100644 --- a/quality/pom.xml +++ b/quality/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.84-SNAPSHOT + 6.5.84 ../parent/pom.xml diff --git a/queue-api/pom.xml b/queue-api/pom.xml index a81ddec761..a45657b3e9 100644 --- a/queue-api/pom.xml +++ b/queue-api/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.84-SNAPSHOT + 6.5.84 ../parent/pom.xml diff --git a/queue-client-common/pom.xml b/queue-client-common/pom.xml index 948e7d669b..c5feb41e5e 100644 --- a/queue-client-common/pom.xml +++ b/queue-client-common/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.84-SNAPSHOT + 6.5.84 ../parent/pom.xml diff --git a/queue-client-jersey2/pom.xml b/queue-client-jersey2/pom.xml index b13c146570..900f316ad8 100644 --- a/queue-client-jersey2/pom.xml +++ b/queue-client-jersey2/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.84-SNAPSHOT + 6.5.84 ../parent/pom.xml diff --git a/queue-client/pom.xml b/queue-client/pom.xml index a11aa8d7b4..108435e96c 100644 --- a/queue-client/pom.xml +++ b/queue-client/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.84-SNAPSHOT + 6.5.84 ../parent/pom.xml diff --git a/queue/pom.xml b/queue/pom.xml index 95e7d27a3d..c7d3f22e12 100644 --- a/queue/pom.xml +++ b/queue/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.84-SNAPSHOT + 6.5.84 ../parent/pom.xml diff --git a/sdk/pom.xml b/sdk/pom.xml index 436d0e627d..dd3f0d5ea4 100644 --- a/sdk/pom.xml +++ b/sdk/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.84-SNAPSHOT + 6.5.84 ../parent/pom.xml diff --git a/sor-api/pom.xml b/sor-api/pom.xml index e805413fcb..d32aca24bf 100644 --- a/sor-api/pom.xml +++ b/sor-api/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.84-SNAPSHOT + 6.5.84 ../parent/pom.xml diff --git a/sor-client-common/pom.xml b/sor-client-common/pom.xml index c1d910f199..d1e41fcaf5 100644 --- a/sor-client-common/pom.xml +++ b/sor-client-common/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.84-SNAPSHOT + 6.5.84 ../parent/pom.xml diff --git a/sor-client-jersey2/pom.xml b/sor-client-jersey2/pom.xml index 79c34b245e..2271281b41 100644 --- a/sor-client-jersey2/pom.xml +++ b/sor-client-jersey2/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.84-SNAPSHOT + 6.5.84 ../parent/pom.xml diff --git a/sor-client/pom.xml b/sor-client/pom.xml index 055ba281aa..429d87d12b 100644 --- a/sor-client/pom.xml +++ b/sor-client/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.84-SNAPSHOT + 6.5.84 ../parent/pom.xml diff --git a/sor/pom.xml b/sor/pom.xml index 02f2f88253..41d1001eda 100644 --- a/sor/pom.xml +++ b/sor/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.84-SNAPSHOT + 6.5.84 ../parent/pom.xml diff --git a/table/pom.xml b/table/pom.xml index 9c42dfd21e..1429985d03 100644 --- a/table/pom.xml +++ b/table/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.84-SNAPSHOT + 6.5.84 ../parent/pom.xml diff --git a/uac-api/pom.xml b/uac-api/pom.xml index 7966663fe0..5d53c836d0 100644 --- a/uac-api/pom.xml +++ b/uac-api/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.84-SNAPSHOT + 6.5.84 ../parent/pom.xml diff --git a/uac-client-jersey2/pom.xml b/uac-client-jersey2/pom.xml index 162b42c53f..167b17f2fb 100644 --- a/uac-client-jersey2/pom.xml +++ b/uac-client-jersey2/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.84-SNAPSHOT + 6.5.84 ../parent/pom.xml diff --git a/uac-client/pom.xml b/uac-client/pom.xml index 150342fd8d..868d6098e2 100644 --- a/uac-client/pom.xml +++ b/uac-client/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.84-SNAPSHOT + 6.5.84 ../parent/pom.xml diff --git a/web-local/pom.xml b/web-local/pom.xml index d138a96e92..ea15a9b63b 100644 --- a/web-local/pom.xml +++ b/web-local/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.84-SNAPSHOT + 6.5.84 ../parent/pom.xml diff --git a/web/pom.xml b/web/pom.xml index da40da5193..4e63e8c5d0 100644 --- a/web/pom.xml +++ b/web/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.84-SNAPSHOT + 6.5.84 ../parent/pom.xml diff --git a/yum/pom.xml b/yum/pom.xml index e55f289e73..dc19ab108c 100644 --- a/yum/pom.xml +++ b/yum/pom.xml @@ -4,7 +4,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.84-SNAPSHOT + 6.5.84 ../parent/pom.xml From 8c2a03a2fc2d6f2f70f7b7bded9ec6576c628b0f Mon Sep 17 00:00:00 2001 From: Prakhar Gupta Date: Mon, 4 Mar 2024 16:37:03 +0530 Subject: [PATCH 09/15] Revert "branch admin -prepare release emodb-6.5.84" This reverts commit f4e91f603995bcce3ac04e4c7a9e1ecefefbc377. --- auth/auth-client/pom.xml | 2 +- auth/auth-core/pom.xml | 2 +- auth/auth-store/pom.xml | 2 +- auth/auth-util/pom.xml | 2 +- blob-api/pom.xml | 2 +- blob-clients/blob-client-common/pom.xml | 2 +- blob-clients/blob-client-jersey2/pom.xml | 2 +- blob-clients/blob-client/pom.xml | 2 +- blob/pom.xml | 2 +- cachemgr/pom.xml | 2 +- common/api/pom.xml | 2 +- common/astyanax/pom.xml | 2 +- common/client-jax-rs-2/pom.xml | 2 +- common/client-jersey2/pom.xml | 2 +- common/client/pom.xml | 2 +- common/dropwizard/pom.xml | 2 +- common/jersey-client/pom.xml | 2 +- common/json/pom.xml | 2 +- common/stash/pom.xml | 2 +- common/uuid/pom.xml | 2 +- common/zookeeper/pom.xml | 2 +- databus-api/pom.xml | 2 +- databus-client-common/pom.xml | 2 +- databus-client-jersey2/pom.xml | 2 +- databus-client/pom.xml | 2 +- databus/pom.xml | 2 +- datacenter/pom.xml | 2 +- event/pom.xml | 2 +- job-api/pom.xml | 2 +- job/pom.xml | 2 +- kafka/pom.xml | 2 +- megabus/pom.xml | 2 +- parent/pom.xml | 4 ++-- plugins/pom.xml | 2 +- pom.xml | 4 ++-- quality/integration/pom.xml | 2 +- quality/pom.xml | 2 +- queue-api/pom.xml | 2 +- queue-client-common/pom.xml | 2 +- queue-client-jersey2/pom.xml | 2 +- queue-client/pom.xml | 2 +- queue/pom.xml | 2 +- sdk/pom.xml | 2 +- sor-api/pom.xml | 2 +- sor-client-common/pom.xml | 2 +- sor-client-jersey2/pom.xml | 2 +- sor-client/pom.xml | 2 +- sor/pom.xml | 2 +- table/pom.xml | 2 +- uac-api/pom.xml | 2 +- uac-client-jersey2/pom.xml | 2 +- uac-client/pom.xml | 2 +- web-local/pom.xml | 2 +- web/pom.xml | 2 +- yum/pom.xml | 2 +- 55 files changed, 57 insertions(+), 57 deletions(-) diff --git a/auth/auth-client/pom.xml b/auth/auth-client/pom.xml index 9738113f10..9d344949af 100644 --- a/auth/auth-client/pom.xml +++ b/auth/auth-client/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.84 + 6.5.84-SNAPSHOT ../../parent/pom.xml diff --git a/auth/auth-core/pom.xml b/auth/auth-core/pom.xml index 99b706d0aa..972794bb5a 100644 --- a/auth/auth-core/pom.xml +++ b/auth/auth-core/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.84 + 6.5.84-SNAPSHOT ../../parent/pom.xml diff --git a/auth/auth-store/pom.xml b/auth/auth-store/pom.xml index 4e1649c239..7fa3cd8711 100644 --- a/auth/auth-store/pom.xml +++ b/auth/auth-store/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.84 + 6.5.84-SNAPSHOT ../../parent/pom.xml diff --git a/auth/auth-util/pom.xml b/auth/auth-util/pom.xml index 0ed6cef63e..c12051a550 100644 --- a/auth/auth-util/pom.xml +++ b/auth/auth-util/pom.xml @@ -3,7 +3,7 @@ emodb com.bazaarvoice.emodb - 6.5.84 + 6.5.84-SNAPSHOT ../../pom.xml 4.0.0 diff --git a/blob-api/pom.xml b/blob-api/pom.xml index 2c67b37be9..39c25ee68c 100644 --- a/blob-api/pom.xml +++ b/blob-api/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.84 + 6.5.84-SNAPSHOT ../parent/pom.xml diff --git a/blob-clients/blob-client-common/pom.xml b/blob-clients/blob-client-common/pom.xml index 6e50fe5c8f..fee2cff963 100644 --- a/blob-clients/blob-client-common/pom.xml +++ b/blob-clients/blob-client-common/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.84 + 6.5.84-SNAPSHOT ../../parent/pom.xml diff --git a/blob-clients/blob-client-jersey2/pom.xml b/blob-clients/blob-client-jersey2/pom.xml index 50515f4be9..90b4f93c2a 100644 --- a/blob-clients/blob-client-jersey2/pom.xml +++ b/blob-clients/blob-client-jersey2/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.84 + 6.5.84-SNAPSHOT ../../parent/pom.xml diff --git a/blob-clients/blob-client/pom.xml b/blob-clients/blob-client/pom.xml index 3e34b56155..05c432d583 100644 --- a/blob-clients/blob-client/pom.xml +++ b/blob-clients/blob-client/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.84 + 6.5.84-SNAPSHOT ../../parent/pom.xml diff --git a/blob/pom.xml b/blob/pom.xml index b738dcedcd..e32cd25908 100644 --- a/blob/pom.xml +++ b/blob/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.84 + 6.5.84-SNAPSHOT ../parent/pom.xml diff --git a/cachemgr/pom.xml b/cachemgr/pom.xml index d84335865f..722d465930 100644 --- a/cachemgr/pom.xml +++ b/cachemgr/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.84 + 6.5.84-SNAPSHOT ../parent/pom.xml diff --git a/common/api/pom.xml b/common/api/pom.xml index 5a8372b42c..8927e09c84 100644 --- a/common/api/pom.xml +++ b/common/api/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.84 + 6.5.84-SNAPSHOT ../../parent/pom.xml diff --git a/common/astyanax/pom.xml b/common/astyanax/pom.xml index 27931a342c..781d7d0f2c 100644 --- a/common/astyanax/pom.xml +++ b/common/astyanax/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.84 + 6.5.84-SNAPSHOT ../../parent/pom.xml diff --git a/common/client-jax-rs-2/pom.xml b/common/client-jax-rs-2/pom.xml index edb8a755a5..84c3e1d04e 100644 --- a/common/client-jax-rs-2/pom.xml +++ b/common/client-jax-rs-2/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.84 + 6.5.84-SNAPSHOT ../../parent/pom.xml diff --git a/common/client-jersey2/pom.xml b/common/client-jersey2/pom.xml index 8d116dc137..b9758d2007 100644 --- a/common/client-jersey2/pom.xml +++ b/common/client-jersey2/pom.xml @@ -5,7 +5,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.84 + 6.5.84-SNAPSHOT ../../parent/pom.xml diff --git a/common/client/pom.xml b/common/client/pom.xml index 32410ab92a..6041ba40c9 100644 --- a/common/client/pom.xml +++ b/common/client/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.84 + 6.5.84-SNAPSHOT ../../parent/pom.xml diff --git a/common/dropwizard/pom.xml b/common/dropwizard/pom.xml index 97064b4aa5..e92da97102 100644 --- a/common/dropwizard/pom.xml +++ b/common/dropwizard/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.84 + 6.5.84-SNAPSHOT ../../parent/pom.xml diff --git a/common/jersey-client/pom.xml b/common/jersey-client/pom.xml index 27953c95ab..edfa323779 100644 --- a/common/jersey-client/pom.xml +++ b/common/jersey-client/pom.xml @@ -5,7 +5,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.84 + 6.5.84-SNAPSHOT ../../parent/pom.xml diff --git a/common/json/pom.xml b/common/json/pom.xml index c9ca80edb2..102dcd1742 100644 --- a/common/json/pom.xml +++ b/common/json/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.84 + 6.5.84-SNAPSHOT ../../parent/pom.xml diff --git a/common/stash/pom.xml b/common/stash/pom.xml index d71fb596e7..423702b54e 100644 --- a/common/stash/pom.xml +++ b/common/stash/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.84 + 6.5.84-SNAPSHOT ../../parent/pom.xml diff --git a/common/uuid/pom.xml b/common/uuid/pom.xml index a596d54d4d..69ea6a7a8d 100644 --- a/common/uuid/pom.xml +++ b/common/uuid/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.84 + 6.5.84-SNAPSHOT ../../parent/pom.xml diff --git a/common/zookeeper/pom.xml b/common/zookeeper/pom.xml index 44b8bceb1e..947858b8ba 100644 --- a/common/zookeeper/pom.xml +++ b/common/zookeeper/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.84 + 6.5.84-SNAPSHOT ../../parent/pom.xml diff --git a/databus-api/pom.xml b/databus-api/pom.xml index 2150a167ac..8b46311066 100644 --- a/databus-api/pom.xml +++ b/databus-api/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.84 + 6.5.84-SNAPSHOT ../parent/pom.xml diff --git a/databus-client-common/pom.xml b/databus-client-common/pom.xml index abea8c4d02..a7b8f650fc 100644 --- a/databus-client-common/pom.xml +++ b/databus-client-common/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.84 + 6.5.84-SNAPSHOT ../parent/pom.xml diff --git a/databus-client-jersey2/pom.xml b/databus-client-jersey2/pom.xml index 7ce6610765..7a796058f7 100644 --- a/databus-client-jersey2/pom.xml +++ b/databus-client-jersey2/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.84 + 6.5.84-SNAPSHOT ../parent/pom.xml diff --git a/databus-client/pom.xml b/databus-client/pom.xml index 87b540812e..a8e60d6db0 100644 --- a/databus-client/pom.xml +++ b/databus-client/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.84 + 6.5.84-SNAPSHOT ../parent/pom.xml diff --git a/databus/pom.xml b/databus/pom.xml index 40614a4167..c5cd4679d2 100644 --- a/databus/pom.xml +++ b/databus/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.84 + 6.5.84-SNAPSHOT ../parent/pom.xml diff --git a/datacenter/pom.xml b/datacenter/pom.xml index c993c71bbb..46aea96877 100644 --- a/datacenter/pom.xml +++ b/datacenter/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.84 + 6.5.84-SNAPSHOT ../parent/pom.xml diff --git a/event/pom.xml b/event/pom.xml index d2df675fe2..ae4d8c1e5e 100644 --- a/event/pom.xml +++ b/event/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.84 + 6.5.84-SNAPSHOT ../parent/pom.xml diff --git a/job-api/pom.xml b/job-api/pom.xml index 3cb4aad405..624418cbb5 100644 --- a/job-api/pom.xml +++ b/job-api/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.84 + 6.5.84-SNAPSHOT ../parent/pom.xml diff --git a/job/pom.xml b/job/pom.xml index d31998ebe2..b76cb2d6a0 100644 --- a/job/pom.xml +++ b/job/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.84 + 6.5.84-SNAPSHOT ../parent/pom.xml diff --git a/kafka/pom.xml b/kafka/pom.xml index c03fdb5539..f7f926ee8c 100644 --- a/kafka/pom.xml +++ b/kafka/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.84 + 6.5.84-SNAPSHOT ../parent/pom.xml diff --git a/megabus/pom.xml b/megabus/pom.xml index 2dba06c476..1253206701 100644 --- a/megabus/pom.xml +++ b/megabus/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.84 + 6.5.84-SNAPSHOT ../parent/pom.xml diff --git a/parent/pom.xml b/parent/pom.xml index 1620ae66ef..b4c674dffc 100644 --- a/parent/pom.xml +++ b/parent/pom.xml @@ -11,7 +11,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.84 + 6.5.84-SNAPSHOT pom EmoDB Parent @@ -20,7 +20,7 @@ scm:git:git@github.com:bazaarvoice/emodb.git scm:git:git@github.com:bazaarvoice/emodb.git scm:git:git@github.com:bazaarvoice/emodb.git - emodb-6.5.84 + emodb-6.5.70 diff --git a/plugins/pom.xml b/plugins/pom.xml index d027e86d1b..b914be9fdb 100644 --- a/plugins/pom.xml +++ b/plugins/pom.xml @@ -4,7 +4,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.84 + 6.5.84-SNAPSHOT ../parent/pom.xml diff --git a/pom.xml b/pom.xml index 20658c2838..c1050fb0f4 100644 --- a/pom.xml +++ b/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.84 + 6.5.84-SNAPSHOT parent/pom.xml @@ -18,7 +18,7 @@ scm:git:git@github.com:bazaarvoice/emodb.git scm:git:git@github.com:bazaarvoice/emodb.git scm:git:git@github.com:bazaarvoice/emodb.git - emodb-6.5.84 + emodb-6.5.70 diff --git a/quality/integration/pom.xml b/quality/integration/pom.xml index 1d80de351c..0e9eafad60 100644 --- a/quality/integration/pom.xml +++ b/quality/integration/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.84 + 6.5.84-SNAPSHOT ../../parent/pom.xml diff --git a/quality/pom.xml b/quality/pom.xml index 150aa80f09..e19239288d 100644 --- a/quality/pom.xml +++ b/quality/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.84 + 6.5.84-SNAPSHOT ../parent/pom.xml diff --git a/queue-api/pom.xml b/queue-api/pom.xml index a45657b3e9..a81ddec761 100644 --- a/queue-api/pom.xml +++ b/queue-api/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.84 + 6.5.84-SNAPSHOT ../parent/pom.xml diff --git a/queue-client-common/pom.xml b/queue-client-common/pom.xml index c5feb41e5e..948e7d669b 100644 --- a/queue-client-common/pom.xml +++ b/queue-client-common/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.84 + 6.5.84-SNAPSHOT ../parent/pom.xml diff --git a/queue-client-jersey2/pom.xml b/queue-client-jersey2/pom.xml index 900f316ad8..b13c146570 100644 --- a/queue-client-jersey2/pom.xml +++ b/queue-client-jersey2/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.84 + 6.5.84-SNAPSHOT ../parent/pom.xml diff --git a/queue-client/pom.xml b/queue-client/pom.xml index 108435e96c..a11aa8d7b4 100644 --- a/queue-client/pom.xml +++ b/queue-client/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.84 + 6.5.84-SNAPSHOT ../parent/pom.xml diff --git a/queue/pom.xml b/queue/pom.xml index c7d3f22e12..95e7d27a3d 100644 --- a/queue/pom.xml +++ b/queue/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.84 + 6.5.84-SNAPSHOT ../parent/pom.xml diff --git a/sdk/pom.xml b/sdk/pom.xml index dd3f0d5ea4..436d0e627d 100644 --- a/sdk/pom.xml +++ b/sdk/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.84 + 6.5.84-SNAPSHOT ../parent/pom.xml diff --git a/sor-api/pom.xml b/sor-api/pom.xml index d32aca24bf..e805413fcb 100644 --- a/sor-api/pom.xml +++ b/sor-api/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.84 + 6.5.84-SNAPSHOT ../parent/pom.xml diff --git a/sor-client-common/pom.xml b/sor-client-common/pom.xml index d1e41fcaf5..c1d910f199 100644 --- a/sor-client-common/pom.xml +++ b/sor-client-common/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.84 + 6.5.84-SNAPSHOT ../parent/pom.xml diff --git a/sor-client-jersey2/pom.xml b/sor-client-jersey2/pom.xml index 2271281b41..79c34b245e 100644 --- a/sor-client-jersey2/pom.xml +++ b/sor-client-jersey2/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.84 + 6.5.84-SNAPSHOT ../parent/pom.xml diff --git a/sor-client/pom.xml b/sor-client/pom.xml index 429d87d12b..055ba281aa 100644 --- a/sor-client/pom.xml +++ b/sor-client/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.84 + 6.5.84-SNAPSHOT ../parent/pom.xml diff --git a/sor/pom.xml b/sor/pom.xml index 41d1001eda..02f2f88253 100644 --- a/sor/pom.xml +++ b/sor/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.84 + 6.5.84-SNAPSHOT ../parent/pom.xml diff --git a/table/pom.xml b/table/pom.xml index 1429985d03..9c42dfd21e 100644 --- a/table/pom.xml +++ b/table/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.84 + 6.5.84-SNAPSHOT ../parent/pom.xml diff --git a/uac-api/pom.xml b/uac-api/pom.xml index 5d53c836d0..7966663fe0 100644 --- a/uac-api/pom.xml +++ b/uac-api/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.84 + 6.5.84-SNAPSHOT ../parent/pom.xml diff --git a/uac-client-jersey2/pom.xml b/uac-client-jersey2/pom.xml index 167b17f2fb..162b42c53f 100644 --- a/uac-client-jersey2/pom.xml +++ b/uac-client-jersey2/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.84 + 6.5.84-SNAPSHOT ../parent/pom.xml diff --git a/uac-client/pom.xml b/uac-client/pom.xml index 868d6098e2..150342fd8d 100644 --- a/uac-client/pom.xml +++ b/uac-client/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.84 + 6.5.84-SNAPSHOT ../parent/pom.xml diff --git a/web-local/pom.xml b/web-local/pom.xml index ea15a9b63b..d138a96e92 100644 --- a/web-local/pom.xml +++ b/web-local/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.84 + 6.5.84-SNAPSHOT ../parent/pom.xml diff --git a/web/pom.xml b/web/pom.xml index 4e63e8c5d0..da40da5193 100644 --- a/web/pom.xml +++ b/web/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.84 + 6.5.84-SNAPSHOT ../parent/pom.xml diff --git a/yum/pom.xml b/yum/pom.xml index dc19ab108c..e55f289e73 100644 --- a/yum/pom.xml +++ b/yum/pom.xml @@ -4,7 +4,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.84 + 6.5.84-SNAPSHOT ../parent/pom.xml From e1b123c5ed457d19ca096f01400885dee7670602 Mon Sep 17 00:00:00 2001 From: jenkins Date: Mon, 4 Mar 2024 11:13:41 +0000 Subject: [PATCH 10/15] branch admin -prepare release emodb-6.5.84 --- auth/auth-client/pom.xml | 2 +- auth/auth-core/pom.xml | 2 +- auth/auth-store/pom.xml | 2 +- auth/auth-util/pom.xml | 2 +- blob-api/pom.xml | 2 +- blob-clients/blob-client-common/pom.xml | 2 +- blob-clients/blob-client-jersey2/pom.xml | 2 +- blob-clients/blob-client/pom.xml | 2 +- blob/pom.xml | 2 +- cachemgr/pom.xml | 2 +- common/api/pom.xml | 2 +- common/astyanax/pom.xml | 2 +- common/client-jax-rs-2/pom.xml | 2 +- common/client-jersey2/pom.xml | 2 +- common/client/pom.xml | 2 +- common/dropwizard/pom.xml | 2 +- common/jersey-client/pom.xml | 2 +- common/json/pom.xml | 2 +- common/stash/pom.xml | 2 +- common/uuid/pom.xml | 2 +- common/zookeeper/pom.xml | 2 +- databus-api/pom.xml | 2 +- databus-client-common/pom.xml | 2 +- databus-client-jersey2/pom.xml | 2 +- databus-client/pom.xml | 2 +- databus/pom.xml | 2 +- datacenter/pom.xml | 2 +- event/pom.xml | 2 +- job-api/pom.xml | 2 +- job/pom.xml | 2 +- kafka/pom.xml | 2 +- megabus/pom.xml | 2 +- parent/pom.xml | 4 ++-- plugins/pom.xml | 2 +- pom.xml | 4 ++-- quality/integration/pom.xml | 2 +- quality/pom.xml | 2 +- queue-api/pom.xml | 2 +- queue-client-common/pom.xml | 2 +- queue-client-jersey2/pom.xml | 2 +- queue-client/pom.xml | 2 +- queue/pom.xml | 2 +- sdk/pom.xml | 2 +- sor-api/pom.xml | 2 +- sor-client-common/pom.xml | 2 +- sor-client-jersey2/pom.xml | 2 +- sor-client/pom.xml | 2 +- sor/pom.xml | 2 +- table/pom.xml | 2 +- uac-api/pom.xml | 2 +- uac-client-jersey2/pom.xml | 2 +- uac-client/pom.xml | 2 +- web-local/pom.xml | 2 +- web/pom.xml | 2 +- yum/pom.xml | 2 +- 55 files changed, 57 insertions(+), 57 deletions(-) diff --git a/auth/auth-client/pom.xml b/auth/auth-client/pom.xml index 9d344949af..9738113f10 100644 --- a/auth/auth-client/pom.xml +++ b/auth/auth-client/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.84-SNAPSHOT + 6.5.84 ../../parent/pom.xml diff --git a/auth/auth-core/pom.xml b/auth/auth-core/pom.xml index 972794bb5a..99b706d0aa 100644 --- a/auth/auth-core/pom.xml +++ b/auth/auth-core/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.84-SNAPSHOT + 6.5.84 ../../parent/pom.xml diff --git a/auth/auth-store/pom.xml b/auth/auth-store/pom.xml index 7fa3cd8711..4e1649c239 100644 --- a/auth/auth-store/pom.xml +++ b/auth/auth-store/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.84-SNAPSHOT + 6.5.84 ../../parent/pom.xml diff --git a/auth/auth-util/pom.xml b/auth/auth-util/pom.xml index c12051a550..0ed6cef63e 100644 --- a/auth/auth-util/pom.xml +++ b/auth/auth-util/pom.xml @@ -3,7 +3,7 @@ emodb com.bazaarvoice.emodb - 6.5.84-SNAPSHOT + 6.5.84 ../../pom.xml 4.0.0 diff --git a/blob-api/pom.xml b/blob-api/pom.xml index 39c25ee68c..2c67b37be9 100644 --- a/blob-api/pom.xml +++ b/blob-api/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.84-SNAPSHOT + 6.5.84 ../parent/pom.xml diff --git a/blob-clients/blob-client-common/pom.xml b/blob-clients/blob-client-common/pom.xml index fee2cff963..6e50fe5c8f 100644 --- a/blob-clients/blob-client-common/pom.xml +++ b/blob-clients/blob-client-common/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.84-SNAPSHOT + 6.5.84 ../../parent/pom.xml diff --git a/blob-clients/blob-client-jersey2/pom.xml b/blob-clients/blob-client-jersey2/pom.xml index 90b4f93c2a..50515f4be9 100644 --- a/blob-clients/blob-client-jersey2/pom.xml +++ b/blob-clients/blob-client-jersey2/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.84-SNAPSHOT + 6.5.84 ../../parent/pom.xml diff --git a/blob-clients/blob-client/pom.xml b/blob-clients/blob-client/pom.xml index 05c432d583..3e34b56155 100644 --- a/blob-clients/blob-client/pom.xml +++ b/blob-clients/blob-client/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.84-SNAPSHOT + 6.5.84 ../../parent/pom.xml diff --git a/blob/pom.xml b/blob/pom.xml index e32cd25908..b738dcedcd 100644 --- a/blob/pom.xml +++ b/blob/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.84-SNAPSHOT + 6.5.84 ../parent/pom.xml diff --git a/cachemgr/pom.xml b/cachemgr/pom.xml index 722d465930..d84335865f 100644 --- a/cachemgr/pom.xml +++ b/cachemgr/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.84-SNAPSHOT + 6.5.84 ../parent/pom.xml diff --git a/common/api/pom.xml b/common/api/pom.xml index 8927e09c84..5a8372b42c 100644 --- a/common/api/pom.xml +++ b/common/api/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.84-SNAPSHOT + 6.5.84 ../../parent/pom.xml diff --git a/common/astyanax/pom.xml b/common/astyanax/pom.xml index 781d7d0f2c..27931a342c 100644 --- a/common/astyanax/pom.xml +++ b/common/astyanax/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.84-SNAPSHOT + 6.5.84 ../../parent/pom.xml diff --git a/common/client-jax-rs-2/pom.xml b/common/client-jax-rs-2/pom.xml index 84c3e1d04e..edb8a755a5 100644 --- a/common/client-jax-rs-2/pom.xml +++ b/common/client-jax-rs-2/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.84-SNAPSHOT + 6.5.84 ../../parent/pom.xml diff --git a/common/client-jersey2/pom.xml b/common/client-jersey2/pom.xml index b9758d2007..8d116dc137 100644 --- a/common/client-jersey2/pom.xml +++ b/common/client-jersey2/pom.xml @@ -5,7 +5,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.84-SNAPSHOT + 6.5.84 ../../parent/pom.xml diff --git a/common/client/pom.xml b/common/client/pom.xml index 6041ba40c9..32410ab92a 100644 --- a/common/client/pom.xml +++ b/common/client/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.84-SNAPSHOT + 6.5.84 ../../parent/pom.xml diff --git a/common/dropwizard/pom.xml b/common/dropwizard/pom.xml index e92da97102..97064b4aa5 100644 --- a/common/dropwizard/pom.xml +++ b/common/dropwizard/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.84-SNAPSHOT + 6.5.84 ../../parent/pom.xml diff --git a/common/jersey-client/pom.xml b/common/jersey-client/pom.xml index edfa323779..27953c95ab 100644 --- a/common/jersey-client/pom.xml +++ b/common/jersey-client/pom.xml @@ -5,7 +5,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.84-SNAPSHOT + 6.5.84 ../../parent/pom.xml diff --git a/common/json/pom.xml b/common/json/pom.xml index 102dcd1742..c9ca80edb2 100644 --- a/common/json/pom.xml +++ b/common/json/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.84-SNAPSHOT + 6.5.84 ../../parent/pom.xml diff --git a/common/stash/pom.xml b/common/stash/pom.xml index 423702b54e..d71fb596e7 100644 --- a/common/stash/pom.xml +++ b/common/stash/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.84-SNAPSHOT + 6.5.84 ../../parent/pom.xml diff --git a/common/uuid/pom.xml b/common/uuid/pom.xml index 69ea6a7a8d..a596d54d4d 100644 --- a/common/uuid/pom.xml +++ b/common/uuid/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.84-SNAPSHOT + 6.5.84 ../../parent/pom.xml diff --git a/common/zookeeper/pom.xml b/common/zookeeper/pom.xml index 947858b8ba..44b8bceb1e 100644 --- a/common/zookeeper/pom.xml +++ b/common/zookeeper/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.84-SNAPSHOT + 6.5.84 ../../parent/pom.xml diff --git a/databus-api/pom.xml b/databus-api/pom.xml index 8b46311066..2150a167ac 100644 --- a/databus-api/pom.xml +++ b/databus-api/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.84-SNAPSHOT + 6.5.84 ../parent/pom.xml diff --git a/databus-client-common/pom.xml b/databus-client-common/pom.xml index a7b8f650fc..abea8c4d02 100644 --- a/databus-client-common/pom.xml +++ b/databus-client-common/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.84-SNAPSHOT + 6.5.84 ../parent/pom.xml diff --git a/databus-client-jersey2/pom.xml b/databus-client-jersey2/pom.xml index 7a796058f7..7ce6610765 100644 --- a/databus-client-jersey2/pom.xml +++ b/databus-client-jersey2/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.84-SNAPSHOT + 6.5.84 ../parent/pom.xml diff --git a/databus-client/pom.xml b/databus-client/pom.xml index a8e60d6db0..87b540812e 100644 --- a/databus-client/pom.xml +++ b/databus-client/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.84-SNAPSHOT + 6.5.84 ../parent/pom.xml diff --git a/databus/pom.xml b/databus/pom.xml index c5cd4679d2..40614a4167 100644 --- a/databus/pom.xml +++ b/databus/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.84-SNAPSHOT + 6.5.84 ../parent/pom.xml diff --git a/datacenter/pom.xml b/datacenter/pom.xml index 46aea96877..c993c71bbb 100644 --- a/datacenter/pom.xml +++ b/datacenter/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.84-SNAPSHOT + 6.5.84 ../parent/pom.xml diff --git a/event/pom.xml b/event/pom.xml index ae4d8c1e5e..d2df675fe2 100644 --- a/event/pom.xml +++ b/event/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.84-SNAPSHOT + 6.5.84 ../parent/pom.xml diff --git a/job-api/pom.xml b/job-api/pom.xml index 624418cbb5..3cb4aad405 100644 --- a/job-api/pom.xml +++ b/job-api/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.84-SNAPSHOT + 6.5.84 ../parent/pom.xml diff --git a/job/pom.xml b/job/pom.xml index b76cb2d6a0..d31998ebe2 100644 --- a/job/pom.xml +++ b/job/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.84-SNAPSHOT + 6.5.84 ../parent/pom.xml diff --git a/kafka/pom.xml b/kafka/pom.xml index f7f926ee8c..c03fdb5539 100644 --- a/kafka/pom.xml +++ b/kafka/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.84-SNAPSHOT + 6.5.84 ../parent/pom.xml diff --git a/megabus/pom.xml b/megabus/pom.xml index 1253206701..2dba06c476 100644 --- a/megabus/pom.xml +++ b/megabus/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.84-SNAPSHOT + 6.5.84 ../parent/pom.xml diff --git a/parent/pom.xml b/parent/pom.xml index b4c674dffc..1620ae66ef 100644 --- a/parent/pom.xml +++ b/parent/pom.xml @@ -11,7 +11,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.84-SNAPSHOT + 6.5.84 pom EmoDB Parent @@ -20,7 +20,7 @@ scm:git:git@github.com:bazaarvoice/emodb.git scm:git:git@github.com:bazaarvoice/emodb.git scm:git:git@github.com:bazaarvoice/emodb.git - emodb-6.5.70 + emodb-6.5.84 diff --git a/plugins/pom.xml b/plugins/pom.xml index b914be9fdb..d027e86d1b 100644 --- a/plugins/pom.xml +++ b/plugins/pom.xml @@ -4,7 +4,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.84-SNAPSHOT + 6.5.84 ../parent/pom.xml diff --git a/pom.xml b/pom.xml index c1050fb0f4..20658c2838 100644 --- a/pom.xml +++ b/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.84-SNAPSHOT + 6.5.84 parent/pom.xml @@ -18,7 +18,7 @@ scm:git:git@github.com:bazaarvoice/emodb.git scm:git:git@github.com:bazaarvoice/emodb.git scm:git:git@github.com:bazaarvoice/emodb.git - emodb-6.5.70 + emodb-6.5.84 diff --git a/quality/integration/pom.xml b/quality/integration/pom.xml index 0e9eafad60..1d80de351c 100644 --- a/quality/integration/pom.xml +++ b/quality/integration/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.84-SNAPSHOT + 6.5.84 ../../parent/pom.xml diff --git a/quality/pom.xml b/quality/pom.xml index e19239288d..150aa80f09 100644 --- a/quality/pom.xml +++ b/quality/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.84-SNAPSHOT + 6.5.84 ../parent/pom.xml diff --git a/queue-api/pom.xml b/queue-api/pom.xml index a81ddec761..a45657b3e9 100644 --- a/queue-api/pom.xml +++ b/queue-api/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.84-SNAPSHOT + 6.5.84 ../parent/pom.xml diff --git a/queue-client-common/pom.xml b/queue-client-common/pom.xml index 948e7d669b..c5feb41e5e 100644 --- a/queue-client-common/pom.xml +++ b/queue-client-common/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.84-SNAPSHOT + 6.5.84 ../parent/pom.xml diff --git a/queue-client-jersey2/pom.xml b/queue-client-jersey2/pom.xml index b13c146570..900f316ad8 100644 --- a/queue-client-jersey2/pom.xml +++ b/queue-client-jersey2/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.84-SNAPSHOT + 6.5.84 ../parent/pom.xml diff --git a/queue-client/pom.xml b/queue-client/pom.xml index a11aa8d7b4..108435e96c 100644 --- a/queue-client/pom.xml +++ b/queue-client/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.84-SNAPSHOT + 6.5.84 ../parent/pom.xml diff --git a/queue/pom.xml b/queue/pom.xml index 95e7d27a3d..c7d3f22e12 100644 --- a/queue/pom.xml +++ b/queue/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.84-SNAPSHOT + 6.5.84 ../parent/pom.xml diff --git a/sdk/pom.xml b/sdk/pom.xml index 436d0e627d..dd3f0d5ea4 100644 --- a/sdk/pom.xml +++ b/sdk/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.84-SNAPSHOT + 6.5.84 ../parent/pom.xml diff --git a/sor-api/pom.xml b/sor-api/pom.xml index e805413fcb..d32aca24bf 100644 --- a/sor-api/pom.xml +++ b/sor-api/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.84-SNAPSHOT + 6.5.84 ../parent/pom.xml diff --git a/sor-client-common/pom.xml b/sor-client-common/pom.xml index c1d910f199..d1e41fcaf5 100644 --- a/sor-client-common/pom.xml +++ b/sor-client-common/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.84-SNAPSHOT + 6.5.84 ../parent/pom.xml diff --git a/sor-client-jersey2/pom.xml b/sor-client-jersey2/pom.xml index 79c34b245e..2271281b41 100644 --- a/sor-client-jersey2/pom.xml +++ b/sor-client-jersey2/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.84-SNAPSHOT + 6.5.84 ../parent/pom.xml diff --git a/sor-client/pom.xml b/sor-client/pom.xml index 055ba281aa..429d87d12b 100644 --- a/sor-client/pom.xml +++ b/sor-client/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.84-SNAPSHOT + 6.5.84 ../parent/pom.xml diff --git a/sor/pom.xml b/sor/pom.xml index 02f2f88253..41d1001eda 100644 --- a/sor/pom.xml +++ b/sor/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.84-SNAPSHOT + 6.5.84 ../parent/pom.xml diff --git a/table/pom.xml b/table/pom.xml index 9c42dfd21e..1429985d03 100644 --- a/table/pom.xml +++ b/table/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.84-SNAPSHOT + 6.5.84 ../parent/pom.xml diff --git a/uac-api/pom.xml b/uac-api/pom.xml index 7966663fe0..5d53c836d0 100644 --- a/uac-api/pom.xml +++ b/uac-api/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.84-SNAPSHOT + 6.5.84 ../parent/pom.xml diff --git a/uac-client-jersey2/pom.xml b/uac-client-jersey2/pom.xml index 162b42c53f..167b17f2fb 100644 --- a/uac-client-jersey2/pom.xml +++ b/uac-client-jersey2/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.84-SNAPSHOT + 6.5.84 ../parent/pom.xml diff --git a/uac-client/pom.xml b/uac-client/pom.xml index 150342fd8d..868d6098e2 100644 --- a/uac-client/pom.xml +++ b/uac-client/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.84-SNAPSHOT + 6.5.84 ../parent/pom.xml diff --git a/web-local/pom.xml b/web-local/pom.xml index d138a96e92..ea15a9b63b 100644 --- a/web-local/pom.xml +++ b/web-local/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.84-SNAPSHOT + 6.5.84 ../parent/pom.xml diff --git a/web/pom.xml b/web/pom.xml index da40da5193..4e63e8c5d0 100644 --- a/web/pom.xml +++ b/web/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.84-SNAPSHOT + 6.5.84 ../parent/pom.xml diff --git a/yum/pom.xml b/yum/pom.xml index e55f289e73..dc19ab108c 100644 --- a/yum/pom.xml +++ b/yum/pom.xml @@ -4,7 +4,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.84-SNAPSHOT + 6.5.84 ../parent/pom.xml From 29b00924d2d8026f3f5182e5a1d39e32f01a7190 Mon Sep 17 00:00:00 2001 From: Prakhar Gupta Date: Tue, 5 Mar 2024 16:22:48 +0530 Subject: [PATCH 11/15] Revert "branch admin -prepare release emodb-6.5.84" This reverts commit e1b123c5ed457d19ca096f01400885dee7670602. --- auth/auth-client/pom.xml | 2 +- auth/auth-core/pom.xml | 2 +- auth/auth-store/pom.xml | 2 +- auth/auth-util/pom.xml | 2 +- blob-api/pom.xml | 2 +- blob-clients/blob-client-common/pom.xml | 2 +- blob-clients/blob-client-jersey2/pom.xml | 2 +- blob-clients/blob-client/pom.xml | 2 +- blob/pom.xml | 2 +- cachemgr/pom.xml | 2 +- common/api/pom.xml | 2 +- common/astyanax/pom.xml | 2 +- common/client-jax-rs-2/pom.xml | 2 +- common/client-jersey2/pom.xml | 2 +- common/client/pom.xml | 2 +- common/dropwizard/pom.xml | 2 +- common/jersey-client/pom.xml | 2 +- common/json/pom.xml | 2 +- common/stash/pom.xml | 2 +- common/uuid/pom.xml | 2 +- common/zookeeper/pom.xml | 2 +- databus-api/pom.xml | 2 +- databus-client-common/pom.xml | 2 +- databus-client-jersey2/pom.xml | 2 +- databus-client/pom.xml | 2 +- databus/pom.xml | 2 +- datacenter/pom.xml | 2 +- event/pom.xml | 2 +- job-api/pom.xml | 2 +- job/pom.xml | 2 +- kafka/pom.xml | 2 +- megabus/pom.xml | 2 +- parent/pom.xml | 4 ++-- plugins/pom.xml | 2 +- pom.xml | 4 ++-- quality/integration/pom.xml | 2 +- quality/pom.xml | 2 +- queue-api/pom.xml | 2 +- queue-client-common/pom.xml | 2 +- queue-client-jersey2/pom.xml | 2 +- queue-client/pom.xml | 2 +- queue/pom.xml | 2 +- sdk/pom.xml | 2 +- sor-api/pom.xml | 2 +- sor-client-common/pom.xml | 2 +- sor-client-jersey2/pom.xml | 2 +- sor-client/pom.xml | 2 +- sor/pom.xml | 2 +- table/pom.xml | 2 +- uac-api/pom.xml | 2 +- uac-client-jersey2/pom.xml | 2 +- uac-client/pom.xml | 2 +- web-local/pom.xml | 2 +- web/pom.xml | 2 +- yum/pom.xml | 2 +- 55 files changed, 57 insertions(+), 57 deletions(-) diff --git a/auth/auth-client/pom.xml b/auth/auth-client/pom.xml index 9738113f10..9d344949af 100644 --- a/auth/auth-client/pom.xml +++ b/auth/auth-client/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.84 + 6.5.84-SNAPSHOT ../../parent/pom.xml diff --git a/auth/auth-core/pom.xml b/auth/auth-core/pom.xml index 99b706d0aa..972794bb5a 100644 --- a/auth/auth-core/pom.xml +++ b/auth/auth-core/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.84 + 6.5.84-SNAPSHOT ../../parent/pom.xml diff --git a/auth/auth-store/pom.xml b/auth/auth-store/pom.xml index 4e1649c239..7fa3cd8711 100644 --- a/auth/auth-store/pom.xml +++ b/auth/auth-store/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.84 + 6.5.84-SNAPSHOT ../../parent/pom.xml diff --git a/auth/auth-util/pom.xml b/auth/auth-util/pom.xml index 0ed6cef63e..c12051a550 100644 --- a/auth/auth-util/pom.xml +++ b/auth/auth-util/pom.xml @@ -3,7 +3,7 @@ emodb com.bazaarvoice.emodb - 6.5.84 + 6.5.84-SNAPSHOT ../../pom.xml 4.0.0 diff --git a/blob-api/pom.xml b/blob-api/pom.xml index 2c67b37be9..39c25ee68c 100644 --- a/blob-api/pom.xml +++ b/blob-api/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.84 + 6.5.84-SNAPSHOT ../parent/pom.xml diff --git a/blob-clients/blob-client-common/pom.xml b/blob-clients/blob-client-common/pom.xml index 6e50fe5c8f..fee2cff963 100644 --- a/blob-clients/blob-client-common/pom.xml +++ b/blob-clients/blob-client-common/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.84 + 6.5.84-SNAPSHOT ../../parent/pom.xml diff --git a/blob-clients/blob-client-jersey2/pom.xml b/blob-clients/blob-client-jersey2/pom.xml index 50515f4be9..90b4f93c2a 100644 --- a/blob-clients/blob-client-jersey2/pom.xml +++ b/blob-clients/blob-client-jersey2/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.84 + 6.5.84-SNAPSHOT ../../parent/pom.xml diff --git a/blob-clients/blob-client/pom.xml b/blob-clients/blob-client/pom.xml index 3e34b56155..05c432d583 100644 --- a/blob-clients/blob-client/pom.xml +++ b/blob-clients/blob-client/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.84 + 6.5.84-SNAPSHOT ../../parent/pom.xml diff --git a/blob/pom.xml b/blob/pom.xml index b738dcedcd..e32cd25908 100644 --- a/blob/pom.xml +++ b/blob/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.84 + 6.5.84-SNAPSHOT ../parent/pom.xml diff --git a/cachemgr/pom.xml b/cachemgr/pom.xml index d84335865f..722d465930 100644 --- a/cachemgr/pom.xml +++ b/cachemgr/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.84 + 6.5.84-SNAPSHOT ../parent/pom.xml diff --git a/common/api/pom.xml b/common/api/pom.xml index 5a8372b42c..8927e09c84 100644 --- a/common/api/pom.xml +++ b/common/api/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.84 + 6.5.84-SNAPSHOT ../../parent/pom.xml diff --git a/common/astyanax/pom.xml b/common/astyanax/pom.xml index 27931a342c..781d7d0f2c 100644 --- a/common/astyanax/pom.xml +++ b/common/astyanax/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.84 + 6.5.84-SNAPSHOT ../../parent/pom.xml diff --git a/common/client-jax-rs-2/pom.xml b/common/client-jax-rs-2/pom.xml index edb8a755a5..84c3e1d04e 100644 --- a/common/client-jax-rs-2/pom.xml +++ b/common/client-jax-rs-2/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.84 + 6.5.84-SNAPSHOT ../../parent/pom.xml diff --git a/common/client-jersey2/pom.xml b/common/client-jersey2/pom.xml index 8d116dc137..b9758d2007 100644 --- a/common/client-jersey2/pom.xml +++ b/common/client-jersey2/pom.xml @@ -5,7 +5,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.84 + 6.5.84-SNAPSHOT ../../parent/pom.xml diff --git a/common/client/pom.xml b/common/client/pom.xml index 32410ab92a..6041ba40c9 100644 --- a/common/client/pom.xml +++ b/common/client/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.84 + 6.5.84-SNAPSHOT ../../parent/pom.xml diff --git a/common/dropwizard/pom.xml b/common/dropwizard/pom.xml index 97064b4aa5..e92da97102 100644 --- a/common/dropwizard/pom.xml +++ b/common/dropwizard/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.84 + 6.5.84-SNAPSHOT ../../parent/pom.xml diff --git a/common/jersey-client/pom.xml b/common/jersey-client/pom.xml index 27953c95ab..edfa323779 100644 --- a/common/jersey-client/pom.xml +++ b/common/jersey-client/pom.xml @@ -5,7 +5,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.84 + 6.5.84-SNAPSHOT ../../parent/pom.xml diff --git a/common/json/pom.xml b/common/json/pom.xml index c9ca80edb2..102dcd1742 100644 --- a/common/json/pom.xml +++ b/common/json/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.84 + 6.5.84-SNAPSHOT ../../parent/pom.xml diff --git a/common/stash/pom.xml b/common/stash/pom.xml index d71fb596e7..423702b54e 100644 --- a/common/stash/pom.xml +++ b/common/stash/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.84 + 6.5.84-SNAPSHOT ../../parent/pom.xml diff --git a/common/uuid/pom.xml b/common/uuid/pom.xml index a596d54d4d..69ea6a7a8d 100644 --- a/common/uuid/pom.xml +++ b/common/uuid/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.84 + 6.5.84-SNAPSHOT ../../parent/pom.xml diff --git a/common/zookeeper/pom.xml b/common/zookeeper/pom.xml index 44b8bceb1e..947858b8ba 100644 --- a/common/zookeeper/pom.xml +++ b/common/zookeeper/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.84 + 6.5.84-SNAPSHOT ../../parent/pom.xml diff --git a/databus-api/pom.xml b/databus-api/pom.xml index 2150a167ac..8b46311066 100644 --- a/databus-api/pom.xml +++ b/databus-api/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.84 + 6.5.84-SNAPSHOT ../parent/pom.xml diff --git a/databus-client-common/pom.xml b/databus-client-common/pom.xml index abea8c4d02..a7b8f650fc 100644 --- a/databus-client-common/pom.xml +++ b/databus-client-common/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.84 + 6.5.84-SNAPSHOT ../parent/pom.xml diff --git a/databus-client-jersey2/pom.xml b/databus-client-jersey2/pom.xml index 7ce6610765..7a796058f7 100644 --- a/databus-client-jersey2/pom.xml +++ b/databus-client-jersey2/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.84 + 6.5.84-SNAPSHOT ../parent/pom.xml diff --git a/databus-client/pom.xml b/databus-client/pom.xml index 87b540812e..a8e60d6db0 100644 --- a/databus-client/pom.xml +++ b/databus-client/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.84 + 6.5.84-SNAPSHOT ../parent/pom.xml diff --git a/databus/pom.xml b/databus/pom.xml index 40614a4167..c5cd4679d2 100644 --- a/databus/pom.xml +++ b/databus/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.84 + 6.5.84-SNAPSHOT ../parent/pom.xml diff --git a/datacenter/pom.xml b/datacenter/pom.xml index c993c71bbb..46aea96877 100644 --- a/datacenter/pom.xml +++ b/datacenter/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.84 + 6.5.84-SNAPSHOT ../parent/pom.xml diff --git a/event/pom.xml b/event/pom.xml index d2df675fe2..ae4d8c1e5e 100644 --- a/event/pom.xml +++ b/event/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.84 + 6.5.84-SNAPSHOT ../parent/pom.xml diff --git a/job-api/pom.xml b/job-api/pom.xml index 3cb4aad405..624418cbb5 100644 --- a/job-api/pom.xml +++ b/job-api/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.84 + 6.5.84-SNAPSHOT ../parent/pom.xml diff --git a/job/pom.xml b/job/pom.xml index d31998ebe2..b76cb2d6a0 100644 --- a/job/pom.xml +++ b/job/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.84 + 6.5.84-SNAPSHOT ../parent/pom.xml diff --git a/kafka/pom.xml b/kafka/pom.xml index c03fdb5539..f7f926ee8c 100644 --- a/kafka/pom.xml +++ b/kafka/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.84 + 6.5.84-SNAPSHOT ../parent/pom.xml diff --git a/megabus/pom.xml b/megabus/pom.xml index 2dba06c476..1253206701 100644 --- a/megabus/pom.xml +++ b/megabus/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.84 + 6.5.84-SNAPSHOT ../parent/pom.xml diff --git a/parent/pom.xml b/parent/pom.xml index 1620ae66ef..b4c674dffc 100644 --- a/parent/pom.xml +++ b/parent/pom.xml @@ -11,7 +11,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.84 + 6.5.84-SNAPSHOT pom EmoDB Parent @@ -20,7 +20,7 @@ scm:git:git@github.com:bazaarvoice/emodb.git scm:git:git@github.com:bazaarvoice/emodb.git scm:git:git@github.com:bazaarvoice/emodb.git - emodb-6.5.84 + emodb-6.5.70 diff --git a/plugins/pom.xml b/plugins/pom.xml index d027e86d1b..b914be9fdb 100644 --- a/plugins/pom.xml +++ b/plugins/pom.xml @@ -4,7 +4,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.84 + 6.5.84-SNAPSHOT ../parent/pom.xml diff --git a/pom.xml b/pom.xml index 20658c2838..c1050fb0f4 100644 --- a/pom.xml +++ b/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.84 + 6.5.84-SNAPSHOT parent/pom.xml @@ -18,7 +18,7 @@ scm:git:git@github.com:bazaarvoice/emodb.git scm:git:git@github.com:bazaarvoice/emodb.git scm:git:git@github.com:bazaarvoice/emodb.git - emodb-6.5.84 + emodb-6.5.70 diff --git a/quality/integration/pom.xml b/quality/integration/pom.xml index 1d80de351c..0e9eafad60 100644 --- a/quality/integration/pom.xml +++ b/quality/integration/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.84 + 6.5.84-SNAPSHOT ../../parent/pom.xml diff --git a/quality/pom.xml b/quality/pom.xml index 150aa80f09..e19239288d 100644 --- a/quality/pom.xml +++ b/quality/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.84 + 6.5.84-SNAPSHOT ../parent/pom.xml diff --git a/queue-api/pom.xml b/queue-api/pom.xml index a45657b3e9..a81ddec761 100644 --- a/queue-api/pom.xml +++ b/queue-api/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.84 + 6.5.84-SNAPSHOT ../parent/pom.xml diff --git a/queue-client-common/pom.xml b/queue-client-common/pom.xml index c5feb41e5e..948e7d669b 100644 --- a/queue-client-common/pom.xml +++ b/queue-client-common/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.84 + 6.5.84-SNAPSHOT ../parent/pom.xml diff --git a/queue-client-jersey2/pom.xml b/queue-client-jersey2/pom.xml index 900f316ad8..b13c146570 100644 --- a/queue-client-jersey2/pom.xml +++ b/queue-client-jersey2/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.84 + 6.5.84-SNAPSHOT ../parent/pom.xml diff --git a/queue-client/pom.xml b/queue-client/pom.xml index 108435e96c..a11aa8d7b4 100644 --- a/queue-client/pom.xml +++ b/queue-client/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.84 + 6.5.84-SNAPSHOT ../parent/pom.xml diff --git a/queue/pom.xml b/queue/pom.xml index c7d3f22e12..95e7d27a3d 100644 --- a/queue/pom.xml +++ b/queue/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.84 + 6.5.84-SNAPSHOT ../parent/pom.xml diff --git a/sdk/pom.xml b/sdk/pom.xml index dd3f0d5ea4..436d0e627d 100644 --- a/sdk/pom.xml +++ b/sdk/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.84 + 6.5.84-SNAPSHOT ../parent/pom.xml diff --git a/sor-api/pom.xml b/sor-api/pom.xml index d32aca24bf..e805413fcb 100644 --- a/sor-api/pom.xml +++ b/sor-api/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.84 + 6.5.84-SNAPSHOT ../parent/pom.xml diff --git a/sor-client-common/pom.xml b/sor-client-common/pom.xml index d1e41fcaf5..c1d910f199 100644 --- a/sor-client-common/pom.xml +++ b/sor-client-common/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.84 + 6.5.84-SNAPSHOT ../parent/pom.xml diff --git a/sor-client-jersey2/pom.xml b/sor-client-jersey2/pom.xml index 2271281b41..79c34b245e 100644 --- a/sor-client-jersey2/pom.xml +++ b/sor-client-jersey2/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.84 + 6.5.84-SNAPSHOT ../parent/pom.xml diff --git a/sor-client/pom.xml b/sor-client/pom.xml index 429d87d12b..055ba281aa 100644 --- a/sor-client/pom.xml +++ b/sor-client/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.84 + 6.5.84-SNAPSHOT ../parent/pom.xml diff --git a/sor/pom.xml b/sor/pom.xml index 41d1001eda..02f2f88253 100644 --- a/sor/pom.xml +++ b/sor/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.84 + 6.5.84-SNAPSHOT ../parent/pom.xml diff --git a/table/pom.xml b/table/pom.xml index 1429985d03..9c42dfd21e 100644 --- a/table/pom.xml +++ b/table/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.84 + 6.5.84-SNAPSHOT ../parent/pom.xml diff --git a/uac-api/pom.xml b/uac-api/pom.xml index 5d53c836d0..7966663fe0 100644 --- a/uac-api/pom.xml +++ b/uac-api/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.84 + 6.5.84-SNAPSHOT ../parent/pom.xml diff --git a/uac-client-jersey2/pom.xml b/uac-client-jersey2/pom.xml index 167b17f2fb..162b42c53f 100644 --- a/uac-client-jersey2/pom.xml +++ b/uac-client-jersey2/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.84 + 6.5.84-SNAPSHOT ../parent/pom.xml diff --git a/uac-client/pom.xml b/uac-client/pom.xml index 868d6098e2..150342fd8d 100644 --- a/uac-client/pom.xml +++ b/uac-client/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.84 + 6.5.84-SNAPSHOT ../parent/pom.xml diff --git a/web-local/pom.xml b/web-local/pom.xml index ea15a9b63b..d138a96e92 100644 --- a/web-local/pom.xml +++ b/web-local/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.84 + 6.5.84-SNAPSHOT ../parent/pom.xml diff --git a/web/pom.xml b/web/pom.xml index 4e63e8c5d0..da40da5193 100644 --- a/web/pom.xml +++ b/web/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.84 + 6.5.84-SNAPSHOT ../parent/pom.xml diff --git a/yum/pom.xml b/yum/pom.xml index dc19ab108c..e55f289e73 100644 --- a/yum/pom.xml +++ b/yum/pom.xml @@ -4,7 +4,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.84 + 6.5.84-SNAPSHOT ../parent/pom.xml From bcfab93f9bf6151cf063035193a0c9008c631c67 Mon Sep 17 00:00:00 2001 From: jenkins Date: Tue, 5 Mar 2024 11:00:06 +0000 Subject: [PATCH 12/15] branch admin -prepare release emodb-6.5.84 --- auth/auth-client/pom.xml | 2 +- auth/auth-core/pom.xml | 2 +- auth/auth-store/pom.xml | 2 +- auth/auth-util/pom.xml | 2 +- blob-api/pom.xml | 2 +- blob-clients/blob-client-common/pom.xml | 2 +- blob-clients/blob-client-jersey2/pom.xml | 2 +- blob-clients/blob-client/pom.xml | 2 +- blob/pom.xml | 2 +- cachemgr/pom.xml | 2 +- common/api/pom.xml | 2 +- common/astyanax/pom.xml | 2 +- common/client-jax-rs-2/pom.xml | 2 +- common/client-jersey2/pom.xml | 2 +- common/client/pom.xml | 2 +- common/dropwizard/pom.xml | 2 +- common/jersey-client/pom.xml | 2 +- common/json/pom.xml | 2 +- common/stash/pom.xml | 2 +- common/uuid/pom.xml | 2 +- common/zookeeper/pom.xml | 2 +- databus-api/pom.xml | 2 +- databus-client-common/pom.xml | 2 +- databus-client-jersey2/pom.xml | 2 +- databus-client/pom.xml | 2 +- databus/pom.xml | 2 +- datacenter/pom.xml | 2 +- event/pom.xml | 2 +- job-api/pom.xml | 2 +- job/pom.xml | 2 +- kafka/pom.xml | 2 +- megabus/pom.xml | 2 +- parent/pom.xml | 4 ++-- plugins/pom.xml | 2 +- pom.xml | 4 ++-- quality/integration/pom.xml | 2 +- quality/pom.xml | 2 +- queue-api/pom.xml | 2 +- queue-client-common/pom.xml | 2 +- queue-client-jersey2/pom.xml | 2 +- queue-client/pom.xml | 2 +- queue/pom.xml | 2 +- sdk/pom.xml | 2 +- sor-api/pom.xml | 2 +- sor-client-common/pom.xml | 2 +- sor-client-jersey2/pom.xml | 2 +- sor-client/pom.xml | 2 +- sor/pom.xml | 2 +- table/pom.xml | 2 +- uac-api/pom.xml | 2 +- uac-client-jersey2/pom.xml | 2 +- uac-client/pom.xml | 2 +- web-local/pom.xml | 2 +- web/pom.xml | 2 +- yum/pom.xml | 2 +- 55 files changed, 57 insertions(+), 57 deletions(-) diff --git a/auth/auth-client/pom.xml b/auth/auth-client/pom.xml index 9d344949af..9738113f10 100644 --- a/auth/auth-client/pom.xml +++ b/auth/auth-client/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.84-SNAPSHOT + 6.5.84 ../../parent/pom.xml diff --git a/auth/auth-core/pom.xml b/auth/auth-core/pom.xml index 972794bb5a..99b706d0aa 100644 --- a/auth/auth-core/pom.xml +++ b/auth/auth-core/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.84-SNAPSHOT + 6.5.84 ../../parent/pom.xml diff --git a/auth/auth-store/pom.xml b/auth/auth-store/pom.xml index 7fa3cd8711..4e1649c239 100644 --- a/auth/auth-store/pom.xml +++ b/auth/auth-store/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.84-SNAPSHOT + 6.5.84 ../../parent/pom.xml diff --git a/auth/auth-util/pom.xml b/auth/auth-util/pom.xml index c12051a550..0ed6cef63e 100644 --- a/auth/auth-util/pom.xml +++ b/auth/auth-util/pom.xml @@ -3,7 +3,7 @@ emodb com.bazaarvoice.emodb - 6.5.84-SNAPSHOT + 6.5.84 ../../pom.xml 4.0.0 diff --git a/blob-api/pom.xml b/blob-api/pom.xml index 39c25ee68c..2c67b37be9 100644 --- a/blob-api/pom.xml +++ b/blob-api/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.84-SNAPSHOT + 6.5.84 ../parent/pom.xml diff --git a/blob-clients/blob-client-common/pom.xml b/blob-clients/blob-client-common/pom.xml index fee2cff963..6e50fe5c8f 100644 --- a/blob-clients/blob-client-common/pom.xml +++ b/blob-clients/blob-client-common/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.84-SNAPSHOT + 6.5.84 ../../parent/pom.xml diff --git a/blob-clients/blob-client-jersey2/pom.xml b/blob-clients/blob-client-jersey2/pom.xml index 90b4f93c2a..50515f4be9 100644 --- a/blob-clients/blob-client-jersey2/pom.xml +++ b/blob-clients/blob-client-jersey2/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.84-SNAPSHOT + 6.5.84 ../../parent/pom.xml diff --git a/blob-clients/blob-client/pom.xml b/blob-clients/blob-client/pom.xml index 05c432d583..3e34b56155 100644 --- a/blob-clients/blob-client/pom.xml +++ b/blob-clients/blob-client/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.84-SNAPSHOT + 6.5.84 ../../parent/pom.xml diff --git a/blob/pom.xml b/blob/pom.xml index e32cd25908..b738dcedcd 100644 --- a/blob/pom.xml +++ b/blob/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.84-SNAPSHOT + 6.5.84 ../parent/pom.xml diff --git a/cachemgr/pom.xml b/cachemgr/pom.xml index 722d465930..d84335865f 100644 --- a/cachemgr/pom.xml +++ b/cachemgr/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.84-SNAPSHOT + 6.5.84 ../parent/pom.xml diff --git a/common/api/pom.xml b/common/api/pom.xml index 8927e09c84..5a8372b42c 100644 --- a/common/api/pom.xml +++ b/common/api/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.84-SNAPSHOT + 6.5.84 ../../parent/pom.xml diff --git a/common/astyanax/pom.xml b/common/astyanax/pom.xml index 781d7d0f2c..27931a342c 100644 --- a/common/astyanax/pom.xml +++ b/common/astyanax/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.84-SNAPSHOT + 6.5.84 ../../parent/pom.xml diff --git a/common/client-jax-rs-2/pom.xml b/common/client-jax-rs-2/pom.xml index 84c3e1d04e..edb8a755a5 100644 --- a/common/client-jax-rs-2/pom.xml +++ b/common/client-jax-rs-2/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.84-SNAPSHOT + 6.5.84 ../../parent/pom.xml diff --git a/common/client-jersey2/pom.xml b/common/client-jersey2/pom.xml index b9758d2007..8d116dc137 100644 --- a/common/client-jersey2/pom.xml +++ b/common/client-jersey2/pom.xml @@ -5,7 +5,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.84-SNAPSHOT + 6.5.84 ../../parent/pom.xml diff --git a/common/client/pom.xml b/common/client/pom.xml index 6041ba40c9..32410ab92a 100644 --- a/common/client/pom.xml +++ b/common/client/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.84-SNAPSHOT + 6.5.84 ../../parent/pom.xml diff --git a/common/dropwizard/pom.xml b/common/dropwizard/pom.xml index e92da97102..97064b4aa5 100644 --- a/common/dropwizard/pom.xml +++ b/common/dropwizard/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.84-SNAPSHOT + 6.5.84 ../../parent/pom.xml diff --git a/common/jersey-client/pom.xml b/common/jersey-client/pom.xml index edfa323779..27953c95ab 100644 --- a/common/jersey-client/pom.xml +++ b/common/jersey-client/pom.xml @@ -5,7 +5,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.84-SNAPSHOT + 6.5.84 ../../parent/pom.xml diff --git a/common/json/pom.xml b/common/json/pom.xml index 102dcd1742..c9ca80edb2 100644 --- a/common/json/pom.xml +++ b/common/json/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.84-SNAPSHOT + 6.5.84 ../../parent/pom.xml diff --git a/common/stash/pom.xml b/common/stash/pom.xml index 423702b54e..d71fb596e7 100644 --- a/common/stash/pom.xml +++ b/common/stash/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.84-SNAPSHOT + 6.5.84 ../../parent/pom.xml diff --git a/common/uuid/pom.xml b/common/uuid/pom.xml index 69ea6a7a8d..a596d54d4d 100644 --- a/common/uuid/pom.xml +++ b/common/uuid/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.84-SNAPSHOT + 6.5.84 ../../parent/pom.xml diff --git a/common/zookeeper/pom.xml b/common/zookeeper/pom.xml index 947858b8ba..44b8bceb1e 100644 --- a/common/zookeeper/pom.xml +++ b/common/zookeeper/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.84-SNAPSHOT + 6.5.84 ../../parent/pom.xml diff --git a/databus-api/pom.xml b/databus-api/pom.xml index 8b46311066..2150a167ac 100644 --- a/databus-api/pom.xml +++ b/databus-api/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.84-SNAPSHOT + 6.5.84 ../parent/pom.xml diff --git a/databus-client-common/pom.xml b/databus-client-common/pom.xml index a7b8f650fc..abea8c4d02 100644 --- a/databus-client-common/pom.xml +++ b/databus-client-common/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.84-SNAPSHOT + 6.5.84 ../parent/pom.xml diff --git a/databus-client-jersey2/pom.xml b/databus-client-jersey2/pom.xml index 7a796058f7..7ce6610765 100644 --- a/databus-client-jersey2/pom.xml +++ b/databus-client-jersey2/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.84-SNAPSHOT + 6.5.84 ../parent/pom.xml diff --git a/databus-client/pom.xml b/databus-client/pom.xml index a8e60d6db0..87b540812e 100644 --- a/databus-client/pom.xml +++ b/databus-client/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.84-SNAPSHOT + 6.5.84 ../parent/pom.xml diff --git a/databus/pom.xml b/databus/pom.xml index c5cd4679d2..40614a4167 100644 --- a/databus/pom.xml +++ b/databus/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.84-SNAPSHOT + 6.5.84 ../parent/pom.xml diff --git a/datacenter/pom.xml b/datacenter/pom.xml index 46aea96877..c993c71bbb 100644 --- a/datacenter/pom.xml +++ b/datacenter/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.84-SNAPSHOT + 6.5.84 ../parent/pom.xml diff --git a/event/pom.xml b/event/pom.xml index ae4d8c1e5e..d2df675fe2 100644 --- a/event/pom.xml +++ b/event/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.84-SNAPSHOT + 6.5.84 ../parent/pom.xml diff --git a/job-api/pom.xml b/job-api/pom.xml index 624418cbb5..3cb4aad405 100644 --- a/job-api/pom.xml +++ b/job-api/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.84-SNAPSHOT + 6.5.84 ../parent/pom.xml diff --git a/job/pom.xml b/job/pom.xml index b76cb2d6a0..d31998ebe2 100644 --- a/job/pom.xml +++ b/job/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.84-SNAPSHOT + 6.5.84 ../parent/pom.xml diff --git a/kafka/pom.xml b/kafka/pom.xml index f7f926ee8c..c03fdb5539 100644 --- a/kafka/pom.xml +++ b/kafka/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.84-SNAPSHOT + 6.5.84 ../parent/pom.xml diff --git a/megabus/pom.xml b/megabus/pom.xml index 1253206701..2dba06c476 100644 --- a/megabus/pom.xml +++ b/megabus/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.84-SNAPSHOT + 6.5.84 ../parent/pom.xml diff --git a/parent/pom.xml b/parent/pom.xml index b4c674dffc..1620ae66ef 100644 --- a/parent/pom.xml +++ b/parent/pom.xml @@ -11,7 +11,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.84-SNAPSHOT + 6.5.84 pom EmoDB Parent @@ -20,7 +20,7 @@ scm:git:git@github.com:bazaarvoice/emodb.git scm:git:git@github.com:bazaarvoice/emodb.git scm:git:git@github.com:bazaarvoice/emodb.git - emodb-6.5.70 + emodb-6.5.84 diff --git a/plugins/pom.xml b/plugins/pom.xml index b914be9fdb..d027e86d1b 100644 --- a/plugins/pom.xml +++ b/plugins/pom.xml @@ -4,7 +4,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.84-SNAPSHOT + 6.5.84 ../parent/pom.xml diff --git a/pom.xml b/pom.xml index c1050fb0f4..20658c2838 100644 --- a/pom.xml +++ b/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.84-SNAPSHOT + 6.5.84 parent/pom.xml @@ -18,7 +18,7 @@ scm:git:git@github.com:bazaarvoice/emodb.git scm:git:git@github.com:bazaarvoice/emodb.git scm:git:git@github.com:bazaarvoice/emodb.git - emodb-6.5.70 + emodb-6.5.84 diff --git a/quality/integration/pom.xml b/quality/integration/pom.xml index 0e9eafad60..1d80de351c 100644 --- a/quality/integration/pom.xml +++ b/quality/integration/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.84-SNAPSHOT + 6.5.84 ../../parent/pom.xml diff --git a/quality/pom.xml b/quality/pom.xml index e19239288d..150aa80f09 100644 --- a/quality/pom.xml +++ b/quality/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.84-SNAPSHOT + 6.5.84 ../parent/pom.xml diff --git a/queue-api/pom.xml b/queue-api/pom.xml index a81ddec761..a45657b3e9 100644 --- a/queue-api/pom.xml +++ b/queue-api/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.84-SNAPSHOT + 6.5.84 ../parent/pom.xml diff --git a/queue-client-common/pom.xml b/queue-client-common/pom.xml index 948e7d669b..c5feb41e5e 100644 --- a/queue-client-common/pom.xml +++ b/queue-client-common/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.84-SNAPSHOT + 6.5.84 ../parent/pom.xml diff --git a/queue-client-jersey2/pom.xml b/queue-client-jersey2/pom.xml index b13c146570..900f316ad8 100644 --- a/queue-client-jersey2/pom.xml +++ b/queue-client-jersey2/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.84-SNAPSHOT + 6.5.84 ../parent/pom.xml diff --git a/queue-client/pom.xml b/queue-client/pom.xml index a11aa8d7b4..108435e96c 100644 --- a/queue-client/pom.xml +++ b/queue-client/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.84-SNAPSHOT + 6.5.84 ../parent/pom.xml diff --git a/queue/pom.xml b/queue/pom.xml index 95e7d27a3d..c7d3f22e12 100644 --- a/queue/pom.xml +++ b/queue/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.84-SNAPSHOT + 6.5.84 ../parent/pom.xml diff --git a/sdk/pom.xml b/sdk/pom.xml index 436d0e627d..dd3f0d5ea4 100644 --- a/sdk/pom.xml +++ b/sdk/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.84-SNAPSHOT + 6.5.84 ../parent/pom.xml diff --git a/sor-api/pom.xml b/sor-api/pom.xml index e805413fcb..d32aca24bf 100644 --- a/sor-api/pom.xml +++ b/sor-api/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.84-SNAPSHOT + 6.5.84 ../parent/pom.xml diff --git a/sor-client-common/pom.xml b/sor-client-common/pom.xml index c1d910f199..d1e41fcaf5 100644 --- a/sor-client-common/pom.xml +++ b/sor-client-common/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.84-SNAPSHOT + 6.5.84 ../parent/pom.xml diff --git a/sor-client-jersey2/pom.xml b/sor-client-jersey2/pom.xml index 79c34b245e..2271281b41 100644 --- a/sor-client-jersey2/pom.xml +++ b/sor-client-jersey2/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.84-SNAPSHOT + 6.5.84 ../parent/pom.xml diff --git a/sor-client/pom.xml b/sor-client/pom.xml index 055ba281aa..429d87d12b 100644 --- a/sor-client/pom.xml +++ b/sor-client/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.84-SNAPSHOT + 6.5.84 ../parent/pom.xml diff --git a/sor/pom.xml b/sor/pom.xml index 02f2f88253..41d1001eda 100644 --- a/sor/pom.xml +++ b/sor/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.84-SNAPSHOT + 6.5.84 ../parent/pom.xml diff --git a/table/pom.xml b/table/pom.xml index 9c42dfd21e..1429985d03 100644 --- a/table/pom.xml +++ b/table/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.84-SNAPSHOT + 6.5.84 ../parent/pom.xml diff --git a/uac-api/pom.xml b/uac-api/pom.xml index 7966663fe0..5d53c836d0 100644 --- a/uac-api/pom.xml +++ b/uac-api/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.84-SNAPSHOT + 6.5.84 ../parent/pom.xml diff --git a/uac-client-jersey2/pom.xml b/uac-client-jersey2/pom.xml index 162b42c53f..167b17f2fb 100644 --- a/uac-client-jersey2/pom.xml +++ b/uac-client-jersey2/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.84-SNAPSHOT + 6.5.84 ../parent/pom.xml diff --git a/uac-client/pom.xml b/uac-client/pom.xml index 150342fd8d..868d6098e2 100644 --- a/uac-client/pom.xml +++ b/uac-client/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.84-SNAPSHOT + 6.5.84 ../parent/pom.xml diff --git a/web-local/pom.xml b/web-local/pom.xml index d138a96e92..ea15a9b63b 100644 --- a/web-local/pom.xml +++ b/web-local/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.84-SNAPSHOT + 6.5.84 ../parent/pom.xml diff --git a/web/pom.xml b/web/pom.xml index da40da5193..4e63e8c5d0 100644 --- a/web/pom.xml +++ b/web/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.84-SNAPSHOT + 6.5.84 ../parent/pom.xml diff --git a/yum/pom.xml b/yum/pom.xml index e55f289e73..dc19ab108c 100644 --- a/yum/pom.xml +++ b/yum/pom.xml @@ -4,7 +4,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.84-SNAPSHOT + 6.5.84 ../parent/pom.xml From 07d4806b2dedb98077d982d6a334e87fc68b5266 Mon Sep 17 00:00:00 2001 From: Prakhar Gupta Date: Tue, 5 Mar 2024 17:07:44 +0530 Subject: [PATCH 13/15] change the version --- auth/auth-client/pom.xml | 2 +- auth/auth-core/pom.xml | 2 +- auth/auth-store/pom.xml | 2 +- auth/auth-util/pom.xml | 2 +- blob-api/pom.xml | 2 +- blob-clients/blob-client-common/pom.xml | 2 +- blob-clients/blob-client-jersey2/pom.xml | 2 +- blob-clients/blob-client/pom.xml | 2 +- blob/pom.xml | 2 +- cachemgr/pom.xml | 2 +- common/api/pom.xml | 2 +- common/astyanax/pom.xml | 2 +- common/client-jax-rs-2/pom.xml | 2 +- common/client-jersey2/pom.xml | 2 +- common/client/pom.xml | 2 +- common/dropwizard/pom.xml | 2 +- common/jersey-client/pom.xml | 2 +- common/json/pom.xml | 2 +- common/stash/pom.xml | 2 +- common/uuid/pom.xml | 2 +- common/zookeeper/pom.xml | 2 +- databus-api/pom.xml | 2 +- databus-client-common/pom.xml | 2 +- databus-client-jersey2/pom.xml | 2 +- databus-client/pom.xml | 2 +- databus/pom.xml | 2 +- datacenter/pom.xml | 2 +- event/pom.xml | 2 +- job-api/pom.xml | 2 +- job/pom.xml | 2 +- kafka/pom.xml | 2 +- megabus/pom.xml | 2 +- parent/pom.xml | 4 ++-- plugins/pom.xml | 2 +- pom.xml | 4 ++-- quality/integration/pom.xml | 2 +- quality/pom.xml | 2 +- queue-api/pom.xml | 2 +- queue-client-common/pom.xml | 2 +- queue-client-jersey2/pom.xml | 2 +- queue-client/pom.xml | 2 +- queue/pom.xml | 2 +- sdk/pom.xml | 2 +- sor-api/pom.xml | 2 +- sor-client-common/pom.xml | 2 +- sor-client-jersey2/pom.xml | 2 +- sor-client/pom.xml | 2 +- sor/pom.xml | 2 +- table/pom.xml | 2 +- uac-api/pom.xml | 2 +- uac-client-jersey2/pom.xml | 2 +- uac-client/pom.xml | 2 +- web-local/pom.xml | 2 +- web/pom.xml | 2 +- yum/pom.xml | 2 +- 55 files changed, 57 insertions(+), 57 deletions(-) diff --git a/auth/auth-client/pom.xml b/auth/auth-client/pom.xml index 9738113f10..fb95059223 100644 --- a/auth/auth-client/pom.xml +++ b/auth/auth-client/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.84 + 6.5.101-SNAPSHOT ../../parent/pom.xml diff --git a/auth/auth-core/pom.xml b/auth/auth-core/pom.xml index 99b706d0aa..84b0ca7596 100644 --- a/auth/auth-core/pom.xml +++ b/auth/auth-core/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.84 + 6.5.101-SNAPSHOT ../../parent/pom.xml diff --git a/auth/auth-store/pom.xml b/auth/auth-store/pom.xml index 4e1649c239..e11cb00acb 100644 --- a/auth/auth-store/pom.xml +++ b/auth/auth-store/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.84 + 6.5.101-SNAPSHOT ../../parent/pom.xml diff --git a/auth/auth-util/pom.xml b/auth/auth-util/pom.xml index 0ed6cef63e..0245ddcdb6 100644 --- a/auth/auth-util/pom.xml +++ b/auth/auth-util/pom.xml @@ -3,7 +3,7 @@ emodb com.bazaarvoice.emodb - 6.5.84 + 6.5.101-SNAPSHOT ../../pom.xml 4.0.0 diff --git a/blob-api/pom.xml b/blob-api/pom.xml index 2c67b37be9..5dd3aab0c3 100644 --- a/blob-api/pom.xml +++ b/blob-api/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.84 + 6.5.101-SNAPSHOT ../parent/pom.xml diff --git a/blob-clients/blob-client-common/pom.xml b/blob-clients/blob-client-common/pom.xml index 6e50fe5c8f..83cbfcba42 100644 --- a/blob-clients/blob-client-common/pom.xml +++ b/blob-clients/blob-client-common/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.84 + 6.5.101-SNAPSHOT ../../parent/pom.xml diff --git a/blob-clients/blob-client-jersey2/pom.xml b/blob-clients/blob-client-jersey2/pom.xml index 50515f4be9..8a8db41415 100644 --- a/blob-clients/blob-client-jersey2/pom.xml +++ b/blob-clients/blob-client-jersey2/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.84 + 6.5.101-SNAPSHOT ../../parent/pom.xml diff --git a/blob-clients/blob-client/pom.xml b/blob-clients/blob-client/pom.xml index 3e34b56155..f86f6ebe48 100644 --- a/blob-clients/blob-client/pom.xml +++ b/blob-clients/blob-client/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.84 + 6.5.101-SNAPSHOT ../../parent/pom.xml diff --git a/blob/pom.xml b/blob/pom.xml index b738dcedcd..eff8dec6ba 100644 --- a/blob/pom.xml +++ b/blob/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.84 + 6.5.101-SNAPSHOT ../parent/pom.xml diff --git a/cachemgr/pom.xml b/cachemgr/pom.xml index d84335865f..304574f9ac 100644 --- a/cachemgr/pom.xml +++ b/cachemgr/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.84 + 6.5.101-SNAPSHOT ../parent/pom.xml diff --git a/common/api/pom.xml b/common/api/pom.xml index 5a8372b42c..40c570bd5f 100644 --- a/common/api/pom.xml +++ b/common/api/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.84 + 6.5.101-SNAPSHOT ../../parent/pom.xml diff --git a/common/astyanax/pom.xml b/common/astyanax/pom.xml index 27931a342c..ba0dd473a1 100644 --- a/common/astyanax/pom.xml +++ b/common/astyanax/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.84 + 6.5.101-SNAPSHOT ../../parent/pom.xml diff --git a/common/client-jax-rs-2/pom.xml b/common/client-jax-rs-2/pom.xml index edb8a755a5..e81de548dc 100644 --- a/common/client-jax-rs-2/pom.xml +++ b/common/client-jax-rs-2/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.84 + 6.5.101-SNAPSHOT ../../parent/pom.xml diff --git a/common/client-jersey2/pom.xml b/common/client-jersey2/pom.xml index 8d116dc137..01e4b1ab9b 100644 --- a/common/client-jersey2/pom.xml +++ b/common/client-jersey2/pom.xml @@ -5,7 +5,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.84 + 6.5.101-SNAPSHOT ../../parent/pom.xml diff --git a/common/client/pom.xml b/common/client/pom.xml index 32410ab92a..20feb4b7ee 100644 --- a/common/client/pom.xml +++ b/common/client/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.84 + 6.5.101-SNAPSHOT ../../parent/pom.xml diff --git a/common/dropwizard/pom.xml b/common/dropwizard/pom.xml index 97064b4aa5..0b5a1ae0c6 100644 --- a/common/dropwizard/pom.xml +++ b/common/dropwizard/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.84 + 6.5.101-SNAPSHOT ../../parent/pom.xml diff --git a/common/jersey-client/pom.xml b/common/jersey-client/pom.xml index 27953c95ab..968c3b1033 100644 --- a/common/jersey-client/pom.xml +++ b/common/jersey-client/pom.xml @@ -5,7 +5,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.84 + 6.5.101-SNAPSHOT ../../parent/pom.xml diff --git a/common/json/pom.xml b/common/json/pom.xml index c9ca80edb2..f93384600e 100644 --- a/common/json/pom.xml +++ b/common/json/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.84 + 6.5.101-SNAPSHOT ../../parent/pom.xml diff --git a/common/stash/pom.xml b/common/stash/pom.xml index d71fb596e7..69d442f274 100644 --- a/common/stash/pom.xml +++ b/common/stash/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.84 + 6.5.101-SNAPSHOT ../../parent/pom.xml diff --git a/common/uuid/pom.xml b/common/uuid/pom.xml index a596d54d4d..d0c43993e4 100644 --- a/common/uuid/pom.xml +++ b/common/uuid/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.84 + 6.5.101-SNAPSHOT ../../parent/pom.xml diff --git a/common/zookeeper/pom.xml b/common/zookeeper/pom.xml index 44b8bceb1e..4c7dea9801 100644 --- a/common/zookeeper/pom.xml +++ b/common/zookeeper/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.84 + 6.5.101-SNAPSHOT ../../parent/pom.xml diff --git a/databus-api/pom.xml b/databus-api/pom.xml index 2150a167ac..c9fc92082f 100644 --- a/databus-api/pom.xml +++ b/databus-api/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.84 + 6.5.101-SNAPSHOT ../parent/pom.xml diff --git a/databus-client-common/pom.xml b/databus-client-common/pom.xml index abea8c4d02..349eb07ab0 100644 --- a/databus-client-common/pom.xml +++ b/databus-client-common/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.84 + 6.5.101-SNAPSHOT ../parent/pom.xml diff --git a/databus-client-jersey2/pom.xml b/databus-client-jersey2/pom.xml index 7ce6610765..763c3aecdb 100644 --- a/databus-client-jersey2/pom.xml +++ b/databus-client-jersey2/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.84 + 6.5.101-SNAPSHOT ../parent/pom.xml diff --git a/databus-client/pom.xml b/databus-client/pom.xml index 87b540812e..46168875e3 100644 --- a/databus-client/pom.xml +++ b/databus-client/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.84 + 6.5.101-SNAPSHOT ../parent/pom.xml diff --git a/databus/pom.xml b/databus/pom.xml index 40614a4167..0a55192a73 100644 --- a/databus/pom.xml +++ b/databus/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.84 + 6.5.101-SNAPSHOT ../parent/pom.xml diff --git a/datacenter/pom.xml b/datacenter/pom.xml index c993c71bbb..353d6e28b4 100644 --- a/datacenter/pom.xml +++ b/datacenter/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.84 + 6.5.101-SNAPSHOT ../parent/pom.xml diff --git a/event/pom.xml b/event/pom.xml index d2df675fe2..2dcfa4c797 100644 --- a/event/pom.xml +++ b/event/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.84 + 6.5.101-SNAPSHOT ../parent/pom.xml diff --git a/job-api/pom.xml b/job-api/pom.xml index 3cb4aad405..5739ad4862 100644 --- a/job-api/pom.xml +++ b/job-api/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.84 + 6.5.101-SNAPSHOT ../parent/pom.xml diff --git a/job/pom.xml b/job/pom.xml index d31998ebe2..65441ca99e 100644 --- a/job/pom.xml +++ b/job/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.84 + 6.5.101-SNAPSHOT ../parent/pom.xml diff --git a/kafka/pom.xml b/kafka/pom.xml index c03fdb5539..a0b0c800ce 100644 --- a/kafka/pom.xml +++ b/kafka/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.84 + 6.5.101-SNAPSHOT ../parent/pom.xml diff --git a/megabus/pom.xml b/megabus/pom.xml index 2dba06c476..60dbd219ba 100644 --- a/megabus/pom.xml +++ b/megabus/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.84 + 6.5.101-SNAPSHOT ../parent/pom.xml diff --git a/parent/pom.xml b/parent/pom.xml index 1620ae66ef..4bea05a028 100644 --- a/parent/pom.xml +++ b/parent/pom.xml @@ -11,7 +11,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.84 + 6.5.101-SNAPSHOT pom EmoDB Parent @@ -20,7 +20,7 @@ scm:git:git@github.com:bazaarvoice/emodb.git scm:git:git@github.com:bazaarvoice/emodb.git scm:git:git@github.com:bazaarvoice/emodb.git - emodb-6.5.84 + emodb-6.5.101-SNAPSHOT diff --git a/plugins/pom.xml b/plugins/pom.xml index d027e86d1b..3ffd4efa8d 100644 --- a/plugins/pom.xml +++ b/plugins/pom.xml @@ -4,7 +4,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.84 + 6.5.101-SNAPSHOT ../parent/pom.xml diff --git a/pom.xml b/pom.xml index 20658c2838..3b6a41bcb7 100644 --- a/pom.xml +++ b/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.84 + 6.5.101-SNAPSHOT parent/pom.xml @@ -18,7 +18,7 @@ scm:git:git@github.com:bazaarvoice/emodb.git scm:git:git@github.com:bazaarvoice/emodb.git scm:git:git@github.com:bazaarvoice/emodb.git - emodb-6.5.84 + emodb-6.5.101-SNAPSHOT diff --git a/quality/integration/pom.xml b/quality/integration/pom.xml index 1d80de351c..47c1a8ae2a 100644 --- a/quality/integration/pom.xml +++ b/quality/integration/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.84 + 6.5.101-SNAPSHOT ../../parent/pom.xml diff --git a/quality/pom.xml b/quality/pom.xml index 150aa80f09..1ddfcf2f46 100644 --- a/quality/pom.xml +++ b/quality/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.84 + 6.5.101-SNAPSHOT ../parent/pom.xml diff --git a/queue-api/pom.xml b/queue-api/pom.xml index a45657b3e9..dd1b797f96 100644 --- a/queue-api/pom.xml +++ b/queue-api/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.84 + 6.5.101-SNAPSHOT ../parent/pom.xml diff --git a/queue-client-common/pom.xml b/queue-client-common/pom.xml index c5feb41e5e..3108558850 100644 --- a/queue-client-common/pom.xml +++ b/queue-client-common/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.84 + 6.5.101-SNAPSHOT ../parent/pom.xml diff --git a/queue-client-jersey2/pom.xml b/queue-client-jersey2/pom.xml index 900f316ad8..6c2f28a019 100644 --- a/queue-client-jersey2/pom.xml +++ b/queue-client-jersey2/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.84 + 6.5.101-SNAPSHOT ../parent/pom.xml diff --git a/queue-client/pom.xml b/queue-client/pom.xml index 108435e96c..57d0acf52f 100644 --- a/queue-client/pom.xml +++ b/queue-client/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.84 + 6.5.101-SNAPSHOT ../parent/pom.xml diff --git a/queue/pom.xml b/queue/pom.xml index c7d3f22e12..8bb1b89d1c 100644 --- a/queue/pom.xml +++ b/queue/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.84 + 6.5.101-SNAPSHOT ../parent/pom.xml diff --git a/sdk/pom.xml b/sdk/pom.xml index dd3f0d5ea4..c85c3a1586 100644 --- a/sdk/pom.xml +++ b/sdk/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.84 + 6.5.101-SNAPSHOT ../parent/pom.xml diff --git a/sor-api/pom.xml b/sor-api/pom.xml index d32aca24bf..54686fd90c 100644 --- a/sor-api/pom.xml +++ b/sor-api/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.84 + 6.5.101-SNAPSHOT ../parent/pom.xml diff --git a/sor-client-common/pom.xml b/sor-client-common/pom.xml index d1e41fcaf5..20e543a523 100644 --- a/sor-client-common/pom.xml +++ b/sor-client-common/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.84 + 6.5.101-SNAPSHOT ../parent/pom.xml diff --git a/sor-client-jersey2/pom.xml b/sor-client-jersey2/pom.xml index 2271281b41..42326d3e84 100644 --- a/sor-client-jersey2/pom.xml +++ b/sor-client-jersey2/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.84 + 6.5.101-SNAPSHOT ../parent/pom.xml diff --git a/sor-client/pom.xml b/sor-client/pom.xml index 429d87d12b..59af83c811 100644 --- a/sor-client/pom.xml +++ b/sor-client/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.84 + 6.5.101-SNAPSHOT ../parent/pom.xml diff --git a/sor/pom.xml b/sor/pom.xml index 41d1001eda..32d243eb08 100644 --- a/sor/pom.xml +++ b/sor/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.84 + 6.5.101-SNAPSHOT ../parent/pom.xml diff --git a/table/pom.xml b/table/pom.xml index 1429985d03..b510745ef0 100644 --- a/table/pom.xml +++ b/table/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.84 + 6.5.101-SNAPSHOT ../parent/pom.xml diff --git a/uac-api/pom.xml b/uac-api/pom.xml index 5d53c836d0..4e63af2cec 100644 --- a/uac-api/pom.xml +++ b/uac-api/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.84 + 6.5.101-SNAPSHOT ../parent/pom.xml diff --git a/uac-client-jersey2/pom.xml b/uac-client-jersey2/pom.xml index 167b17f2fb..e096532617 100644 --- a/uac-client-jersey2/pom.xml +++ b/uac-client-jersey2/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.84 + 6.5.101-SNAPSHOT ../parent/pom.xml diff --git a/uac-client/pom.xml b/uac-client/pom.xml index 868d6098e2..2bd57c79d2 100644 --- a/uac-client/pom.xml +++ b/uac-client/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.84 + 6.5.101-SNAPSHOT ../parent/pom.xml diff --git a/web-local/pom.xml b/web-local/pom.xml index ea15a9b63b..ce896cab51 100644 --- a/web-local/pom.xml +++ b/web-local/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.84 + 6.5.101-SNAPSHOT ../parent/pom.xml diff --git a/web/pom.xml b/web/pom.xml index 4e63e8c5d0..0f7dd9b023 100644 --- a/web/pom.xml +++ b/web/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.84 + 6.5.101-SNAPSHOT ../parent/pom.xml diff --git a/yum/pom.xml b/yum/pom.xml index dc19ab108c..fa7723fb00 100644 --- a/yum/pom.xml +++ b/yum/pom.xml @@ -4,7 +4,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.84 + 6.5.101-SNAPSHOT ../parent/pom.xml From 17c06371801423abc03e566705d177d460d6cb8b Mon Sep 17 00:00:00 2001 From: jenkins Date: Tue, 5 Mar 2024 11:43:28 +0000 Subject: [PATCH 14/15] branch admin -prepare release emodb-6.5.101 --- auth/auth-client/pom.xml | 2 +- auth/auth-core/pom.xml | 2 +- auth/auth-store/pom.xml | 2 +- auth/auth-util/pom.xml | 2 +- blob-api/pom.xml | 2 +- blob-clients/blob-client-common/pom.xml | 2 +- blob-clients/blob-client-jersey2/pom.xml | 2 +- blob-clients/blob-client/pom.xml | 2 +- blob/pom.xml | 2 +- cachemgr/pom.xml | 2 +- common/api/pom.xml | 2 +- common/astyanax/pom.xml | 2 +- common/client-jax-rs-2/pom.xml | 2 +- common/client-jersey2/pom.xml | 2 +- common/client/pom.xml | 2 +- common/dropwizard/pom.xml | 2 +- common/jersey-client/pom.xml | 2 +- common/json/pom.xml | 2 +- common/stash/pom.xml | 2 +- common/uuid/pom.xml | 2 +- common/zookeeper/pom.xml | 2 +- databus-api/pom.xml | 2 +- databus-client-common/pom.xml | 2 +- databus-client-jersey2/pom.xml | 2 +- databus-client/pom.xml | 2 +- databus/pom.xml | 2 +- datacenter/pom.xml | 2 +- event/pom.xml | 2 +- job-api/pom.xml | 2 +- job/pom.xml | 2 +- kafka/pom.xml | 2 +- megabus/pom.xml | 2 +- parent/pom.xml | 4 ++-- plugins/pom.xml | 2 +- pom.xml | 4 ++-- quality/integration/pom.xml | 2 +- quality/pom.xml | 2 +- queue-api/pom.xml | 2 +- queue-client-common/pom.xml | 2 +- queue-client-jersey2/pom.xml | 2 +- queue-client/pom.xml | 2 +- queue/pom.xml | 2 +- sdk/pom.xml | 2 +- sor-api/pom.xml | 2 +- sor-client-common/pom.xml | 2 +- sor-client-jersey2/pom.xml | 2 +- sor-client/pom.xml | 2 +- sor/pom.xml | 2 +- table/pom.xml | 2 +- uac-api/pom.xml | 2 +- uac-client-jersey2/pom.xml | 2 +- uac-client/pom.xml | 2 +- web-local/pom.xml | 2 +- web/pom.xml | 2 +- yum/pom.xml | 2 +- 55 files changed, 57 insertions(+), 57 deletions(-) diff --git a/auth/auth-client/pom.xml b/auth/auth-client/pom.xml index fb95059223..65e0678ed0 100644 --- a/auth/auth-client/pom.xml +++ b/auth/auth-client/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.101-SNAPSHOT + 6.5.101 ../../parent/pom.xml diff --git a/auth/auth-core/pom.xml b/auth/auth-core/pom.xml index 84b0ca7596..256fd9f57f 100644 --- a/auth/auth-core/pom.xml +++ b/auth/auth-core/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.101-SNAPSHOT + 6.5.101 ../../parent/pom.xml diff --git a/auth/auth-store/pom.xml b/auth/auth-store/pom.xml index e11cb00acb..fe76ac8103 100644 --- a/auth/auth-store/pom.xml +++ b/auth/auth-store/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.101-SNAPSHOT + 6.5.101 ../../parent/pom.xml diff --git a/auth/auth-util/pom.xml b/auth/auth-util/pom.xml index 0245ddcdb6..29b95c7a1d 100644 --- a/auth/auth-util/pom.xml +++ b/auth/auth-util/pom.xml @@ -3,7 +3,7 @@ emodb com.bazaarvoice.emodb - 6.5.101-SNAPSHOT + 6.5.101 ../../pom.xml 4.0.0 diff --git a/blob-api/pom.xml b/blob-api/pom.xml index 5dd3aab0c3..0b8ce0597d 100644 --- a/blob-api/pom.xml +++ b/blob-api/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.101-SNAPSHOT + 6.5.101 ../parent/pom.xml diff --git a/blob-clients/blob-client-common/pom.xml b/blob-clients/blob-client-common/pom.xml index 83cbfcba42..f18ea9624e 100644 --- a/blob-clients/blob-client-common/pom.xml +++ b/blob-clients/blob-client-common/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.101-SNAPSHOT + 6.5.101 ../../parent/pom.xml diff --git a/blob-clients/blob-client-jersey2/pom.xml b/blob-clients/blob-client-jersey2/pom.xml index 8a8db41415..a45c0138ea 100644 --- a/blob-clients/blob-client-jersey2/pom.xml +++ b/blob-clients/blob-client-jersey2/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.101-SNAPSHOT + 6.5.101 ../../parent/pom.xml diff --git a/blob-clients/blob-client/pom.xml b/blob-clients/blob-client/pom.xml index f86f6ebe48..b9c3c775d4 100644 --- a/blob-clients/blob-client/pom.xml +++ b/blob-clients/blob-client/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.101-SNAPSHOT + 6.5.101 ../../parent/pom.xml diff --git a/blob/pom.xml b/blob/pom.xml index eff8dec6ba..1373c61aa5 100644 --- a/blob/pom.xml +++ b/blob/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.101-SNAPSHOT + 6.5.101 ../parent/pom.xml diff --git a/cachemgr/pom.xml b/cachemgr/pom.xml index 304574f9ac..d257243279 100644 --- a/cachemgr/pom.xml +++ b/cachemgr/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.101-SNAPSHOT + 6.5.101 ../parent/pom.xml diff --git a/common/api/pom.xml b/common/api/pom.xml index 40c570bd5f..f9c94ae4ac 100644 --- a/common/api/pom.xml +++ b/common/api/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.101-SNAPSHOT + 6.5.101 ../../parent/pom.xml diff --git a/common/astyanax/pom.xml b/common/astyanax/pom.xml index ba0dd473a1..5188c61f23 100644 --- a/common/astyanax/pom.xml +++ b/common/astyanax/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.101-SNAPSHOT + 6.5.101 ../../parent/pom.xml diff --git a/common/client-jax-rs-2/pom.xml b/common/client-jax-rs-2/pom.xml index e81de548dc..91afadd055 100644 --- a/common/client-jax-rs-2/pom.xml +++ b/common/client-jax-rs-2/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.101-SNAPSHOT + 6.5.101 ../../parent/pom.xml diff --git a/common/client-jersey2/pom.xml b/common/client-jersey2/pom.xml index 01e4b1ab9b..a3c894317b 100644 --- a/common/client-jersey2/pom.xml +++ b/common/client-jersey2/pom.xml @@ -5,7 +5,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.101-SNAPSHOT + 6.5.101 ../../parent/pom.xml diff --git a/common/client/pom.xml b/common/client/pom.xml index 20feb4b7ee..5c7a4ffbc8 100644 --- a/common/client/pom.xml +++ b/common/client/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.101-SNAPSHOT + 6.5.101 ../../parent/pom.xml diff --git a/common/dropwizard/pom.xml b/common/dropwizard/pom.xml index 0b5a1ae0c6..ea872b62e6 100644 --- a/common/dropwizard/pom.xml +++ b/common/dropwizard/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.101-SNAPSHOT + 6.5.101 ../../parent/pom.xml diff --git a/common/jersey-client/pom.xml b/common/jersey-client/pom.xml index 968c3b1033..120feaf7c8 100644 --- a/common/jersey-client/pom.xml +++ b/common/jersey-client/pom.xml @@ -5,7 +5,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.101-SNAPSHOT + 6.5.101 ../../parent/pom.xml diff --git a/common/json/pom.xml b/common/json/pom.xml index f93384600e..5faeedbed9 100644 --- a/common/json/pom.xml +++ b/common/json/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.101-SNAPSHOT + 6.5.101 ../../parent/pom.xml diff --git a/common/stash/pom.xml b/common/stash/pom.xml index 69d442f274..980cfe3825 100644 --- a/common/stash/pom.xml +++ b/common/stash/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.101-SNAPSHOT + 6.5.101 ../../parent/pom.xml diff --git a/common/uuid/pom.xml b/common/uuid/pom.xml index d0c43993e4..ddeaf68206 100644 --- a/common/uuid/pom.xml +++ b/common/uuid/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.101-SNAPSHOT + 6.5.101 ../../parent/pom.xml diff --git a/common/zookeeper/pom.xml b/common/zookeeper/pom.xml index 4c7dea9801..c588780283 100644 --- a/common/zookeeper/pom.xml +++ b/common/zookeeper/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.101-SNAPSHOT + 6.5.101 ../../parent/pom.xml diff --git a/databus-api/pom.xml b/databus-api/pom.xml index c9fc92082f..f5b37aaaa7 100644 --- a/databus-api/pom.xml +++ b/databus-api/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.101-SNAPSHOT + 6.5.101 ../parent/pom.xml diff --git a/databus-client-common/pom.xml b/databus-client-common/pom.xml index 349eb07ab0..fe88101614 100644 --- a/databus-client-common/pom.xml +++ b/databus-client-common/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.101-SNAPSHOT + 6.5.101 ../parent/pom.xml diff --git a/databus-client-jersey2/pom.xml b/databus-client-jersey2/pom.xml index 763c3aecdb..20f375b42e 100644 --- a/databus-client-jersey2/pom.xml +++ b/databus-client-jersey2/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.101-SNAPSHOT + 6.5.101 ../parent/pom.xml diff --git a/databus-client/pom.xml b/databus-client/pom.xml index 46168875e3..78e442f813 100644 --- a/databus-client/pom.xml +++ b/databus-client/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.101-SNAPSHOT + 6.5.101 ../parent/pom.xml diff --git a/databus/pom.xml b/databus/pom.xml index 0a55192a73..19342d14bd 100644 --- a/databus/pom.xml +++ b/databus/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.101-SNAPSHOT + 6.5.101 ../parent/pom.xml diff --git a/datacenter/pom.xml b/datacenter/pom.xml index 353d6e28b4..60e5cf607f 100644 --- a/datacenter/pom.xml +++ b/datacenter/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.101-SNAPSHOT + 6.5.101 ../parent/pom.xml diff --git a/event/pom.xml b/event/pom.xml index 2dcfa4c797..b296be8ec1 100644 --- a/event/pom.xml +++ b/event/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.101-SNAPSHOT + 6.5.101 ../parent/pom.xml diff --git a/job-api/pom.xml b/job-api/pom.xml index 5739ad4862..d5797aed50 100644 --- a/job-api/pom.xml +++ b/job-api/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.101-SNAPSHOT + 6.5.101 ../parent/pom.xml diff --git a/job/pom.xml b/job/pom.xml index 65441ca99e..aaffdaeba6 100644 --- a/job/pom.xml +++ b/job/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.101-SNAPSHOT + 6.5.101 ../parent/pom.xml diff --git a/kafka/pom.xml b/kafka/pom.xml index a0b0c800ce..3de9998dac 100644 --- a/kafka/pom.xml +++ b/kafka/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.101-SNAPSHOT + 6.5.101 ../parent/pom.xml diff --git a/megabus/pom.xml b/megabus/pom.xml index 60dbd219ba..5cf2e46601 100644 --- a/megabus/pom.xml +++ b/megabus/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.101-SNAPSHOT + 6.5.101 ../parent/pom.xml diff --git a/parent/pom.xml b/parent/pom.xml index 4bea05a028..287c99949b 100644 --- a/parent/pom.xml +++ b/parent/pom.xml @@ -11,7 +11,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.101-SNAPSHOT + 6.5.101 pom EmoDB Parent @@ -20,7 +20,7 @@ scm:git:git@github.com:bazaarvoice/emodb.git scm:git:git@github.com:bazaarvoice/emodb.git scm:git:git@github.com:bazaarvoice/emodb.git - emodb-6.5.101-SNAPSHOT + emodb-6.5.101 diff --git a/plugins/pom.xml b/plugins/pom.xml index 3ffd4efa8d..03a965cd60 100644 --- a/plugins/pom.xml +++ b/plugins/pom.xml @@ -4,7 +4,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.101-SNAPSHOT + 6.5.101 ../parent/pom.xml diff --git a/pom.xml b/pom.xml index 3b6a41bcb7..e779ddffda 100644 --- a/pom.xml +++ b/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.101-SNAPSHOT + 6.5.101 parent/pom.xml @@ -18,7 +18,7 @@ scm:git:git@github.com:bazaarvoice/emodb.git scm:git:git@github.com:bazaarvoice/emodb.git scm:git:git@github.com:bazaarvoice/emodb.git - emodb-6.5.101-SNAPSHOT + emodb-6.5.101 diff --git a/quality/integration/pom.xml b/quality/integration/pom.xml index 47c1a8ae2a..4950ca7861 100644 --- a/quality/integration/pom.xml +++ b/quality/integration/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.101-SNAPSHOT + 6.5.101 ../../parent/pom.xml diff --git a/quality/pom.xml b/quality/pom.xml index 1ddfcf2f46..ad6ea77f2c 100644 --- a/quality/pom.xml +++ b/quality/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.101-SNAPSHOT + 6.5.101 ../parent/pom.xml diff --git a/queue-api/pom.xml b/queue-api/pom.xml index dd1b797f96..4eb4e9f128 100644 --- a/queue-api/pom.xml +++ b/queue-api/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.101-SNAPSHOT + 6.5.101 ../parent/pom.xml diff --git a/queue-client-common/pom.xml b/queue-client-common/pom.xml index 3108558850..b5c95bea16 100644 --- a/queue-client-common/pom.xml +++ b/queue-client-common/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.101-SNAPSHOT + 6.5.101 ../parent/pom.xml diff --git a/queue-client-jersey2/pom.xml b/queue-client-jersey2/pom.xml index 6c2f28a019..3b44c47c52 100644 --- a/queue-client-jersey2/pom.xml +++ b/queue-client-jersey2/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.101-SNAPSHOT + 6.5.101 ../parent/pom.xml diff --git a/queue-client/pom.xml b/queue-client/pom.xml index 57d0acf52f..b4294ce5d1 100644 --- a/queue-client/pom.xml +++ b/queue-client/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.101-SNAPSHOT + 6.5.101 ../parent/pom.xml diff --git a/queue/pom.xml b/queue/pom.xml index 8bb1b89d1c..aff5760465 100644 --- a/queue/pom.xml +++ b/queue/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.101-SNAPSHOT + 6.5.101 ../parent/pom.xml diff --git a/sdk/pom.xml b/sdk/pom.xml index c85c3a1586..040de8edaf 100644 --- a/sdk/pom.xml +++ b/sdk/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.101-SNAPSHOT + 6.5.101 ../parent/pom.xml diff --git a/sor-api/pom.xml b/sor-api/pom.xml index 54686fd90c..68fa55fc54 100644 --- a/sor-api/pom.xml +++ b/sor-api/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.101-SNAPSHOT + 6.5.101 ../parent/pom.xml diff --git a/sor-client-common/pom.xml b/sor-client-common/pom.xml index 20e543a523..ade6bce54a 100644 --- a/sor-client-common/pom.xml +++ b/sor-client-common/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.101-SNAPSHOT + 6.5.101 ../parent/pom.xml diff --git a/sor-client-jersey2/pom.xml b/sor-client-jersey2/pom.xml index 42326d3e84..7ac5c38066 100644 --- a/sor-client-jersey2/pom.xml +++ b/sor-client-jersey2/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.101-SNAPSHOT + 6.5.101 ../parent/pom.xml diff --git a/sor-client/pom.xml b/sor-client/pom.xml index 59af83c811..6f86c5a78c 100644 --- a/sor-client/pom.xml +++ b/sor-client/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.101-SNAPSHOT + 6.5.101 ../parent/pom.xml diff --git a/sor/pom.xml b/sor/pom.xml index 32d243eb08..6b10970471 100644 --- a/sor/pom.xml +++ b/sor/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.101-SNAPSHOT + 6.5.101 ../parent/pom.xml diff --git a/table/pom.xml b/table/pom.xml index b510745ef0..2bd4c34a1e 100644 --- a/table/pom.xml +++ b/table/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.101-SNAPSHOT + 6.5.101 ../parent/pom.xml diff --git a/uac-api/pom.xml b/uac-api/pom.xml index 4e63af2cec..efac073c06 100644 --- a/uac-api/pom.xml +++ b/uac-api/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.101-SNAPSHOT + 6.5.101 ../parent/pom.xml diff --git a/uac-client-jersey2/pom.xml b/uac-client-jersey2/pom.xml index e096532617..c3e109cb08 100644 --- a/uac-client-jersey2/pom.xml +++ b/uac-client-jersey2/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.101-SNAPSHOT + 6.5.101 ../parent/pom.xml diff --git a/uac-client/pom.xml b/uac-client/pom.xml index 2bd57c79d2..9a91964c13 100644 --- a/uac-client/pom.xml +++ b/uac-client/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.101-SNAPSHOT + 6.5.101 ../parent/pom.xml diff --git a/web-local/pom.xml b/web-local/pom.xml index ce896cab51..524f8922b6 100644 --- a/web-local/pom.xml +++ b/web-local/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.101-SNAPSHOT + 6.5.101 ../parent/pom.xml diff --git a/web/pom.xml b/web/pom.xml index 0f7dd9b023..3a217045c7 100644 --- a/web/pom.xml +++ b/web/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.101-SNAPSHOT + 6.5.101 ../parent/pom.xml diff --git a/yum/pom.xml b/yum/pom.xml index fa7723fb00..44f020656a 100644 --- a/yum/pom.xml +++ b/yum/pom.xml @@ -4,7 +4,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.101-SNAPSHOT + 6.5.101 ../parent/pom.xml From afd1ea49ba7f4b7bc882d6e08d417279e5134ba3 Mon Sep 17 00:00:00 2001 From: jenkins Date: Tue, 5 Mar 2024 11:43:29 +0000 Subject: [PATCH 15/15] branch admin -prepare for next development iteration --- auth/auth-client/pom.xml | 2 +- auth/auth-core/pom.xml | 2 +- auth/auth-store/pom.xml | 2 +- auth/auth-util/pom.xml | 2 +- blob-api/pom.xml | 2 +- blob-clients/blob-client-common/pom.xml | 2 +- blob-clients/blob-client-jersey2/pom.xml | 2 +- blob-clients/blob-client/pom.xml | 2 +- blob/pom.xml | 2 +- cachemgr/pom.xml | 2 +- common/api/pom.xml | 2 +- common/astyanax/pom.xml | 2 +- common/client-jax-rs-2/pom.xml | 2 +- common/client-jersey2/pom.xml | 2 +- common/client/pom.xml | 2 +- common/dropwizard/pom.xml | 2 +- common/jersey-client/pom.xml | 2 +- common/json/pom.xml | 2 +- common/stash/pom.xml | 2 +- common/uuid/pom.xml | 2 +- common/zookeeper/pom.xml | 2 +- databus-api/pom.xml | 2 +- databus-client-common/pom.xml | 2 +- databus-client-jersey2/pom.xml | 2 +- databus-client/pom.xml | 2 +- databus/pom.xml | 2 +- datacenter/pom.xml | 2 +- event/pom.xml | 2 +- job-api/pom.xml | 2 +- job/pom.xml | 2 +- kafka/pom.xml | 2 +- megabus/pom.xml | 2 +- parent/pom.xml | 4 ++-- plugins/pom.xml | 2 +- pom.xml | 4 ++-- quality/integration/pom.xml | 2 +- quality/pom.xml | 2 +- queue-api/pom.xml | 2 +- queue-client-common/pom.xml | 2 +- queue-client-jersey2/pom.xml | 2 +- queue-client/pom.xml | 2 +- queue/pom.xml | 2 +- sdk/pom.xml | 2 +- sor-api/pom.xml | 2 +- sor-client-common/pom.xml | 2 +- sor-client-jersey2/pom.xml | 2 +- sor-client/pom.xml | 2 +- sor/pom.xml | 2 +- table/pom.xml | 2 +- uac-api/pom.xml | 2 +- uac-client-jersey2/pom.xml | 2 +- uac-client/pom.xml | 2 +- web-local/pom.xml | 2 +- web/pom.xml | 2 +- yum/pom.xml | 2 +- 55 files changed, 57 insertions(+), 57 deletions(-) diff --git a/auth/auth-client/pom.xml b/auth/auth-client/pom.xml index 65e0678ed0..286a25ab08 100644 --- a/auth/auth-client/pom.xml +++ b/auth/auth-client/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.101 + 6.5.102-SNAPSHOT ../../parent/pom.xml diff --git a/auth/auth-core/pom.xml b/auth/auth-core/pom.xml index 256fd9f57f..f6ea922c65 100644 --- a/auth/auth-core/pom.xml +++ b/auth/auth-core/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.101 + 6.5.102-SNAPSHOT ../../parent/pom.xml diff --git a/auth/auth-store/pom.xml b/auth/auth-store/pom.xml index fe76ac8103..e05869130d 100644 --- a/auth/auth-store/pom.xml +++ b/auth/auth-store/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.101 + 6.5.102-SNAPSHOT ../../parent/pom.xml diff --git a/auth/auth-util/pom.xml b/auth/auth-util/pom.xml index 29b95c7a1d..24a735c350 100644 --- a/auth/auth-util/pom.xml +++ b/auth/auth-util/pom.xml @@ -3,7 +3,7 @@ emodb com.bazaarvoice.emodb - 6.5.101 + 6.5.102-SNAPSHOT ../../pom.xml 4.0.0 diff --git a/blob-api/pom.xml b/blob-api/pom.xml index 0b8ce0597d..83b2b7b294 100644 --- a/blob-api/pom.xml +++ b/blob-api/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.101 + 6.5.102-SNAPSHOT ../parent/pom.xml diff --git a/blob-clients/blob-client-common/pom.xml b/blob-clients/blob-client-common/pom.xml index f18ea9624e..4d009e9454 100644 --- a/blob-clients/blob-client-common/pom.xml +++ b/blob-clients/blob-client-common/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.101 + 6.5.102-SNAPSHOT ../../parent/pom.xml diff --git a/blob-clients/blob-client-jersey2/pom.xml b/blob-clients/blob-client-jersey2/pom.xml index a45c0138ea..149134c8e7 100644 --- a/blob-clients/blob-client-jersey2/pom.xml +++ b/blob-clients/blob-client-jersey2/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.101 + 6.5.102-SNAPSHOT ../../parent/pom.xml diff --git a/blob-clients/blob-client/pom.xml b/blob-clients/blob-client/pom.xml index b9c3c775d4..8a4a21efad 100644 --- a/blob-clients/blob-client/pom.xml +++ b/blob-clients/blob-client/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.101 + 6.5.102-SNAPSHOT ../../parent/pom.xml diff --git a/blob/pom.xml b/blob/pom.xml index 1373c61aa5..366ef73449 100644 --- a/blob/pom.xml +++ b/blob/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.101 + 6.5.102-SNAPSHOT ../parent/pom.xml diff --git a/cachemgr/pom.xml b/cachemgr/pom.xml index d257243279..269fa59280 100644 --- a/cachemgr/pom.xml +++ b/cachemgr/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.101 + 6.5.102-SNAPSHOT ../parent/pom.xml diff --git a/common/api/pom.xml b/common/api/pom.xml index f9c94ae4ac..9a245cd034 100644 --- a/common/api/pom.xml +++ b/common/api/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.101 + 6.5.102-SNAPSHOT ../../parent/pom.xml diff --git a/common/astyanax/pom.xml b/common/astyanax/pom.xml index 5188c61f23..a9ebbdd982 100644 --- a/common/astyanax/pom.xml +++ b/common/astyanax/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.101 + 6.5.102-SNAPSHOT ../../parent/pom.xml diff --git a/common/client-jax-rs-2/pom.xml b/common/client-jax-rs-2/pom.xml index 91afadd055..633bb3f539 100644 --- a/common/client-jax-rs-2/pom.xml +++ b/common/client-jax-rs-2/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.101 + 6.5.102-SNAPSHOT ../../parent/pom.xml diff --git a/common/client-jersey2/pom.xml b/common/client-jersey2/pom.xml index a3c894317b..0b2965e306 100644 --- a/common/client-jersey2/pom.xml +++ b/common/client-jersey2/pom.xml @@ -5,7 +5,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.101 + 6.5.102-SNAPSHOT ../../parent/pom.xml diff --git a/common/client/pom.xml b/common/client/pom.xml index 5c7a4ffbc8..aa06a44b68 100644 --- a/common/client/pom.xml +++ b/common/client/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.101 + 6.5.102-SNAPSHOT ../../parent/pom.xml diff --git a/common/dropwizard/pom.xml b/common/dropwizard/pom.xml index ea872b62e6..ed434280da 100644 --- a/common/dropwizard/pom.xml +++ b/common/dropwizard/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.101 + 6.5.102-SNAPSHOT ../../parent/pom.xml diff --git a/common/jersey-client/pom.xml b/common/jersey-client/pom.xml index 120feaf7c8..5374033230 100644 --- a/common/jersey-client/pom.xml +++ b/common/jersey-client/pom.xml @@ -5,7 +5,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.101 + 6.5.102-SNAPSHOT ../../parent/pom.xml diff --git a/common/json/pom.xml b/common/json/pom.xml index 5faeedbed9..e9d6520a5b 100644 --- a/common/json/pom.xml +++ b/common/json/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.101 + 6.5.102-SNAPSHOT ../../parent/pom.xml diff --git a/common/stash/pom.xml b/common/stash/pom.xml index 980cfe3825..bf5a52dd1b 100644 --- a/common/stash/pom.xml +++ b/common/stash/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.101 + 6.5.102-SNAPSHOT ../../parent/pom.xml diff --git a/common/uuid/pom.xml b/common/uuid/pom.xml index ddeaf68206..1d910b37e4 100644 --- a/common/uuid/pom.xml +++ b/common/uuid/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.101 + 6.5.102-SNAPSHOT ../../parent/pom.xml diff --git a/common/zookeeper/pom.xml b/common/zookeeper/pom.xml index c588780283..73c6459685 100644 --- a/common/zookeeper/pom.xml +++ b/common/zookeeper/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.101 + 6.5.102-SNAPSHOT ../../parent/pom.xml diff --git a/databus-api/pom.xml b/databus-api/pom.xml index f5b37aaaa7..d17cf5be59 100644 --- a/databus-api/pom.xml +++ b/databus-api/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.101 + 6.5.102-SNAPSHOT ../parent/pom.xml diff --git a/databus-client-common/pom.xml b/databus-client-common/pom.xml index fe88101614..4cd0fd4e0f 100644 --- a/databus-client-common/pom.xml +++ b/databus-client-common/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.101 + 6.5.102-SNAPSHOT ../parent/pom.xml diff --git a/databus-client-jersey2/pom.xml b/databus-client-jersey2/pom.xml index 20f375b42e..1e5e9de326 100644 --- a/databus-client-jersey2/pom.xml +++ b/databus-client-jersey2/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.101 + 6.5.102-SNAPSHOT ../parent/pom.xml diff --git a/databus-client/pom.xml b/databus-client/pom.xml index 78e442f813..b1b0d21c5a 100644 --- a/databus-client/pom.xml +++ b/databus-client/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.101 + 6.5.102-SNAPSHOT ../parent/pom.xml diff --git a/databus/pom.xml b/databus/pom.xml index 19342d14bd..a34fb8407a 100644 --- a/databus/pom.xml +++ b/databus/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.101 + 6.5.102-SNAPSHOT ../parent/pom.xml diff --git a/datacenter/pom.xml b/datacenter/pom.xml index 60e5cf607f..5b8edef74b 100644 --- a/datacenter/pom.xml +++ b/datacenter/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.101 + 6.5.102-SNAPSHOT ../parent/pom.xml diff --git a/event/pom.xml b/event/pom.xml index b296be8ec1..a6d41e5020 100644 --- a/event/pom.xml +++ b/event/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.101 + 6.5.102-SNAPSHOT ../parent/pom.xml diff --git a/job-api/pom.xml b/job-api/pom.xml index d5797aed50..5b5d3dd620 100644 --- a/job-api/pom.xml +++ b/job-api/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.101 + 6.5.102-SNAPSHOT ../parent/pom.xml diff --git a/job/pom.xml b/job/pom.xml index aaffdaeba6..6f27f31410 100644 --- a/job/pom.xml +++ b/job/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.101 + 6.5.102-SNAPSHOT ../parent/pom.xml diff --git a/kafka/pom.xml b/kafka/pom.xml index 3de9998dac..bb2f750732 100644 --- a/kafka/pom.xml +++ b/kafka/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.101 + 6.5.102-SNAPSHOT ../parent/pom.xml diff --git a/megabus/pom.xml b/megabus/pom.xml index 5cf2e46601..d3894b9117 100644 --- a/megabus/pom.xml +++ b/megabus/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.101 + 6.5.102-SNAPSHOT ../parent/pom.xml diff --git a/parent/pom.xml b/parent/pom.xml index 287c99949b..01099919c9 100644 --- a/parent/pom.xml +++ b/parent/pom.xml @@ -11,7 +11,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.101 + 6.5.102-SNAPSHOT pom EmoDB Parent @@ -20,7 +20,7 @@ scm:git:git@github.com:bazaarvoice/emodb.git scm:git:git@github.com:bazaarvoice/emodb.git scm:git:git@github.com:bazaarvoice/emodb.git - emodb-6.5.101 + emodb-6.5.101-SNAPSHOT diff --git a/plugins/pom.xml b/plugins/pom.xml index 03a965cd60..59b621664e 100644 --- a/plugins/pom.xml +++ b/plugins/pom.xml @@ -4,7 +4,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.101 + 6.5.102-SNAPSHOT ../parent/pom.xml diff --git a/pom.xml b/pom.xml index e779ddffda..641552bd28 100644 --- a/pom.xml +++ b/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.101 + 6.5.102-SNAPSHOT parent/pom.xml @@ -18,7 +18,7 @@ scm:git:git@github.com:bazaarvoice/emodb.git scm:git:git@github.com:bazaarvoice/emodb.git scm:git:git@github.com:bazaarvoice/emodb.git - emodb-6.5.101 + emodb-6.5.101-SNAPSHOT diff --git a/quality/integration/pom.xml b/quality/integration/pom.xml index 4950ca7861..e35aa9e1c9 100644 --- a/quality/integration/pom.xml +++ b/quality/integration/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.101 + 6.5.102-SNAPSHOT ../../parent/pom.xml diff --git a/quality/pom.xml b/quality/pom.xml index ad6ea77f2c..310b99a5c7 100644 --- a/quality/pom.xml +++ b/quality/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.101 + 6.5.102-SNAPSHOT ../parent/pom.xml diff --git a/queue-api/pom.xml b/queue-api/pom.xml index 4eb4e9f128..cab1f3509d 100644 --- a/queue-api/pom.xml +++ b/queue-api/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.101 + 6.5.102-SNAPSHOT ../parent/pom.xml diff --git a/queue-client-common/pom.xml b/queue-client-common/pom.xml index b5c95bea16..5e1f34e53c 100644 --- a/queue-client-common/pom.xml +++ b/queue-client-common/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.101 + 6.5.102-SNAPSHOT ../parent/pom.xml diff --git a/queue-client-jersey2/pom.xml b/queue-client-jersey2/pom.xml index 3b44c47c52..7e6db7df7a 100644 --- a/queue-client-jersey2/pom.xml +++ b/queue-client-jersey2/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.101 + 6.5.102-SNAPSHOT ../parent/pom.xml diff --git a/queue-client/pom.xml b/queue-client/pom.xml index b4294ce5d1..08c7be892a 100644 --- a/queue-client/pom.xml +++ b/queue-client/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.101 + 6.5.102-SNAPSHOT ../parent/pom.xml diff --git a/queue/pom.xml b/queue/pom.xml index aff5760465..ff16e7d38c 100644 --- a/queue/pom.xml +++ b/queue/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.101 + 6.5.102-SNAPSHOT ../parent/pom.xml diff --git a/sdk/pom.xml b/sdk/pom.xml index 040de8edaf..19cd88c80f 100644 --- a/sdk/pom.xml +++ b/sdk/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.101 + 6.5.102-SNAPSHOT ../parent/pom.xml diff --git a/sor-api/pom.xml b/sor-api/pom.xml index 68fa55fc54..3555abc113 100644 --- a/sor-api/pom.xml +++ b/sor-api/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.101 + 6.5.102-SNAPSHOT ../parent/pom.xml diff --git a/sor-client-common/pom.xml b/sor-client-common/pom.xml index ade6bce54a..9ab6c88559 100644 --- a/sor-client-common/pom.xml +++ b/sor-client-common/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.101 + 6.5.102-SNAPSHOT ../parent/pom.xml diff --git a/sor-client-jersey2/pom.xml b/sor-client-jersey2/pom.xml index 7ac5c38066..e9054945d4 100644 --- a/sor-client-jersey2/pom.xml +++ b/sor-client-jersey2/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.101 + 6.5.102-SNAPSHOT ../parent/pom.xml diff --git a/sor-client/pom.xml b/sor-client/pom.xml index 6f86c5a78c..21e751290e 100644 --- a/sor-client/pom.xml +++ b/sor-client/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.101 + 6.5.102-SNAPSHOT ../parent/pom.xml diff --git a/sor/pom.xml b/sor/pom.xml index 6b10970471..b166025a7d 100644 --- a/sor/pom.xml +++ b/sor/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.101 + 6.5.102-SNAPSHOT ../parent/pom.xml diff --git a/table/pom.xml b/table/pom.xml index 2bd4c34a1e..1205cec46f 100644 --- a/table/pom.xml +++ b/table/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.101 + 6.5.102-SNAPSHOT ../parent/pom.xml diff --git a/uac-api/pom.xml b/uac-api/pom.xml index efac073c06..d56009fbca 100644 --- a/uac-api/pom.xml +++ b/uac-api/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.101 + 6.5.102-SNAPSHOT ../parent/pom.xml diff --git a/uac-client-jersey2/pom.xml b/uac-client-jersey2/pom.xml index c3e109cb08..7c1d9a65a1 100644 --- a/uac-client-jersey2/pom.xml +++ b/uac-client-jersey2/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.101 + 6.5.102-SNAPSHOT ../parent/pom.xml diff --git a/uac-client/pom.xml b/uac-client/pom.xml index 9a91964c13..cd0f904e5f 100644 --- a/uac-client/pom.xml +++ b/uac-client/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.101 + 6.5.102-SNAPSHOT ../parent/pom.xml diff --git a/web-local/pom.xml b/web-local/pom.xml index 524f8922b6..4ad98d06b9 100644 --- a/web-local/pom.xml +++ b/web-local/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.101 + 6.5.102-SNAPSHOT ../parent/pom.xml diff --git a/web/pom.xml b/web/pom.xml index 3a217045c7..776c6687cc 100644 --- a/web/pom.xml +++ b/web/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.101 + 6.5.102-SNAPSHOT ../parent/pom.xml diff --git a/yum/pom.xml b/yum/pom.xml index 44f020656a..ace93b20c4 100644 --- a/yum/pom.xml +++ b/yum/pom.xml @@ -4,7 +4,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.101 + 6.5.102-SNAPSHOT ../parent/pom.xml