From 623782dc977a2e71a3fa762b8beb1abe46342710 Mon Sep 17 00:00:00 2001 From: Tom Page Date: Thu, 16 Mar 2023 11:00:38 +0000 Subject: [PATCH 01/10] APPS-1593 Try to make REST test failure messages more useful. [ags] --- .../org/alfresco/rest/core/v0/BaseAPI.java | 41 +++++++++++++------ 1 file changed, 28 insertions(+), 13 deletions(-) diff --git a/amps/ags/rm-automation/rm-automation-community-rest-api/src/main/java/org/alfresco/rest/core/v0/BaseAPI.java b/amps/ags/rm-automation/rm-automation-community-rest-api/src/main/java/org/alfresco/rest/core/v0/BaseAPI.java index 117613e04e..e205e935e1 100644 --- a/amps/ags/rm-automation/rm-automation-community-rest-api/src/main/java/org/alfresco/rest/core/v0/BaseAPI.java +++ b/amps/ags/rm-automation/rm-automation-community-rest-api/src/main/java/org/alfresco/rest/core/v0/BaseAPI.java @@ -512,7 +512,7 @@ public abstract class BaseAPI try { HttpResponse httpResponse = doRequestJson(HttpPost.class, requestUrl, adminUser, adminPassword, requestParams); - assertEquals("POST request to " + requestUrl + " was not successful.", expectedStatusCode, httpResponse.getStatusLine().getStatusCode()); + assertEquals("POST request to " + requestUrl + " was not successful. Response: " + responseBodyToJson(httpResponse), expectedStatusCode, httpResponse.getStatusLine().getStatusCode()); return httpResponse; } catch (InstantiationException | IllegalAccessException error) @@ -521,6 +521,32 @@ public abstract class BaseAPI } } + /** + * Try to convert the response body to a JSON object. + * + * @param response The response. + * @return The JSON object or null if it was not possible to convert the response. + */ + private JSONObject responseBodyToJson(HttpResponse response) + { + try + { + try + { + return new JSONObject(EntityUtils.toString(response.getEntity())); + } + catch (JSONException error) + { + LOGGER.error("Converting message body to JSON failed. Body: {}", response.getEntity().getContent(), error); + } + } + catch (ParseException | IOException error) + { + LOGGER.error("Parsing message body failed.", error); + } + return null; + } + /** * Helper method for handling generic HTTP requests * @param requestType request type (a subclass of {@link HttpRequestBase}) @@ -558,18 +584,7 @@ public abstract class BaseAPI HttpResponse response = client.execute(adminUser, adminPassword, request); LOGGER.info("Response: {}", response.getStatusLine()); - try - { - responseBody = new JSONObject(EntityUtils.toString(response.getEntity())); - } - catch (JSONException error) - { - LOGGER.error("Converting message body to JSON failed. Body: {}", responseBody, error); - } - catch (ParseException | IOException error) - { - LOGGER.error("Parsing message body failed.", error); - } + responseBody = responseBodyToJson(response); switch (response.getStatusLine().getStatusCode()) { From 653f7338874bf96163839901f7b24cb8a6ab5601 Mon Sep 17 00:00:00 2001 From: Tom Page Date: Thu, 16 Mar 2023 14:07:33 +0000 Subject: [PATCH 02/10] APPS-1593 Only load the response content if we need it. --- .../src/main/java/org/alfresco/rest/core/v0/BaseAPI.java | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/amps/ags/rm-automation/rm-automation-community-rest-api/src/main/java/org/alfresco/rest/core/v0/BaseAPI.java b/amps/ags/rm-automation/rm-automation-community-rest-api/src/main/java/org/alfresco/rest/core/v0/BaseAPI.java index e205e935e1..d45a8748fb 100644 --- a/amps/ags/rm-automation/rm-automation-community-rest-api/src/main/java/org/alfresco/rest/core/v0/BaseAPI.java +++ b/amps/ags/rm-automation/rm-automation-community-rest-api/src/main/java/org/alfresco/rest/core/v0/BaseAPI.java @@ -512,7 +512,12 @@ public abstract class BaseAPI try { HttpResponse httpResponse = doRequestJson(HttpPost.class, requestUrl, adminUser, adminPassword, requestParams); - assertEquals("POST request to " + requestUrl + " was not successful. Response: " + responseBodyToJson(httpResponse), expectedStatusCode, httpResponse.getStatusLine().getStatusCode()); + if (httpResponse.getStatusLine().getStatusCode() != expectedStatusCode) + { + // It's only possible to stream the response body once, so ensure we only do this if the test has failed. + JSONObject responseJson = responseBodyToJson(httpResponse); + assertEquals("POST request to " + requestUrl + " was not successful. Response: " + responseJson, expectedStatusCode, httpResponse.getStatusLine().getStatusCode()); + } return httpResponse; } catch (InstantiationException | IllegalAccessException error) From 8734eec06872295d9db2ad5e82376142eff1f67b Mon Sep 17 00:00:00 2001 From: pzurek Date: Fri, 16 Jun 2023 14:13:35 +0200 Subject: [PATCH 03/10] Trigger CI From beaf83a0082bcbccf9413b4f841fad495d67ab57 Mon Sep 17 00:00:00 2001 From: alfresco-build <8039454+alfresco-build@users.noreply.github.com> Date: Fri, 16 Jun 2023 13:03:18 +0000 Subject: [PATCH 04/10] [maven-release-plugin][skip ci] prepare release 23.1.0.139 --- amps/ags/pom.xml | 2 +- amps/ags/rm-automation/pom.xml | 2 +- .../rm-automation/rm-automation-community-rest-api/pom.xml | 2 +- amps/ags/rm-community/pom.xml | 2 +- amps/ags/rm-community/rm-community-repo/pom.xml | 2 +- amps/ags/rm-community/rm-community-rest-api-explorer/pom.xml | 2 +- amps/pom.xml | 2 +- amps/share-services/pom.xml | 2 +- core/pom.xml | 2 +- data-model/pom.xml | 2 +- mmt/pom.xml | 2 +- packaging/distribution/pom.xml | 2 +- packaging/docker-alfresco/pom.xml | 2 +- packaging/pom.xml | 2 +- packaging/tests/pom.xml | 2 +- packaging/tests/tas-cmis/pom.xml | 2 +- packaging/tests/tas-email/pom.xml | 2 +- packaging/tests/tas-integration/pom.xml | 2 +- packaging/tests/tas-restapi/pom.xml | 2 +- packaging/tests/tas-webdav/pom.xml | 2 +- packaging/war/pom.xml | 2 +- pom.xml | 4 ++-- remote-api/pom.xml | 2 +- repository/pom.xml | 2 +- 24 files changed, 25 insertions(+), 25 deletions(-) diff --git a/amps/ags/pom.xml b/amps/ags/pom.xml index 0cbb62e1f4..2fa5f93cfa 100644 --- a/amps/ags/pom.xml +++ b/amps/ags/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-community-repo-amps - 23.1.0.139-SNAPSHOT + 23.1.0.139 diff --git a/amps/ags/rm-automation/pom.xml b/amps/ags/rm-automation/pom.xml index 1483ad7612..936a87e9d6 100644 --- a/amps/ags/rm-automation/pom.xml +++ b/amps/ags/rm-automation/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-governance-services-community-parent - 23.1.0.139-SNAPSHOT + 23.1.0.139 diff --git a/amps/ags/rm-automation/rm-automation-community-rest-api/pom.xml b/amps/ags/rm-automation/rm-automation-community-rest-api/pom.xml index 0e50aa0100..8a12b4c582 100644 --- a/amps/ags/rm-automation/rm-automation-community-rest-api/pom.xml +++ b/amps/ags/rm-automation/rm-automation-community-rest-api/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-governance-services-automation-community-repo - 23.1.0.139-SNAPSHOT + 23.1.0.139 diff --git a/amps/ags/rm-community/pom.xml b/amps/ags/rm-community/pom.xml index d771800861..513f75cf15 100644 --- a/amps/ags/rm-community/pom.xml +++ b/amps/ags/rm-community/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-governance-services-community-parent - 23.1.0.139-SNAPSHOT + 23.1.0.139 diff --git a/amps/ags/rm-community/rm-community-repo/pom.xml b/amps/ags/rm-community/rm-community-repo/pom.xml index a321966035..1e1f979080 100644 --- a/amps/ags/rm-community/rm-community-repo/pom.xml +++ b/amps/ags/rm-community/rm-community-repo/pom.xml @@ -8,7 +8,7 @@ org.alfresco alfresco-governance-services-community-repo-parent - 23.1.0.139-SNAPSHOT + 23.1.0.139 diff --git a/amps/ags/rm-community/rm-community-rest-api-explorer/pom.xml b/amps/ags/rm-community/rm-community-rest-api-explorer/pom.xml index 6a9d1643cb..70a3e9e64a 100644 --- a/amps/ags/rm-community/rm-community-rest-api-explorer/pom.xml +++ b/amps/ags/rm-community/rm-community-rest-api-explorer/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-governance-services-community-repo-parent - 23.1.0.139-SNAPSHOT + 23.1.0.139 diff --git a/amps/pom.xml b/amps/pom.xml index f8d7c59979..813fc1d843 100644 --- a/amps/pom.xml +++ b/amps/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-community-repo - 23.1.0.139-SNAPSHOT + 23.1.0.139 diff --git a/amps/share-services/pom.xml b/amps/share-services/pom.xml index 14cc14cd5e..cf3d6d6ad2 100644 --- a/amps/share-services/pom.xml +++ b/amps/share-services/pom.xml @@ -8,7 +8,7 @@ org.alfresco alfresco-community-repo-amps - 23.1.0.139-SNAPSHOT + 23.1.0.139 diff --git a/core/pom.xml b/core/pom.xml index fc1b3d4c1c..c5c64fa6ca 100644 --- a/core/pom.xml +++ b/core/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-community-repo - 23.1.0.139-SNAPSHOT + 23.1.0.139 diff --git a/data-model/pom.xml b/data-model/pom.xml index 0e3a2ec82f..91d129eba1 100644 --- a/data-model/pom.xml +++ b/data-model/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-community-repo - 23.1.0.139-SNAPSHOT + 23.1.0.139 diff --git a/mmt/pom.xml b/mmt/pom.xml index 2eb60e1ba9..f9d9fdd0c7 100644 --- a/mmt/pom.xml +++ b/mmt/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-community-repo - 23.1.0.139-SNAPSHOT + 23.1.0.139 diff --git a/packaging/distribution/pom.xml b/packaging/distribution/pom.xml index 110173e92b..af2dbaa164 100644 --- a/packaging/distribution/pom.xml +++ b/packaging/distribution/pom.xml @@ -9,6 +9,6 @@ org.alfresco alfresco-community-repo-packaging - 23.1.0.139-SNAPSHOT + 23.1.0.139 diff --git a/packaging/docker-alfresco/pom.xml b/packaging/docker-alfresco/pom.xml index 978c0c278c..4043a9868e 100644 --- a/packaging/docker-alfresco/pom.xml +++ b/packaging/docker-alfresco/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-community-repo-packaging - 23.1.0.139-SNAPSHOT + 23.1.0.139 diff --git a/packaging/pom.xml b/packaging/pom.xml index 464bf38b04..d68ad3cdde 100644 --- a/packaging/pom.xml +++ b/packaging/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-community-repo - 23.1.0.139-SNAPSHOT + 23.1.0.139 diff --git a/packaging/tests/pom.xml b/packaging/tests/pom.xml index 830ee53379..2b216bff95 100644 --- a/packaging/tests/pom.xml +++ b/packaging/tests/pom.xml @@ -6,7 +6,7 @@ org.alfresco alfresco-community-repo-packaging - 23.1.0.139-SNAPSHOT + 23.1.0.139 diff --git a/packaging/tests/tas-cmis/pom.xml b/packaging/tests/tas-cmis/pom.xml index fd1b02ffc7..53427d0209 100644 --- a/packaging/tests/tas-cmis/pom.xml +++ b/packaging/tests/tas-cmis/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-community-repo-tests - 23.1.0.139-SNAPSHOT + 23.1.0.139 diff --git a/packaging/tests/tas-email/pom.xml b/packaging/tests/tas-email/pom.xml index 5ea18c9f33..3ebaf74225 100644 --- a/packaging/tests/tas-email/pom.xml +++ b/packaging/tests/tas-email/pom.xml @@ -9,7 +9,7 @@ org.alfresco alfresco-community-repo-tests - 23.1.0.139-SNAPSHOT + 23.1.0.139 diff --git a/packaging/tests/tas-integration/pom.xml b/packaging/tests/tas-integration/pom.xml index 153512c95a..b0e5d1fd80 100644 --- a/packaging/tests/tas-integration/pom.xml +++ b/packaging/tests/tas-integration/pom.xml @@ -9,7 +9,7 @@ org.alfresco alfresco-community-repo-tests - 23.1.0.139-SNAPSHOT + 23.1.0.139 diff --git a/packaging/tests/tas-restapi/pom.xml b/packaging/tests/tas-restapi/pom.xml index c9278c33af..2327a6cde1 100644 --- a/packaging/tests/tas-restapi/pom.xml +++ b/packaging/tests/tas-restapi/pom.xml @@ -8,7 +8,7 @@ org.alfresco alfresco-community-repo-tests - 23.1.0.139-SNAPSHOT + 23.1.0.139 diff --git a/packaging/tests/tas-webdav/pom.xml b/packaging/tests/tas-webdav/pom.xml index 8b26df1983..428b490f2b 100644 --- a/packaging/tests/tas-webdav/pom.xml +++ b/packaging/tests/tas-webdav/pom.xml @@ -9,7 +9,7 @@ org.alfresco alfresco-community-repo-tests - 23.1.0.139-SNAPSHOT + 23.1.0.139 diff --git a/packaging/war/pom.xml b/packaging/war/pom.xml index c67954bf65..229974589c 100644 --- a/packaging/war/pom.xml +++ b/packaging/war/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-community-repo-packaging - 23.1.0.139-SNAPSHOT + 23.1.0.139 diff --git a/pom.xml b/pom.xml index 2376f54322..d4325cb027 100644 --- a/pom.xml +++ b/pom.xml @@ -2,7 +2,7 @@ 4.0.0 alfresco-community-repo - 23.1.0.139-SNAPSHOT + 23.1.0.139 pom Alfresco Community Repo Parent @@ -149,7 +149,7 @@ scm:git:https://github.com/Alfresco/alfresco-community-repo.git scm:git:https://github.com/Alfresco/alfresco-community-repo.git https://github.com/Alfresco/alfresco-community-repo - HEAD + 23.1.0.139 diff --git a/remote-api/pom.xml b/remote-api/pom.xml index 8ad27ebe5a..670cb8af6b 100644 --- a/remote-api/pom.xml +++ b/remote-api/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-community-repo - 23.1.0.139-SNAPSHOT + 23.1.0.139 diff --git a/repository/pom.xml b/repository/pom.xml index 6f23a497e8..507201bc56 100644 --- a/repository/pom.xml +++ b/repository/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-community-repo - 23.1.0.139-SNAPSHOT + 23.1.0.139 From 1bc5bed83800abff771d6d8b45d501de308a7029 Mon Sep 17 00:00:00 2001 From: alfresco-build <8039454+alfresco-build@users.noreply.github.com> Date: Fri, 16 Jun 2023 13:03:21 +0000 Subject: [PATCH 05/10] [maven-release-plugin][skip ci] prepare for next development iteration --- amps/ags/pom.xml | 2 +- amps/ags/rm-automation/pom.xml | 2 +- .../rm-automation/rm-automation-community-rest-api/pom.xml | 2 +- amps/ags/rm-community/pom.xml | 2 +- amps/ags/rm-community/rm-community-repo/pom.xml | 2 +- amps/ags/rm-community/rm-community-rest-api-explorer/pom.xml | 2 +- amps/pom.xml | 2 +- amps/share-services/pom.xml | 2 +- core/pom.xml | 2 +- data-model/pom.xml | 2 +- mmt/pom.xml | 2 +- packaging/distribution/pom.xml | 2 +- packaging/docker-alfresco/pom.xml | 2 +- packaging/pom.xml | 2 +- packaging/tests/pom.xml | 2 +- packaging/tests/tas-cmis/pom.xml | 2 +- packaging/tests/tas-email/pom.xml | 2 +- packaging/tests/tas-integration/pom.xml | 2 +- packaging/tests/tas-restapi/pom.xml | 2 +- packaging/tests/tas-webdav/pom.xml | 2 +- packaging/war/pom.xml | 2 +- pom.xml | 4 ++-- remote-api/pom.xml | 2 +- repository/pom.xml | 2 +- 24 files changed, 25 insertions(+), 25 deletions(-) diff --git a/amps/ags/pom.xml b/amps/ags/pom.xml index 2fa5f93cfa..35145f54cf 100644 --- a/amps/ags/pom.xml +++ b/amps/ags/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-community-repo-amps - 23.1.0.139 + 23.1.0.140-SNAPSHOT diff --git a/amps/ags/rm-automation/pom.xml b/amps/ags/rm-automation/pom.xml index 936a87e9d6..c16008715d 100644 --- a/amps/ags/rm-automation/pom.xml +++ b/amps/ags/rm-automation/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-governance-services-community-parent - 23.1.0.139 + 23.1.0.140-SNAPSHOT diff --git a/amps/ags/rm-automation/rm-automation-community-rest-api/pom.xml b/amps/ags/rm-automation/rm-automation-community-rest-api/pom.xml index 8a12b4c582..e1bd3fd15a 100644 --- a/amps/ags/rm-automation/rm-automation-community-rest-api/pom.xml +++ b/amps/ags/rm-automation/rm-automation-community-rest-api/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-governance-services-automation-community-repo - 23.1.0.139 + 23.1.0.140-SNAPSHOT diff --git a/amps/ags/rm-community/pom.xml b/amps/ags/rm-community/pom.xml index 513f75cf15..52a6b6db2f 100644 --- a/amps/ags/rm-community/pom.xml +++ b/amps/ags/rm-community/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-governance-services-community-parent - 23.1.0.139 + 23.1.0.140-SNAPSHOT diff --git a/amps/ags/rm-community/rm-community-repo/pom.xml b/amps/ags/rm-community/rm-community-repo/pom.xml index 1e1f979080..18a44aea89 100644 --- a/amps/ags/rm-community/rm-community-repo/pom.xml +++ b/amps/ags/rm-community/rm-community-repo/pom.xml @@ -8,7 +8,7 @@ org.alfresco alfresco-governance-services-community-repo-parent - 23.1.0.139 + 23.1.0.140-SNAPSHOT diff --git a/amps/ags/rm-community/rm-community-rest-api-explorer/pom.xml b/amps/ags/rm-community/rm-community-rest-api-explorer/pom.xml index 70a3e9e64a..5a1c1d89df 100644 --- a/amps/ags/rm-community/rm-community-rest-api-explorer/pom.xml +++ b/amps/ags/rm-community/rm-community-rest-api-explorer/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-governance-services-community-repo-parent - 23.1.0.139 + 23.1.0.140-SNAPSHOT diff --git a/amps/pom.xml b/amps/pom.xml index 813fc1d843..e70636069e 100644 --- a/amps/pom.xml +++ b/amps/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-community-repo - 23.1.0.139 + 23.1.0.140-SNAPSHOT diff --git a/amps/share-services/pom.xml b/amps/share-services/pom.xml index cf3d6d6ad2..d4f608d0c8 100644 --- a/amps/share-services/pom.xml +++ b/amps/share-services/pom.xml @@ -8,7 +8,7 @@ org.alfresco alfresco-community-repo-amps - 23.1.0.139 + 23.1.0.140-SNAPSHOT diff --git a/core/pom.xml b/core/pom.xml index c5c64fa6ca..a36d76f08c 100644 --- a/core/pom.xml +++ b/core/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-community-repo - 23.1.0.139 + 23.1.0.140-SNAPSHOT diff --git a/data-model/pom.xml b/data-model/pom.xml index 91d129eba1..55717a4cc5 100644 --- a/data-model/pom.xml +++ b/data-model/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-community-repo - 23.1.0.139 + 23.1.0.140-SNAPSHOT diff --git a/mmt/pom.xml b/mmt/pom.xml index f9d9fdd0c7..7fc32bc32c 100644 --- a/mmt/pom.xml +++ b/mmt/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-community-repo - 23.1.0.139 + 23.1.0.140-SNAPSHOT diff --git a/packaging/distribution/pom.xml b/packaging/distribution/pom.xml index af2dbaa164..d047ee8536 100644 --- a/packaging/distribution/pom.xml +++ b/packaging/distribution/pom.xml @@ -9,6 +9,6 @@ org.alfresco alfresco-community-repo-packaging - 23.1.0.139 + 23.1.0.140-SNAPSHOT diff --git a/packaging/docker-alfresco/pom.xml b/packaging/docker-alfresco/pom.xml index 4043a9868e..505eb77f0d 100644 --- a/packaging/docker-alfresco/pom.xml +++ b/packaging/docker-alfresco/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-community-repo-packaging - 23.1.0.139 + 23.1.0.140-SNAPSHOT diff --git a/packaging/pom.xml b/packaging/pom.xml index d68ad3cdde..cb7705d765 100644 --- a/packaging/pom.xml +++ b/packaging/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-community-repo - 23.1.0.139 + 23.1.0.140-SNAPSHOT diff --git a/packaging/tests/pom.xml b/packaging/tests/pom.xml index 2b216bff95..996f764806 100644 --- a/packaging/tests/pom.xml +++ b/packaging/tests/pom.xml @@ -6,7 +6,7 @@ org.alfresco alfresco-community-repo-packaging - 23.1.0.139 + 23.1.0.140-SNAPSHOT diff --git a/packaging/tests/tas-cmis/pom.xml b/packaging/tests/tas-cmis/pom.xml index 53427d0209..ebe2d1c7f5 100644 --- a/packaging/tests/tas-cmis/pom.xml +++ b/packaging/tests/tas-cmis/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-community-repo-tests - 23.1.0.139 + 23.1.0.140-SNAPSHOT diff --git a/packaging/tests/tas-email/pom.xml b/packaging/tests/tas-email/pom.xml index 3ebaf74225..1d325decc9 100644 --- a/packaging/tests/tas-email/pom.xml +++ b/packaging/tests/tas-email/pom.xml @@ -9,7 +9,7 @@ org.alfresco alfresco-community-repo-tests - 23.1.0.139 + 23.1.0.140-SNAPSHOT diff --git a/packaging/tests/tas-integration/pom.xml b/packaging/tests/tas-integration/pom.xml index b0e5d1fd80..4fb4317690 100644 --- a/packaging/tests/tas-integration/pom.xml +++ b/packaging/tests/tas-integration/pom.xml @@ -9,7 +9,7 @@ org.alfresco alfresco-community-repo-tests - 23.1.0.139 + 23.1.0.140-SNAPSHOT diff --git a/packaging/tests/tas-restapi/pom.xml b/packaging/tests/tas-restapi/pom.xml index 2327a6cde1..9289069239 100644 --- a/packaging/tests/tas-restapi/pom.xml +++ b/packaging/tests/tas-restapi/pom.xml @@ -8,7 +8,7 @@ org.alfresco alfresco-community-repo-tests - 23.1.0.139 + 23.1.0.140-SNAPSHOT diff --git a/packaging/tests/tas-webdav/pom.xml b/packaging/tests/tas-webdav/pom.xml index 428b490f2b..e5ac4c637f 100644 --- a/packaging/tests/tas-webdav/pom.xml +++ b/packaging/tests/tas-webdav/pom.xml @@ -9,7 +9,7 @@ org.alfresco alfresco-community-repo-tests - 23.1.0.139 + 23.1.0.140-SNAPSHOT diff --git a/packaging/war/pom.xml b/packaging/war/pom.xml index 229974589c..945e9a3ac5 100644 --- a/packaging/war/pom.xml +++ b/packaging/war/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-community-repo-packaging - 23.1.0.139 + 23.1.0.140-SNAPSHOT diff --git a/pom.xml b/pom.xml index d4325cb027..1685dc41a3 100644 --- a/pom.xml +++ b/pom.xml @@ -2,7 +2,7 @@ 4.0.0 alfresco-community-repo - 23.1.0.139 + 23.1.0.140-SNAPSHOT pom Alfresco Community Repo Parent @@ -149,7 +149,7 @@ scm:git:https://github.com/Alfresco/alfresco-community-repo.git scm:git:https://github.com/Alfresco/alfresco-community-repo.git https://github.com/Alfresco/alfresco-community-repo - 23.1.0.139 + HEAD diff --git a/remote-api/pom.xml b/remote-api/pom.xml index 670cb8af6b..8861926031 100644 --- a/remote-api/pom.xml +++ b/remote-api/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-community-repo - 23.1.0.139 + 23.1.0.140-SNAPSHOT diff --git a/repository/pom.xml b/repository/pom.xml index 507201bc56..fe2b015da3 100644 --- a/repository/pom.xml +++ b/repository/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-community-repo - 23.1.0.139 + 23.1.0.140-SNAPSHOT From fb98bb09f0913de2da98b33c464b23d8fab71b01 Mon Sep 17 00:00:00 2001 From: alfresco-build <8039454+alfresco-build@users.noreply.github.com> Date: Fri, 16 Jun 2023 15:14:17 +0000 Subject: [PATCH 06/10] [maven-release-plugin][skip ci] prepare release 23.1.0.140 --- amps/ags/pom.xml | 2 +- amps/ags/rm-automation/pom.xml | 2 +- .../rm-automation/rm-automation-community-rest-api/pom.xml | 2 +- amps/ags/rm-community/pom.xml | 2 +- amps/ags/rm-community/rm-community-repo/pom.xml | 2 +- amps/ags/rm-community/rm-community-rest-api-explorer/pom.xml | 2 +- amps/pom.xml | 2 +- amps/share-services/pom.xml | 2 +- core/pom.xml | 2 +- data-model/pom.xml | 2 +- mmt/pom.xml | 2 +- packaging/distribution/pom.xml | 2 +- packaging/docker-alfresco/pom.xml | 2 +- packaging/pom.xml | 2 +- packaging/tests/pom.xml | 2 +- packaging/tests/tas-cmis/pom.xml | 2 +- packaging/tests/tas-email/pom.xml | 2 +- packaging/tests/tas-integration/pom.xml | 2 +- packaging/tests/tas-restapi/pom.xml | 2 +- packaging/tests/tas-webdav/pom.xml | 2 +- packaging/war/pom.xml | 2 +- pom.xml | 4 ++-- remote-api/pom.xml | 2 +- repository/pom.xml | 2 +- 24 files changed, 25 insertions(+), 25 deletions(-) diff --git a/amps/ags/pom.xml b/amps/ags/pom.xml index 35145f54cf..2d9244f7a4 100644 --- a/amps/ags/pom.xml +++ b/amps/ags/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-community-repo-amps - 23.1.0.140-SNAPSHOT + 23.1.0.140 diff --git a/amps/ags/rm-automation/pom.xml b/amps/ags/rm-automation/pom.xml index c16008715d..803632114f 100644 --- a/amps/ags/rm-automation/pom.xml +++ b/amps/ags/rm-automation/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-governance-services-community-parent - 23.1.0.140-SNAPSHOT + 23.1.0.140 diff --git a/amps/ags/rm-automation/rm-automation-community-rest-api/pom.xml b/amps/ags/rm-automation/rm-automation-community-rest-api/pom.xml index e1bd3fd15a..6efee4bce7 100644 --- a/amps/ags/rm-automation/rm-automation-community-rest-api/pom.xml +++ b/amps/ags/rm-automation/rm-automation-community-rest-api/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-governance-services-automation-community-repo - 23.1.0.140-SNAPSHOT + 23.1.0.140 diff --git a/amps/ags/rm-community/pom.xml b/amps/ags/rm-community/pom.xml index 52a6b6db2f..4281134f61 100644 --- a/amps/ags/rm-community/pom.xml +++ b/amps/ags/rm-community/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-governance-services-community-parent - 23.1.0.140-SNAPSHOT + 23.1.0.140 diff --git a/amps/ags/rm-community/rm-community-repo/pom.xml b/amps/ags/rm-community/rm-community-repo/pom.xml index 18a44aea89..d8ea37ff23 100644 --- a/amps/ags/rm-community/rm-community-repo/pom.xml +++ b/amps/ags/rm-community/rm-community-repo/pom.xml @@ -8,7 +8,7 @@ org.alfresco alfresco-governance-services-community-repo-parent - 23.1.0.140-SNAPSHOT + 23.1.0.140 diff --git a/amps/ags/rm-community/rm-community-rest-api-explorer/pom.xml b/amps/ags/rm-community/rm-community-rest-api-explorer/pom.xml index 5a1c1d89df..617213cad7 100644 --- a/amps/ags/rm-community/rm-community-rest-api-explorer/pom.xml +++ b/amps/ags/rm-community/rm-community-rest-api-explorer/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-governance-services-community-repo-parent - 23.1.0.140-SNAPSHOT + 23.1.0.140 diff --git a/amps/pom.xml b/amps/pom.xml index e70636069e..0a151ba0dc 100644 --- a/amps/pom.xml +++ b/amps/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-community-repo - 23.1.0.140-SNAPSHOT + 23.1.0.140 diff --git a/amps/share-services/pom.xml b/amps/share-services/pom.xml index d4f608d0c8..6994aa6f50 100644 --- a/amps/share-services/pom.xml +++ b/amps/share-services/pom.xml @@ -8,7 +8,7 @@ org.alfresco alfresco-community-repo-amps - 23.1.0.140-SNAPSHOT + 23.1.0.140 diff --git a/core/pom.xml b/core/pom.xml index a36d76f08c..0806a72336 100644 --- a/core/pom.xml +++ b/core/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-community-repo - 23.1.0.140-SNAPSHOT + 23.1.0.140 diff --git a/data-model/pom.xml b/data-model/pom.xml index 55717a4cc5..d5abda9c51 100644 --- a/data-model/pom.xml +++ b/data-model/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-community-repo - 23.1.0.140-SNAPSHOT + 23.1.0.140 diff --git a/mmt/pom.xml b/mmt/pom.xml index 7fc32bc32c..06c7630e19 100644 --- a/mmt/pom.xml +++ b/mmt/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-community-repo - 23.1.0.140-SNAPSHOT + 23.1.0.140 diff --git a/packaging/distribution/pom.xml b/packaging/distribution/pom.xml index d047ee8536..66b1023e16 100644 --- a/packaging/distribution/pom.xml +++ b/packaging/distribution/pom.xml @@ -9,6 +9,6 @@ org.alfresco alfresco-community-repo-packaging - 23.1.0.140-SNAPSHOT + 23.1.0.140 diff --git a/packaging/docker-alfresco/pom.xml b/packaging/docker-alfresco/pom.xml index 505eb77f0d..abe1db611a 100644 --- a/packaging/docker-alfresco/pom.xml +++ b/packaging/docker-alfresco/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-community-repo-packaging - 23.1.0.140-SNAPSHOT + 23.1.0.140 diff --git a/packaging/pom.xml b/packaging/pom.xml index cb7705d765..0b7454a33d 100644 --- a/packaging/pom.xml +++ b/packaging/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-community-repo - 23.1.0.140-SNAPSHOT + 23.1.0.140 diff --git a/packaging/tests/pom.xml b/packaging/tests/pom.xml index 996f764806..9c3e8b8af5 100644 --- a/packaging/tests/pom.xml +++ b/packaging/tests/pom.xml @@ -6,7 +6,7 @@ org.alfresco alfresco-community-repo-packaging - 23.1.0.140-SNAPSHOT + 23.1.0.140 diff --git a/packaging/tests/tas-cmis/pom.xml b/packaging/tests/tas-cmis/pom.xml index ebe2d1c7f5..424ede0a42 100644 --- a/packaging/tests/tas-cmis/pom.xml +++ b/packaging/tests/tas-cmis/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-community-repo-tests - 23.1.0.140-SNAPSHOT + 23.1.0.140 diff --git a/packaging/tests/tas-email/pom.xml b/packaging/tests/tas-email/pom.xml index 1d325decc9..2d235ca04d 100644 --- a/packaging/tests/tas-email/pom.xml +++ b/packaging/tests/tas-email/pom.xml @@ -9,7 +9,7 @@ org.alfresco alfresco-community-repo-tests - 23.1.0.140-SNAPSHOT + 23.1.0.140 diff --git a/packaging/tests/tas-integration/pom.xml b/packaging/tests/tas-integration/pom.xml index 4fb4317690..c9fc9e2831 100644 --- a/packaging/tests/tas-integration/pom.xml +++ b/packaging/tests/tas-integration/pom.xml @@ -9,7 +9,7 @@ org.alfresco alfresco-community-repo-tests - 23.1.0.140-SNAPSHOT + 23.1.0.140 diff --git a/packaging/tests/tas-restapi/pom.xml b/packaging/tests/tas-restapi/pom.xml index 9289069239..d95aaaf6cd 100644 --- a/packaging/tests/tas-restapi/pom.xml +++ b/packaging/tests/tas-restapi/pom.xml @@ -8,7 +8,7 @@ org.alfresco alfresco-community-repo-tests - 23.1.0.140-SNAPSHOT + 23.1.0.140 diff --git a/packaging/tests/tas-webdav/pom.xml b/packaging/tests/tas-webdav/pom.xml index e5ac4c637f..77e27cf99b 100644 --- a/packaging/tests/tas-webdav/pom.xml +++ b/packaging/tests/tas-webdav/pom.xml @@ -9,7 +9,7 @@ org.alfresco alfresco-community-repo-tests - 23.1.0.140-SNAPSHOT + 23.1.0.140 diff --git a/packaging/war/pom.xml b/packaging/war/pom.xml index 945e9a3ac5..e7f7b6fbad 100644 --- a/packaging/war/pom.xml +++ b/packaging/war/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-community-repo-packaging - 23.1.0.140-SNAPSHOT + 23.1.0.140 diff --git a/pom.xml b/pom.xml index 1685dc41a3..1111ab3115 100644 --- a/pom.xml +++ b/pom.xml @@ -2,7 +2,7 @@ 4.0.0 alfresco-community-repo - 23.1.0.140-SNAPSHOT + 23.1.0.140 pom Alfresco Community Repo Parent @@ -149,7 +149,7 @@ scm:git:https://github.com/Alfresco/alfresco-community-repo.git scm:git:https://github.com/Alfresco/alfresco-community-repo.git https://github.com/Alfresco/alfresco-community-repo - HEAD + 23.1.0.140 diff --git a/remote-api/pom.xml b/remote-api/pom.xml index 8861926031..06405a579e 100644 --- a/remote-api/pom.xml +++ b/remote-api/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-community-repo - 23.1.0.140-SNAPSHOT + 23.1.0.140 diff --git a/repository/pom.xml b/repository/pom.xml index fe2b015da3..682116c42b 100644 --- a/repository/pom.xml +++ b/repository/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-community-repo - 23.1.0.140-SNAPSHOT + 23.1.0.140 From 3bcef29c301ed40e7077701acfca6edd533cfa78 Mon Sep 17 00:00:00 2001 From: alfresco-build <8039454+alfresco-build@users.noreply.github.com> Date: Fri, 16 Jun 2023 15:14:20 +0000 Subject: [PATCH 07/10] [maven-release-plugin][skip ci] prepare for next development iteration --- amps/ags/pom.xml | 2 +- amps/ags/rm-automation/pom.xml | 2 +- .../rm-automation/rm-automation-community-rest-api/pom.xml | 2 +- amps/ags/rm-community/pom.xml | 2 +- amps/ags/rm-community/rm-community-repo/pom.xml | 2 +- amps/ags/rm-community/rm-community-rest-api-explorer/pom.xml | 2 +- amps/pom.xml | 2 +- amps/share-services/pom.xml | 2 +- core/pom.xml | 2 +- data-model/pom.xml | 2 +- mmt/pom.xml | 2 +- packaging/distribution/pom.xml | 2 +- packaging/docker-alfresco/pom.xml | 2 +- packaging/pom.xml | 2 +- packaging/tests/pom.xml | 2 +- packaging/tests/tas-cmis/pom.xml | 2 +- packaging/tests/tas-email/pom.xml | 2 +- packaging/tests/tas-integration/pom.xml | 2 +- packaging/tests/tas-restapi/pom.xml | 2 +- packaging/tests/tas-webdav/pom.xml | 2 +- packaging/war/pom.xml | 2 +- pom.xml | 4 ++-- remote-api/pom.xml | 2 +- repository/pom.xml | 2 +- 24 files changed, 25 insertions(+), 25 deletions(-) diff --git a/amps/ags/pom.xml b/amps/ags/pom.xml index 2d9244f7a4..cf14a8daf6 100644 --- a/amps/ags/pom.xml +++ b/amps/ags/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-community-repo-amps - 23.1.0.140 + 23.1.0.141-SNAPSHOT diff --git a/amps/ags/rm-automation/pom.xml b/amps/ags/rm-automation/pom.xml index 803632114f..5cd03d2ea9 100644 --- a/amps/ags/rm-automation/pom.xml +++ b/amps/ags/rm-automation/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-governance-services-community-parent - 23.1.0.140 + 23.1.0.141-SNAPSHOT diff --git a/amps/ags/rm-automation/rm-automation-community-rest-api/pom.xml b/amps/ags/rm-automation/rm-automation-community-rest-api/pom.xml index 6efee4bce7..8d2462b335 100644 --- a/amps/ags/rm-automation/rm-automation-community-rest-api/pom.xml +++ b/amps/ags/rm-automation/rm-automation-community-rest-api/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-governance-services-automation-community-repo - 23.1.0.140 + 23.1.0.141-SNAPSHOT diff --git a/amps/ags/rm-community/pom.xml b/amps/ags/rm-community/pom.xml index 4281134f61..136ef16e9b 100644 --- a/amps/ags/rm-community/pom.xml +++ b/amps/ags/rm-community/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-governance-services-community-parent - 23.1.0.140 + 23.1.0.141-SNAPSHOT diff --git a/amps/ags/rm-community/rm-community-repo/pom.xml b/amps/ags/rm-community/rm-community-repo/pom.xml index d8ea37ff23..e598f1c951 100644 --- a/amps/ags/rm-community/rm-community-repo/pom.xml +++ b/amps/ags/rm-community/rm-community-repo/pom.xml @@ -8,7 +8,7 @@ org.alfresco alfresco-governance-services-community-repo-parent - 23.1.0.140 + 23.1.0.141-SNAPSHOT diff --git a/amps/ags/rm-community/rm-community-rest-api-explorer/pom.xml b/amps/ags/rm-community/rm-community-rest-api-explorer/pom.xml index 617213cad7..cc501467c1 100644 --- a/amps/ags/rm-community/rm-community-rest-api-explorer/pom.xml +++ b/amps/ags/rm-community/rm-community-rest-api-explorer/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-governance-services-community-repo-parent - 23.1.0.140 + 23.1.0.141-SNAPSHOT diff --git a/amps/pom.xml b/amps/pom.xml index 0a151ba0dc..59bbb4ff60 100644 --- a/amps/pom.xml +++ b/amps/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-community-repo - 23.1.0.140 + 23.1.0.141-SNAPSHOT diff --git a/amps/share-services/pom.xml b/amps/share-services/pom.xml index 6994aa6f50..6383bdfc84 100644 --- a/amps/share-services/pom.xml +++ b/amps/share-services/pom.xml @@ -8,7 +8,7 @@ org.alfresco alfresco-community-repo-amps - 23.1.0.140 + 23.1.0.141-SNAPSHOT diff --git a/core/pom.xml b/core/pom.xml index 0806a72336..b5be2e25dc 100644 --- a/core/pom.xml +++ b/core/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-community-repo - 23.1.0.140 + 23.1.0.141-SNAPSHOT diff --git a/data-model/pom.xml b/data-model/pom.xml index d5abda9c51..1b6f59f7f0 100644 --- a/data-model/pom.xml +++ b/data-model/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-community-repo - 23.1.0.140 + 23.1.0.141-SNAPSHOT diff --git a/mmt/pom.xml b/mmt/pom.xml index 06c7630e19..db4537c686 100644 --- a/mmt/pom.xml +++ b/mmt/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-community-repo - 23.1.0.140 + 23.1.0.141-SNAPSHOT diff --git a/packaging/distribution/pom.xml b/packaging/distribution/pom.xml index 66b1023e16..6dcd9e5a7f 100644 --- a/packaging/distribution/pom.xml +++ b/packaging/distribution/pom.xml @@ -9,6 +9,6 @@ org.alfresco alfresco-community-repo-packaging - 23.1.0.140 + 23.1.0.141-SNAPSHOT diff --git a/packaging/docker-alfresco/pom.xml b/packaging/docker-alfresco/pom.xml index abe1db611a..5f43572469 100644 --- a/packaging/docker-alfresco/pom.xml +++ b/packaging/docker-alfresco/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-community-repo-packaging - 23.1.0.140 + 23.1.0.141-SNAPSHOT diff --git a/packaging/pom.xml b/packaging/pom.xml index 0b7454a33d..75f7a865dd 100644 --- a/packaging/pom.xml +++ b/packaging/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-community-repo - 23.1.0.140 + 23.1.0.141-SNAPSHOT diff --git a/packaging/tests/pom.xml b/packaging/tests/pom.xml index 9c3e8b8af5..320c51fb94 100644 --- a/packaging/tests/pom.xml +++ b/packaging/tests/pom.xml @@ -6,7 +6,7 @@ org.alfresco alfresco-community-repo-packaging - 23.1.0.140 + 23.1.0.141-SNAPSHOT diff --git a/packaging/tests/tas-cmis/pom.xml b/packaging/tests/tas-cmis/pom.xml index 424ede0a42..b1625758f5 100644 --- a/packaging/tests/tas-cmis/pom.xml +++ b/packaging/tests/tas-cmis/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-community-repo-tests - 23.1.0.140 + 23.1.0.141-SNAPSHOT diff --git a/packaging/tests/tas-email/pom.xml b/packaging/tests/tas-email/pom.xml index 2d235ca04d..051eca6f8f 100644 --- a/packaging/tests/tas-email/pom.xml +++ b/packaging/tests/tas-email/pom.xml @@ -9,7 +9,7 @@ org.alfresco alfresco-community-repo-tests - 23.1.0.140 + 23.1.0.141-SNAPSHOT diff --git a/packaging/tests/tas-integration/pom.xml b/packaging/tests/tas-integration/pom.xml index c9fc9e2831..2291f8f481 100644 --- a/packaging/tests/tas-integration/pom.xml +++ b/packaging/tests/tas-integration/pom.xml @@ -9,7 +9,7 @@ org.alfresco alfresco-community-repo-tests - 23.1.0.140 + 23.1.0.141-SNAPSHOT diff --git a/packaging/tests/tas-restapi/pom.xml b/packaging/tests/tas-restapi/pom.xml index d95aaaf6cd..ed096f2484 100644 --- a/packaging/tests/tas-restapi/pom.xml +++ b/packaging/tests/tas-restapi/pom.xml @@ -8,7 +8,7 @@ org.alfresco alfresco-community-repo-tests - 23.1.0.140 + 23.1.0.141-SNAPSHOT diff --git a/packaging/tests/tas-webdav/pom.xml b/packaging/tests/tas-webdav/pom.xml index 77e27cf99b..c0468ec0be 100644 --- a/packaging/tests/tas-webdav/pom.xml +++ b/packaging/tests/tas-webdav/pom.xml @@ -9,7 +9,7 @@ org.alfresco alfresco-community-repo-tests - 23.1.0.140 + 23.1.0.141-SNAPSHOT diff --git a/packaging/war/pom.xml b/packaging/war/pom.xml index e7f7b6fbad..b63780168b 100644 --- a/packaging/war/pom.xml +++ b/packaging/war/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-community-repo-packaging - 23.1.0.140 + 23.1.0.141-SNAPSHOT diff --git a/pom.xml b/pom.xml index 1111ab3115..a50505f66f 100644 --- a/pom.xml +++ b/pom.xml @@ -2,7 +2,7 @@ 4.0.0 alfresco-community-repo - 23.1.0.140 + 23.1.0.141-SNAPSHOT pom Alfresco Community Repo Parent @@ -149,7 +149,7 @@ scm:git:https://github.com/Alfresco/alfresco-community-repo.git scm:git:https://github.com/Alfresco/alfresco-community-repo.git https://github.com/Alfresco/alfresco-community-repo - 23.1.0.140 + HEAD diff --git a/remote-api/pom.xml b/remote-api/pom.xml index 06405a579e..c08375c268 100644 --- a/remote-api/pom.xml +++ b/remote-api/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-community-repo - 23.1.0.140 + 23.1.0.141-SNAPSHOT diff --git a/repository/pom.xml b/repository/pom.xml index 682116c42b..1e212f57ff 100644 --- a/repository/pom.xml +++ b/repository/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-community-repo - 23.1.0.140 + 23.1.0.141-SNAPSHOT From 1e6e87f24a5994b920e981df71cdb24f7328fb56 Mon Sep 17 00:00:00 2001 From: Alfresco CI User Date: Sun, 18 Jun 2023 00:03:20 +0000 Subject: [PATCH 08/10] [force] Force release for 2023-06-18. From 8bade25669b2df98740c5b438431e8873f5c47f9 Mon Sep 17 00:00:00 2001 From: alfresco-build <8039454+alfresco-build@users.noreply.github.com> Date: Sun, 18 Jun 2023 00:06:29 +0000 Subject: [PATCH 09/10] [maven-release-plugin][skip ci] prepare release 23.1.0.141 --- amps/ags/pom.xml | 2 +- amps/ags/rm-automation/pom.xml | 2 +- .../rm-automation/rm-automation-community-rest-api/pom.xml | 2 +- amps/ags/rm-community/pom.xml | 2 +- amps/ags/rm-community/rm-community-repo/pom.xml | 2 +- amps/ags/rm-community/rm-community-rest-api-explorer/pom.xml | 2 +- amps/pom.xml | 2 +- amps/share-services/pom.xml | 2 +- core/pom.xml | 2 +- data-model/pom.xml | 2 +- mmt/pom.xml | 2 +- packaging/distribution/pom.xml | 2 +- packaging/docker-alfresco/pom.xml | 2 +- packaging/pom.xml | 2 +- packaging/tests/pom.xml | 2 +- packaging/tests/tas-cmis/pom.xml | 2 +- packaging/tests/tas-email/pom.xml | 2 +- packaging/tests/tas-integration/pom.xml | 2 +- packaging/tests/tas-restapi/pom.xml | 2 +- packaging/tests/tas-webdav/pom.xml | 2 +- packaging/war/pom.xml | 2 +- pom.xml | 4 ++-- remote-api/pom.xml | 2 +- repository/pom.xml | 2 +- 24 files changed, 25 insertions(+), 25 deletions(-) diff --git a/amps/ags/pom.xml b/amps/ags/pom.xml index cf14a8daf6..092bc2b63f 100644 --- a/amps/ags/pom.xml +++ b/amps/ags/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-community-repo-amps - 23.1.0.141-SNAPSHOT + 23.1.0.141 diff --git a/amps/ags/rm-automation/pom.xml b/amps/ags/rm-automation/pom.xml index 5cd03d2ea9..ae5fd9476f 100644 --- a/amps/ags/rm-automation/pom.xml +++ b/amps/ags/rm-automation/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-governance-services-community-parent - 23.1.0.141-SNAPSHOT + 23.1.0.141 diff --git a/amps/ags/rm-automation/rm-automation-community-rest-api/pom.xml b/amps/ags/rm-automation/rm-automation-community-rest-api/pom.xml index 8d2462b335..f4897bcb1f 100644 --- a/amps/ags/rm-automation/rm-automation-community-rest-api/pom.xml +++ b/amps/ags/rm-automation/rm-automation-community-rest-api/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-governance-services-automation-community-repo - 23.1.0.141-SNAPSHOT + 23.1.0.141 diff --git a/amps/ags/rm-community/pom.xml b/amps/ags/rm-community/pom.xml index 136ef16e9b..91075fab94 100644 --- a/amps/ags/rm-community/pom.xml +++ b/amps/ags/rm-community/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-governance-services-community-parent - 23.1.0.141-SNAPSHOT + 23.1.0.141 diff --git a/amps/ags/rm-community/rm-community-repo/pom.xml b/amps/ags/rm-community/rm-community-repo/pom.xml index e598f1c951..3ef43a718c 100644 --- a/amps/ags/rm-community/rm-community-repo/pom.xml +++ b/amps/ags/rm-community/rm-community-repo/pom.xml @@ -8,7 +8,7 @@ org.alfresco alfresco-governance-services-community-repo-parent - 23.1.0.141-SNAPSHOT + 23.1.0.141 diff --git a/amps/ags/rm-community/rm-community-rest-api-explorer/pom.xml b/amps/ags/rm-community/rm-community-rest-api-explorer/pom.xml index cc501467c1..388e810cfd 100644 --- a/amps/ags/rm-community/rm-community-rest-api-explorer/pom.xml +++ b/amps/ags/rm-community/rm-community-rest-api-explorer/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-governance-services-community-repo-parent - 23.1.0.141-SNAPSHOT + 23.1.0.141 diff --git a/amps/pom.xml b/amps/pom.xml index 59bbb4ff60..4e4a1ab52f 100644 --- a/amps/pom.xml +++ b/amps/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-community-repo - 23.1.0.141-SNAPSHOT + 23.1.0.141 diff --git a/amps/share-services/pom.xml b/amps/share-services/pom.xml index 6383bdfc84..5daebaeed4 100644 --- a/amps/share-services/pom.xml +++ b/amps/share-services/pom.xml @@ -8,7 +8,7 @@ org.alfresco alfresco-community-repo-amps - 23.1.0.141-SNAPSHOT + 23.1.0.141 diff --git a/core/pom.xml b/core/pom.xml index b5be2e25dc..6a1f2bbff3 100644 --- a/core/pom.xml +++ b/core/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-community-repo - 23.1.0.141-SNAPSHOT + 23.1.0.141 diff --git a/data-model/pom.xml b/data-model/pom.xml index 1b6f59f7f0..6078183b26 100644 --- a/data-model/pom.xml +++ b/data-model/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-community-repo - 23.1.0.141-SNAPSHOT + 23.1.0.141 diff --git a/mmt/pom.xml b/mmt/pom.xml index db4537c686..c9cc7b497f 100644 --- a/mmt/pom.xml +++ b/mmt/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-community-repo - 23.1.0.141-SNAPSHOT + 23.1.0.141 diff --git a/packaging/distribution/pom.xml b/packaging/distribution/pom.xml index 6dcd9e5a7f..5332a787c7 100644 --- a/packaging/distribution/pom.xml +++ b/packaging/distribution/pom.xml @@ -9,6 +9,6 @@ org.alfresco alfresco-community-repo-packaging - 23.1.0.141-SNAPSHOT + 23.1.0.141 diff --git a/packaging/docker-alfresco/pom.xml b/packaging/docker-alfresco/pom.xml index 5f43572469..968c7ab497 100644 --- a/packaging/docker-alfresco/pom.xml +++ b/packaging/docker-alfresco/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-community-repo-packaging - 23.1.0.141-SNAPSHOT + 23.1.0.141 diff --git a/packaging/pom.xml b/packaging/pom.xml index 75f7a865dd..f734034650 100644 --- a/packaging/pom.xml +++ b/packaging/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-community-repo - 23.1.0.141-SNAPSHOT + 23.1.0.141 diff --git a/packaging/tests/pom.xml b/packaging/tests/pom.xml index 320c51fb94..3181dd328b 100644 --- a/packaging/tests/pom.xml +++ b/packaging/tests/pom.xml @@ -6,7 +6,7 @@ org.alfresco alfresco-community-repo-packaging - 23.1.0.141-SNAPSHOT + 23.1.0.141 diff --git a/packaging/tests/tas-cmis/pom.xml b/packaging/tests/tas-cmis/pom.xml index b1625758f5..7c59890341 100644 --- a/packaging/tests/tas-cmis/pom.xml +++ b/packaging/tests/tas-cmis/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-community-repo-tests - 23.1.0.141-SNAPSHOT + 23.1.0.141 diff --git a/packaging/tests/tas-email/pom.xml b/packaging/tests/tas-email/pom.xml index 051eca6f8f..e02b4cab93 100644 --- a/packaging/tests/tas-email/pom.xml +++ b/packaging/tests/tas-email/pom.xml @@ -9,7 +9,7 @@ org.alfresco alfresco-community-repo-tests - 23.1.0.141-SNAPSHOT + 23.1.0.141 diff --git a/packaging/tests/tas-integration/pom.xml b/packaging/tests/tas-integration/pom.xml index 2291f8f481..1b6e340e56 100644 --- a/packaging/tests/tas-integration/pom.xml +++ b/packaging/tests/tas-integration/pom.xml @@ -9,7 +9,7 @@ org.alfresco alfresco-community-repo-tests - 23.1.0.141-SNAPSHOT + 23.1.0.141 diff --git a/packaging/tests/tas-restapi/pom.xml b/packaging/tests/tas-restapi/pom.xml index ed096f2484..3e63e942ad 100644 --- a/packaging/tests/tas-restapi/pom.xml +++ b/packaging/tests/tas-restapi/pom.xml @@ -8,7 +8,7 @@ org.alfresco alfresco-community-repo-tests - 23.1.0.141-SNAPSHOT + 23.1.0.141 diff --git a/packaging/tests/tas-webdav/pom.xml b/packaging/tests/tas-webdav/pom.xml index c0468ec0be..0c6e8f1c40 100644 --- a/packaging/tests/tas-webdav/pom.xml +++ b/packaging/tests/tas-webdav/pom.xml @@ -9,7 +9,7 @@ org.alfresco alfresco-community-repo-tests - 23.1.0.141-SNAPSHOT + 23.1.0.141 diff --git a/packaging/war/pom.xml b/packaging/war/pom.xml index b63780168b..597e054bda 100644 --- a/packaging/war/pom.xml +++ b/packaging/war/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-community-repo-packaging - 23.1.0.141-SNAPSHOT + 23.1.0.141 diff --git a/pom.xml b/pom.xml index a50505f66f..c09d52cb0c 100644 --- a/pom.xml +++ b/pom.xml @@ -2,7 +2,7 @@ 4.0.0 alfresco-community-repo - 23.1.0.141-SNAPSHOT + 23.1.0.141 pom Alfresco Community Repo Parent @@ -149,7 +149,7 @@ scm:git:https://github.com/Alfresco/alfresco-community-repo.git scm:git:https://github.com/Alfresco/alfresco-community-repo.git https://github.com/Alfresco/alfresco-community-repo - HEAD + 23.1.0.141 diff --git a/remote-api/pom.xml b/remote-api/pom.xml index c08375c268..d7d51c81f2 100644 --- a/remote-api/pom.xml +++ b/remote-api/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-community-repo - 23.1.0.141-SNAPSHOT + 23.1.0.141 diff --git a/repository/pom.xml b/repository/pom.xml index 1e212f57ff..c18a4e0491 100644 --- a/repository/pom.xml +++ b/repository/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-community-repo - 23.1.0.141-SNAPSHOT + 23.1.0.141 From 43f1100040d94b46344753fefb32485d4716e85d Mon Sep 17 00:00:00 2001 From: alfresco-build <8039454+alfresco-build@users.noreply.github.com> Date: Sun, 18 Jun 2023 00:06:31 +0000 Subject: [PATCH 10/10] [maven-release-plugin][skip ci] prepare for next development iteration --- amps/ags/pom.xml | 2 +- amps/ags/rm-automation/pom.xml | 2 +- .../rm-automation/rm-automation-community-rest-api/pom.xml | 2 +- amps/ags/rm-community/pom.xml | 2 +- amps/ags/rm-community/rm-community-repo/pom.xml | 2 +- amps/ags/rm-community/rm-community-rest-api-explorer/pom.xml | 2 +- amps/pom.xml | 2 +- amps/share-services/pom.xml | 2 +- core/pom.xml | 2 +- data-model/pom.xml | 2 +- mmt/pom.xml | 2 +- packaging/distribution/pom.xml | 2 +- packaging/docker-alfresco/pom.xml | 2 +- packaging/pom.xml | 2 +- packaging/tests/pom.xml | 2 +- packaging/tests/tas-cmis/pom.xml | 2 +- packaging/tests/tas-email/pom.xml | 2 +- packaging/tests/tas-integration/pom.xml | 2 +- packaging/tests/tas-restapi/pom.xml | 2 +- packaging/tests/tas-webdav/pom.xml | 2 +- packaging/war/pom.xml | 2 +- pom.xml | 4 ++-- remote-api/pom.xml | 2 +- repository/pom.xml | 2 +- 24 files changed, 25 insertions(+), 25 deletions(-) diff --git a/amps/ags/pom.xml b/amps/ags/pom.xml index 092bc2b63f..0bd6b3f505 100644 --- a/amps/ags/pom.xml +++ b/amps/ags/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-community-repo-amps - 23.1.0.141 + 23.1.0.142-SNAPSHOT diff --git a/amps/ags/rm-automation/pom.xml b/amps/ags/rm-automation/pom.xml index ae5fd9476f..bdc1d544d0 100644 --- a/amps/ags/rm-automation/pom.xml +++ b/amps/ags/rm-automation/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-governance-services-community-parent - 23.1.0.141 + 23.1.0.142-SNAPSHOT diff --git a/amps/ags/rm-automation/rm-automation-community-rest-api/pom.xml b/amps/ags/rm-automation/rm-automation-community-rest-api/pom.xml index f4897bcb1f..eb319bda4a 100644 --- a/amps/ags/rm-automation/rm-automation-community-rest-api/pom.xml +++ b/amps/ags/rm-automation/rm-automation-community-rest-api/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-governance-services-automation-community-repo - 23.1.0.141 + 23.1.0.142-SNAPSHOT diff --git a/amps/ags/rm-community/pom.xml b/amps/ags/rm-community/pom.xml index 91075fab94..5a454f22f0 100644 --- a/amps/ags/rm-community/pom.xml +++ b/amps/ags/rm-community/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-governance-services-community-parent - 23.1.0.141 + 23.1.0.142-SNAPSHOT diff --git a/amps/ags/rm-community/rm-community-repo/pom.xml b/amps/ags/rm-community/rm-community-repo/pom.xml index 3ef43a718c..91cb11e22b 100644 --- a/amps/ags/rm-community/rm-community-repo/pom.xml +++ b/amps/ags/rm-community/rm-community-repo/pom.xml @@ -8,7 +8,7 @@ org.alfresco alfresco-governance-services-community-repo-parent - 23.1.0.141 + 23.1.0.142-SNAPSHOT diff --git a/amps/ags/rm-community/rm-community-rest-api-explorer/pom.xml b/amps/ags/rm-community/rm-community-rest-api-explorer/pom.xml index 388e810cfd..05a6d119d7 100644 --- a/amps/ags/rm-community/rm-community-rest-api-explorer/pom.xml +++ b/amps/ags/rm-community/rm-community-rest-api-explorer/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-governance-services-community-repo-parent - 23.1.0.141 + 23.1.0.142-SNAPSHOT diff --git a/amps/pom.xml b/amps/pom.xml index 4e4a1ab52f..cc46d9a317 100644 --- a/amps/pom.xml +++ b/amps/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-community-repo - 23.1.0.141 + 23.1.0.142-SNAPSHOT diff --git a/amps/share-services/pom.xml b/amps/share-services/pom.xml index 5daebaeed4..dfe1b41c38 100644 --- a/amps/share-services/pom.xml +++ b/amps/share-services/pom.xml @@ -8,7 +8,7 @@ org.alfresco alfresco-community-repo-amps - 23.1.0.141 + 23.1.0.142-SNAPSHOT diff --git a/core/pom.xml b/core/pom.xml index 6a1f2bbff3..1f0d46a64e 100644 --- a/core/pom.xml +++ b/core/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-community-repo - 23.1.0.141 + 23.1.0.142-SNAPSHOT diff --git a/data-model/pom.xml b/data-model/pom.xml index 6078183b26..fb65640e50 100644 --- a/data-model/pom.xml +++ b/data-model/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-community-repo - 23.1.0.141 + 23.1.0.142-SNAPSHOT diff --git a/mmt/pom.xml b/mmt/pom.xml index c9cc7b497f..f9e6b5b113 100644 --- a/mmt/pom.xml +++ b/mmt/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-community-repo - 23.1.0.141 + 23.1.0.142-SNAPSHOT diff --git a/packaging/distribution/pom.xml b/packaging/distribution/pom.xml index 5332a787c7..b00c4a24de 100644 --- a/packaging/distribution/pom.xml +++ b/packaging/distribution/pom.xml @@ -9,6 +9,6 @@ org.alfresco alfresco-community-repo-packaging - 23.1.0.141 + 23.1.0.142-SNAPSHOT diff --git a/packaging/docker-alfresco/pom.xml b/packaging/docker-alfresco/pom.xml index 968c7ab497..afec06cedc 100644 --- a/packaging/docker-alfresco/pom.xml +++ b/packaging/docker-alfresco/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-community-repo-packaging - 23.1.0.141 + 23.1.0.142-SNAPSHOT diff --git a/packaging/pom.xml b/packaging/pom.xml index f734034650..6570294469 100644 --- a/packaging/pom.xml +++ b/packaging/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-community-repo - 23.1.0.141 + 23.1.0.142-SNAPSHOT diff --git a/packaging/tests/pom.xml b/packaging/tests/pom.xml index 3181dd328b..52e6af2e3a 100644 --- a/packaging/tests/pom.xml +++ b/packaging/tests/pom.xml @@ -6,7 +6,7 @@ org.alfresco alfresco-community-repo-packaging - 23.1.0.141 + 23.1.0.142-SNAPSHOT diff --git a/packaging/tests/tas-cmis/pom.xml b/packaging/tests/tas-cmis/pom.xml index 7c59890341..d5c53747c4 100644 --- a/packaging/tests/tas-cmis/pom.xml +++ b/packaging/tests/tas-cmis/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-community-repo-tests - 23.1.0.141 + 23.1.0.142-SNAPSHOT diff --git a/packaging/tests/tas-email/pom.xml b/packaging/tests/tas-email/pom.xml index e02b4cab93..9eeb967c7f 100644 --- a/packaging/tests/tas-email/pom.xml +++ b/packaging/tests/tas-email/pom.xml @@ -9,7 +9,7 @@ org.alfresco alfresco-community-repo-tests - 23.1.0.141 + 23.1.0.142-SNAPSHOT diff --git a/packaging/tests/tas-integration/pom.xml b/packaging/tests/tas-integration/pom.xml index 1b6e340e56..7e44d572ac 100644 --- a/packaging/tests/tas-integration/pom.xml +++ b/packaging/tests/tas-integration/pom.xml @@ -9,7 +9,7 @@ org.alfresco alfresco-community-repo-tests - 23.1.0.141 + 23.1.0.142-SNAPSHOT diff --git a/packaging/tests/tas-restapi/pom.xml b/packaging/tests/tas-restapi/pom.xml index 3e63e942ad..30ac72c8bb 100644 --- a/packaging/tests/tas-restapi/pom.xml +++ b/packaging/tests/tas-restapi/pom.xml @@ -8,7 +8,7 @@ org.alfresco alfresco-community-repo-tests - 23.1.0.141 + 23.1.0.142-SNAPSHOT diff --git a/packaging/tests/tas-webdav/pom.xml b/packaging/tests/tas-webdav/pom.xml index 0c6e8f1c40..c1cb688d83 100644 --- a/packaging/tests/tas-webdav/pom.xml +++ b/packaging/tests/tas-webdav/pom.xml @@ -9,7 +9,7 @@ org.alfresco alfresco-community-repo-tests - 23.1.0.141 + 23.1.0.142-SNAPSHOT diff --git a/packaging/war/pom.xml b/packaging/war/pom.xml index 597e054bda..64ace27217 100644 --- a/packaging/war/pom.xml +++ b/packaging/war/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-community-repo-packaging - 23.1.0.141 + 23.1.0.142-SNAPSHOT diff --git a/pom.xml b/pom.xml index c09d52cb0c..0ab775419d 100644 --- a/pom.xml +++ b/pom.xml @@ -2,7 +2,7 @@ 4.0.0 alfresco-community-repo - 23.1.0.141 + 23.1.0.142-SNAPSHOT pom Alfresco Community Repo Parent @@ -149,7 +149,7 @@ scm:git:https://github.com/Alfresco/alfresco-community-repo.git scm:git:https://github.com/Alfresco/alfresco-community-repo.git https://github.com/Alfresco/alfresco-community-repo - 23.1.0.141 + HEAD diff --git a/remote-api/pom.xml b/remote-api/pom.xml index d7d51c81f2..662b47bf7b 100644 --- a/remote-api/pom.xml +++ b/remote-api/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-community-repo - 23.1.0.141 + 23.1.0.142-SNAPSHOT diff --git a/repository/pom.xml b/repository/pom.xml index c18a4e0491..ef9f3dd2fa 100644 --- a/repository/pom.xml +++ b/repository/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-community-repo - 23.1.0.141 + 23.1.0.142-SNAPSHOT