From 1bdd6c022c01ce79330936d128dffa398f7b9faf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Pawe=C5=82=20Rainer?= <62990104+Pawel-608@users.noreply.github.com> Date: Thu, 14 Mar 2024 10:34:09 +0100 Subject: [PATCH 01/10] MNT-24250: bump xalan version (#2497) * MNT-24250: bump xalan version * MNT-24250: bump xalan version * bump xalan * MNT-24250: bump xalan version * MNT-24250: bump xalan version * MNT-24250: bump xalan version * MNT-24250: bump xalan version * MNT-24250: bump xalan version * MNT-24250: bump xalan version * MNT-24250: bump xalan version * MNT-24250: bump xalan version * MNT-24250: bump xalan version * MNT-24250: bump xalan version * MNT-24250: bump xalan version * MNT-24250: bump xalan version * MNT-24250: bump xalan version * MNT-24250: bump xalan version * MNT-24250: alfresco.3 * MNT-24250: alfresco.3 * MNT-24250: alfresco.3 * MNT-24250: alfresco.3 * MNT-24250: alfresco.3 * MNT-24250: 2.7.3 official * MNT-24250: 2.7.3-alfresco.3 * MNT-24250: 2.7.3-alfresco.3 * MNT-24250: 2.7.3-alfresco.3 * MNT-24250: 2.7.3-alfresco.3 * MNT-24250: 2.7.3-alfresco.3 * MNT-24250: 2.7.3-alfresco.3 * MNT-24250: 2.7.3-alfresco.3 * MNT-24250: 2.7.3-alfresco.3 * MNT-24250: 2.7.3-alfresco.3 * MNT-24250: 2.7.3-alfresco.3 * MNT-24250: 2.7.3-alfresco.3 * MNT-24250: 2.7.3-alfresco.3 * MNT-24250: 2.7.3-alfresco.3 * MNT-24250: 2.7.3-alfresco * MNT-24250: 2.7.3-alfresco * MNT-24250: 2.7.3-alfresco * MNT-24250: 2.7.3-alfresco --- pom.xml | 2 +- .../alfresco/repo/template/XSLTProcessor.java | 52 ++++++++++--------- .../executer/XSLTRenderingEngineTest.java | 2 +- 3 files changed, 29 insertions(+), 27 deletions(-) diff --git a/pom.xml b/pom.xml index a12a907a87a..13533709cef 100644 --- a/pom.xml +++ b/pom.xml @@ -328,7 +328,7 @@ xalan xalan - 2.7.2-alfresco + 2.7.3-alfresco diff --git a/repository/src/main/java/org/alfresco/repo/template/XSLTProcessor.java b/repository/src/main/java/org/alfresco/repo/template/XSLTProcessor.java index 7c0947a7ea2..e810a38c216 100644 --- a/repository/src/main/java/org/alfresco/repo/template/XSLTProcessor.java +++ b/repository/src/main/java/org/alfresco/repo/template/XSLTProcessor.java @@ -1,28 +1,28 @@ -/* - * #%L - * Alfresco Repository - * %% - * Copyright (C) 2005 - 2016 Alfresco Software Limited - * %% - * This file is part of the Alfresco software. - * If the software was purchased under a paid Alfresco license, the terms of - * the paid license agreement will prevail. Otherwise, the software is - * provided under the following open source license terms: - * - * Alfresco is free software: you can redistribute it and/or modify - * it under the terms of the GNU Lesser General Public License as published by - * the Free Software Foundation, either version 3 of the License, or - * (at your option) any later version. - * - * Alfresco is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Lesser General Public License for more details. - * - * You should have received a copy of the GNU Lesser General Public License - * along with Alfresco. If not, see . - * #L% - */ +/* + * #%L + * Alfresco Repository + * %% + * Copyright (C) 2005 - 2024 Alfresco Software Limited + * %% + * This file is part of the Alfresco software. + * If the software was purchased under a paid Alfresco license, the terms of + * the paid license agreement will prevail. Otherwise, the software is + * provided under the following open source license terms: + * + * Alfresco is free software: you can redistribute it and/or modify + * it under the terms of the GNU Lesser General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * Alfresco is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public License + * along with Alfresco. If not, see . + * #L% + */ package org.alfresco.repo.template; import java.io.IOException; @@ -59,6 +59,7 @@ import org.apache.commons.lang3.StringUtils; import org.apache.commons.logging.Log; import org.apache.commons.logging.LogFactory; +import org.apache.xalan.processor.TransformerFactoryImpl; import org.apache.xml.utils.Constants; import org.w3c.dom.Document; import org.w3c.dom.Element; @@ -142,6 +143,7 @@ private void process(TemplateSource templateSource, Object model, Writer out) XSLTemplateModel xsltModel = (XSLTemplateModel) model; System.setProperty("org.apache.xalan.extensions.bsf.BSFManager", BSFManager.class.getName()); + System.setProperty("javax.xml.transform.TransformerFactory", TransformerFactoryImpl.class.getName()); Document xslTemplate; try diff --git a/repository/src/test/java/org/alfresco/repo/rendition/executer/XSLTRenderingEngineTest.java b/repository/src/test/java/org/alfresco/repo/rendition/executer/XSLTRenderingEngineTest.java index b4993312cbc..98d89f3bd5e 100644 --- a/repository/src/test/java/org/alfresco/repo/rendition/executer/XSLTRenderingEngineTest.java +++ b/repository/src/test/java/org/alfresco/repo/rendition/executer/XSLTRenderingEngineTest.java @@ -263,7 +263,7 @@ public void testImportXMLDocument() throws Exception fail(); } } - + private FileInfo createXmlFile(NodeRef folder) { return createXmlFile(folder, sampleXML); From a73cf6a71d019fa90eb71d42dde3089adb2222d5 Mon Sep 17 00:00:00 2001 From: alfresco-build <8039454+alfresco-build@users.noreply.github.com> Date: Thu, 14 Mar 2024 10:11:19 +0000 Subject: [PATCH 02/10] [maven-release-plugin][skip ci] prepare release 23.3.0.9 --- 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 204b6c5fe98..b91d1e2cce4 100644 --- a/amps/ags/pom.xml +++ b/amps/ags/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-community-repo-amps - 23.3.0.9-SNAPSHOT + 23.3.0.9 diff --git a/amps/ags/rm-automation/pom.xml b/amps/ags/rm-automation/pom.xml index bc561a4a2c0..55452a3bbb0 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.3.0.9-SNAPSHOT + 23.3.0.9 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 55a705acb9b..dce9b6428a7 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.3.0.9-SNAPSHOT + 23.3.0.9 diff --git a/amps/ags/rm-community/pom.xml b/amps/ags/rm-community/pom.xml index 0629da3150d..e3932ab8e04 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.3.0.9-SNAPSHOT + 23.3.0.9 diff --git a/amps/ags/rm-community/rm-community-repo/pom.xml b/amps/ags/rm-community/rm-community-repo/pom.xml index 1745979c2b1..652d4b00d04 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.3.0.9-SNAPSHOT + 23.3.0.9 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 7c7552959e2..29b58855b85 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.3.0.9-SNAPSHOT + 23.3.0.9 diff --git a/amps/pom.xml b/amps/pom.xml index 21a5e024720..b50612a87d9 100644 --- a/amps/pom.xml +++ b/amps/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-community-repo - 23.3.0.9-SNAPSHOT + 23.3.0.9 diff --git a/amps/share-services/pom.xml b/amps/share-services/pom.xml index 24cf76eed11..884f5b51fbd 100644 --- a/amps/share-services/pom.xml +++ b/amps/share-services/pom.xml @@ -8,7 +8,7 @@ org.alfresco alfresco-community-repo-amps - 23.3.0.9-SNAPSHOT + 23.3.0.9 diff --git a/core/pom.xml b/core/pom.xml index 715d45a9c39..5973f060231 100644 --- a/core/pom.xml +++ b/core/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-community-repo - 23.3.0.9-SNAPSHOT + 23.3.0.9 diff --git a/data-model/pom.xml b/data-model/pom.xml index 731a5d1ec8a..f635a22f823 100644 --- a/data-model/pom.xml +++ b/data-model/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-community-repo - 23.3.0.9-SNAPSHOT + 23.3.0.9 diff --git a/mmt/pom.xml b/mmt/pom.xml index c5e6f6b4e8a..62ff2f97819 100644 --- a/mmt/pom.xml +++ b/mmt/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-community-repo - 23.3.0.9-SNAPSHOT + 23.3.0.9 diff --git a/packaging/distribution/pom.xml b/packaging/distribution/pom.xml index 84c6136f6d0..c5312893f98 100644 --- a/packaging/distribution/pom.xml +++ b/packaging/distribution/pom.xml @@ -9,6 +9,6 @@ org.alfresco alfresco-community-repo-packaging - 23.3.0.9-SNAPSHOT + 23.3.0.9 diff --git a/packaging/docker-alfresco/pom.xml b/packaging/docker-alfresco/pom.xml index 6c7c98559af..5541665664a 100644 --- a/packaging/docker-alfresco/pom.xml +++ b/packaging/docker-alfresco/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-community-repo-packaging - 23.3.0.9-SNAPSHOT + 23.3.0.9 diff --git a/packaging/pom.xml b/packaging/pom.xml index 2329dc71c55..71d2f94a509 100644 --- a/packaging/pom.xml +++ b/packaging/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-community-repo - 23.3.0.9-SNAPSHOT + 23.3.0.9 diff --git a/packaging/tests/pom.xml b/packaging/tests/pom.xml index 7f0dde7488b..5a6f5b2a99a 100644 --- a/packaging/tests/pom.xml +++ b/packaging/tests/pom.xml @@ -6,7 +6,7 @@ org.alfresco alfresco-community-repo-packaging - 23.3.0.9-SNAPSHOT + 23.3.0.9 diff --git a/packaging/tests/tas-cmis/pom.xml b/packaging/tests/tas-cmis/pom.xml index 4182721373e..cf7cddcd944 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.3.0.9-SNAPSHOT + 23.3.0.9 diff --git a/packaging/tests/tas-email/pom.xml b/packaging/tests/tas-email/pom.xml index b1363dc7044..d680cc58f57 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.3.0.9-SNAPSHOT + 23.3.0.9 diff --git a/packaging/tests/tas-integration/pom.xml b/packaging/tests/tas-integration/pom.xml index 29f4553b9ea..44b6e45b06c 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.3.0.9-SNAPSHOT + 23.3.0.9 diff --git a/packaging/tests/tas-restapi/pom.xml b/packaging/tests/tas-restapi/pom.xml index d01ee59146e..d4b3ae22b2b 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.3.0.9-SNAPSHOT + 23.3.0.9 diff --git a/packaging/tests/tas-webdav/pom.xml b/packaging/tests/tas-webdav/pom.xml index d085ec9ac26..eb10ab8d157 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.3.0.9-SNAPSHOT + 23.3.0.9 diff --git a/packaging/war/pom.xml b/packaging/war/pom.xml index 6b671fd0702..b1f1071aefc 100644 --- a/packaging/war/pom.xml +++ b/packaging/war/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-community-repo-packaging - 23.3.0.9-SNAPSHOT + 23.3.0.9 diff --git a/pom.xml b/pom.xml index 13533709cef..db86c439df0 100644 --- a/pom.xml +++ b/pom.xml @@ -2,7 +2,7 @@ 4.0.0 alfresco-community-repo - 23.3.0.9-SNAPSHOT + 23.3.0.9 pom Alfresco Community Repo Parent @@ -151,7 +151,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.3.0.9 diff --git a/remote-api/pom.xml b/remote-api/pom.xml index ea87a60493d..91c263e20d9 100644 --- a/remote-api/pom.xml +++ b/remote-api/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-community-repo - 23.3.0.9-SNAPSHOT + 23.3.0.9 diff --git a/repository/pom.xml b/repository/pom.xml index 081e153a6b4..da865cb8060 100644 --- a/repository/pom.xml +++ b/repository/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-community-repo - 23.3.0.9-SNAPSHOT + 23.3.0.9 From 8bedeedfd5854e064809668845223ffc3a2af780 Mon Sep 17 00:00:00 2001 From: alfresco-build <8039454+alfresco-build@users.noreply.github.com> Date: Thu, 14 Mar 2024 10:11:22 +0000 Subject: [PATCH 03/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 b91d1e2cce4..003073a5691 100644 --- a/amps/ags/pom.xml +++ b/amps/ags/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-community-repo-amps - 23.3.0.9 + 23.3.0.10-SNAPSHOT diff --git a/amps/ags/rm-automation/pom.xml b/amps/ags/rm-automation/pom.xml index 55452a3bbb0..e61753d00a8 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.3.0.9 + 23.3.0.10-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 dce9b6428a7..80c18fb6100 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.3.0.9 + 23.3.0.10-SNAPSHOT diff --git a/amps/ags/rm-community/pom.xml b/amps/ags/rm-community/pom.xml index e3932ab8e04..22d3b6221fe 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.3.0.9 + 23.3.0.10-SNAPSHOT diff --git a/amps/ags/rm-community/rm-community-repo/pom.xml b/amps/ags/rm-community/rm-community-repo/pom.xml index 652d4b00d04..5194dca4537 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.3.0.9 + 23.3.0.10-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 29b58855b85..2bb400a83ed 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.3.0.9 + 23.3.0.10-SNAPSHOT diff --git a/amps/pom.xml b/amps/pom.xml index b50612a87d9..f4c19feaf75 100644 --- a/amps/pom.xml +++ b/amps/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-community-repo - 23.3.0.9 + 23.3.0.10-SNAPSHOT diff --git a/amps/share-services/pom.xml b/amps/share-services/pom.xml index 884f5b51fbd..c02de7ea6a3 100644 --- a/amps/share-services/pom.xml +++ b/amps/share-services/pom.xml @@ -8,7 +8,7 @@ org.alfresco alfresco-community-repo-amps - 23.3.0.9 + 23.3.0.10-SNAPSHOT diff --git a/core/pom.xml b/core/pom.xml index 5973f060231..863132c84f8 100644 --- a/core/pom.xml +++ b/core/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-community-repo - 23.3.0.9 + 23.3.0.10-SNAPSHOT diff --git a/data-model/pom.xml b/data-model/pom.xml index f635a22f823..64ed37bf389 100644 --- a/data-model/pom.xml +++ b/data-model/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-community-repo - 23.3.0.9 + 23.3.0.10-SNAPSHOT diff --git a/mmt/pom.xml b/mmt/pom.xml index 62ff2f97819..b6f3690cb5e 100644 --- a/mmt/pom.xml +++ b/mmt/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-community-repo - 23.3.0.9 + 23.3.0.10-SNAPSHOT diff --git a/packaging/distribution/pom.xml b/packaging/distribution/pom.xml index c5312893f98..1e85e81646a 100644 --- a/packaging/distribution/pom.xml +++ b/packaging/distribution/pom.xml @@ -9,6 +9,6 @@ org.alfresco alfresco-community-repo-packaging - 23.3.0.9 + 23.3.0.10-SNAPSHOT diff --git a/packaging/docker-alfresco/pom.xml b/packaging/docker-alfresco/pom.xml index 5541665664a..0ccf33e1ff0 100644 --- a/packaging/docker-alfresco/pom.xml +++ b/packaging/docker-alfresco/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-community-repo-packaging - 23.3.0.9 + 23.3.0.10-SNAPSHOT diff --git a/packaging/pom.xml b/packaging/pom.xml index 71d2f94a509..4938abc619d 100644 --- a/packaging/pom.xml +++ b/packaging/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-community-repo - 23.3.0.9 + 23.3.0.10-SNAPSHOT diff --git a/packaging/tests/pom.xml b/packaging/tests/pom.xml index 5a6f5b2a99a..f2dc68b3abf 100644 --- a/packaging/tests/pom.xml +++ b/packaging/tests/pom.xml @@ -6,7 +6,7 @@ org.alfresco alfresco-community-repo-packaging - 23.3.0.9 + 23.3.0.10-SNAPSHOT diff --git a/packaging/tests/tas-cmis/pom.xml b/packaging/tests/tas-cmis/pom.xml index cf7cddcd944..b105d2b4265 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.3.0.9 + 23.3.0.10-SNAPSHOT diff --git a/packaging/tests/tas-email/pom.xml b/packaging/tests/tas-email/pom.xml index d680cc58f57..84738aa7186 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.3.0.9 + 23.3.0.10-SNAPSHOT diff --git a/packaging/tests/tas-integration/pom.xml b/packaging/tests/tas-integration/pom.xml index 44b6e45b06c..e329fd38e8f 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.3.0.9 + 23.3.0.10-SNAPSHOT diff --git a/packaging/tests/tas-restapi/pom.xml b/packaging/tests/tas-restapi/pom.xml index d4b3ae22b2b..c4103df385f 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.3.0.9 + 23.3.0.10-SNAPSHOT diff --git a/packaging/tests/tas-webdav/pom.xml b/packaging/tests/tas-webdav/pom.xml index eb10ab8d157..0cc94456616 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.3.0.9 + 23.3.0.10-SNAPSHOT diff --git a/packaging/war/pom.xml b/packaging/war/pom.xml index b1f1071aefc..cfa28e3fdaa 100644 --- a/packaging/war/pom.xml +++ b/packaging/war/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-community-repo-packaging - 23.3.0.9 + 23.3.0.10-SNAPSHOT diff --git a/pom.xml b/pom.xml index db86c439df0..58e8ae354bc 100644 --- a/pom.xml +++ b/pom.xml @@ -2,7 +2,7 @@ 4.0.0 alfresco-community-repo - 23.3.0.9 + 23.3.0.10-SNAPSHOT pom Alfresco Community Repo Parent @@ -151,7 +151,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.3.0.9 + HEAD diff --git a/remote-api/pom.xml b/remote-api/pom.xml index 91c263e20d9..c65e5a010f9 100644 --- a/remote-api/pom.xml +++ b/remote-api/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-community-repo - 23.3.0.9 + 23.3.0.10-SNAPSHOT diff --git a/repository/pom.xml b/repository/pom.xml index da865cb8060..dc34ffc10ca 100644 --- a/repository/pom.xml +++ b/repository/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-community-repo - 23.3.0.9 + 23.3.0.10-SNAPSHOT From 563f65825fac51c1f31fa79c9bd3b4eb9b3002df Mon Sep 17 00:00:00 2001 From: Alfresco CI User Date: Sun, 17 Mar 2024 00:04:08 +0000 Subject: [PATCH 04/10] [force] Force release for 2024-03-17. From f09266c0815a93a998268e23bf0b4f533cfc3775 Mon Sep 17 00:00:00 2001 From: alfresco-build <8039454+alfresco-build@users.noreply.github.com> Date: Sun, 17 Mar 2024 00:06:49 +0000 Subject: [PATCH 05/10] [maven-release-plugin][skip ci] prepare release 23.3.0.10 --- 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 003073a5691..e0510c4558a 100644 --- a/amps/ags/pom.xml +++ b/amps/ags/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-community-repo-amps - 23.3.0.10-SNAPSHOT + 23.3.0.10 diff --git a/amps/ags/rm-automation/pom.xml b/amps/ags/rm-automation/pom.xml index e61753d00a8..b709e18d6e2 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.3.0.10-SNAPSHOT + 23.3.0.10 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 80c18fb6100..67fbb56892c 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.3.0.10-SNAPSHOT + 23.3.0.10 diff --git a/amps/ags/rm-community/pom.xml b/amps/ags/rm-community/pom.xml index 22d3b6221fe..e209faf9ab9 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.3.0.10-SNAPSHOT + 23.3.0.10 diff --git a/amps/ags/rm-community/rm-community-repo/pom.xml b/amps/ags/rm-community/rm-community-repo/pom.xml index 5194dca4537..d240e90a457 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.3.0.10-SNAPSHOT + 23.3.0.10 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 2bb400a83ed..ca6f4c097a4 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.3.0.10-SNAPSHOT + 23.3.0.10 diff --git a/amps/pom.xml b/amps/pom.xml index f4c19feaf75..7c17de7c4fd 100644 --- a/amps/pom.xml +++ b/amps/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-community-repo - 23.3.0.10-SNAPSHOT + 23.3.0.10 diff --git a/amps/share-services/pom.xml b/amps/share-services/pom.xml index c02de7ea6a3..d1dbf72aa4e 100644 --- a/amps/share-services/pom.xml +++ b/amps/share-services/pom.xml @@ -8,7 +8,7 @@ org.alfresco alfresco-community-repo-amps - 23.3.0.10-SNAPSHOT + 23.3.0.10 diff --git a/core/pom.xml b/core/pom.xml index 863132c84f8..b981ffe6c05 100644 --- a/core/pom.xml +++ b/core/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-community-repo - 23.3.0.10-SNAPSHOT + 23.3.0.10 diff --git a/data-model/pom.xml b/data-model/pom.xml index 64ed37bf389..9e244539b1d 100644 --- a/data-model/pom.xml +++ b/data-model/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-community-repo - 23.3.0.10-SNAPSHOT + 23.3.0.10 diff --git a/mmt/pom.xml b/mmt/pom.xml index b6f3690cb5e..55faf27e6f7 100644 --- a/mmt/pom.xml +++ b/mmt/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-community-repo - 23.3.0.10-SNAPSHOT + 23.3.0.10 diff --git a/packaging/distribution/pom.xml b/packaging/distribution/pom.xml index 1e85e81646a..d79220c88c0 100644 --- a/packaging/distribution/pom.xml +++ b/packaging/distribution/pom.xml @@ -9,6 +9,6 @@ org.alfresco alfresco-community-repo-packaging - 23.3.0.10-SNAPSHOT + 23.3.0.10 diff --git a/packaging/docker-alfresco/pom.xml b/packaging/docker-alfresco/pom.xml index 0ccf33e1ff0..8832051b3c7 100644 --- a/packaging/docker-alfresco/pom.xml +++ b/packaging/docker-alfresco/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-community-repo-packaging - 23.3.0.10-SNAPSHOT + 23.3.0.10 diff --git a/packaging/pom.xml b/packaging/pom.xml index 4938abc619d..773c78dc18e 100644 --- a/packaging/pom.xml +++ b/packaging/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-community-repo - 23.3.0.10-SNAPSHOT + 23.3.0.10 diff --git a/packaging/tests/pom.xml b/packaging/tests/pom.xml index f2dc68b3abf..bf39495987b 100644 --- a/packaging/tests/pom.xml +++ b/packaging/tests/pom.xml @@ -6,7 +6,7 @@ org.alfresco alfresco-community-repo-packaging - 23.3.0.10-SNAPSHOT + 23.3.0.10 diff --git a/packaging/tests/tas-cmis/pom.xml b/packaging/tests/tas-cmis/pom.xml index b105d2b4265..c3033766b38 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.3.0.10-SNAPSHOT + 23.3.0.10 diff --git a/packaging/tests/tas-email/pom.xml b/packaging/tests/tas-email/pom.xml index 84738aa7186..d4e7a6e57c3 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.3.0.10-SNAPSHOT + 23.3.0.10 diff --git a/packaging/tests/tas-integration/pom.xml b/packaging/tests/tas-integration/pom.xml index e329fd38e8f..baac5631cca 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.3.0.10-SNAPSHOT + 23.3.0.10 diff --git a/packaging/tests/tas-restapi/pom.xml b/packaging/tests/tas-restapi/pom.xml index c4103df385f..8d523ee3425 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.3.0.10-SNAPSHOT + 23.3.0.10 diff --git a/packaging/tests/tas-webdav/pom.xml b/packaging/tests/tas-webdav/pom.xml index 0cc94456616..0d17312d7c0 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.3.0.10-SNAPSHOT + 23.3.0.10 diff --git a/packaging/war/pom.xml b/packaging/war/pom.xml index cfa28e3fdaa..1de5b25b432 100644 --- a/packaging/war/pom.xml +++ b/packaging/war/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-community-repo-packaging - 23.3.0.10-SNAPSHOT + 23.3.0.10 diff --git a/pom.xml b/pom.xml index 58e8ae354bc..0e908626cfe 100644 --- a/pom.xml +++ b/pom.xml @@ -2,7 +2,7 @@ 4.0.0 alfresco-community-repo - 23.3.0.10-SNAPSHOT + 23.3.0.10 pom Alfresco Community Repo Parent @@ -151,7 +151,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.3.0.10 diff --git a/remote-api/pom.xml b/remote-api/pom.xml index c65e5a010f9..84d327adb8f 100644 --- a/remote-api/pom.xml +++ b/remote-api/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-community-repo - 23.3.0.10-SNAPSHOT + 23.3.0.10 diff --git a/repository/pom.xml b/repository/pom.xml index dc34ffc10ca..1dbfbc8225d 100644 --- a/repository/pom.xml +++ b/repository/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-community-repo - 23.3.0.10-SNAPSHOT + 23.3.0.10 From a82199967c6acbb77c5c369d7af469e4107167f6 Mon Sep 17 00:00:00 2001 From: alfresco-build <8039454+alfresco-build@users.noreply.github.com> Date: Sun, 17 Mar 2024 00:06:51 +0000 Subject: [PATCH 06/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 e0510c4558a..f15c9429fba 100644 --- a/amps/ags/pom.xml +++ b/amps/ags/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-community-repo-amps - 23.3.0.10 + 23.3.0.11-SNAPSHOT diff --git a/amps/ags/rm-automation/pom.xml b/amps/ags/rm-automation/pom.xml index b709e18d6e2..a27f7263b42 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.3.0.10 + 23.3.0.11-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 67fbb56892c..a91ab280b2d 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.3.0.10 + 23.3.0.11-SNAPSHOT diff --git a/amps/ags/rm-community/pom.xml b/amps/ags/rm-community/pom.xml index e209faf9ab9..2fa6ed68538 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.3.0.10 + 23.3.0.11-SNAPSHOT diff --git a/amps/ags/rm-community/rm-community-repo/pom.xml b/amps/ags/rm-community/rm-community-repo/pom.xml index d240e90a457..bc40469be43 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.3.0.10 + 23.3.0.11-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 ca6f4c097a4..df2c380397a 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.3.0.10 + 23.3.0.11-SNAPSHOT diff --git a/amps/pom.xml b/amps/pom.xml index 7c17de7c4fd..e1b062db0f6 100644 --- a/amps/pom.xml +++ b/amps/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-community-repo - 23.3.0.10 + 23.3.0.11-SNAPSHOT diff --git a/amps/share-services/pom.xml b/amps/share-services/pom.xml index d1dbf72aa4e..e643d84ef66 100644 --- a/amps/share-services/pom.xml +++ b/amps/share-services/pom.xml @@ -8,7 +8,7 @@ org.alfresco alfresco-community-repo-amps - 23.3.0.10 + 23.3.0.11-SNAPSHOT diff --git a/core/pom.xml b/core/pom.xml index b981ffe6c05..e2b4c7136ba 100644 --- a/core/pom.xml +++ b/core/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-community-repo - 23.3.0.10 + 23.3.0.11-SNAPSHOT diff --git a/data-model/pom.xml b/data-model/pom.xml index 9e244539b1d..a18c93d0f58 100644 --- a/data-model/pom.xml +++ b/data-model/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-community-repo - 23.3.0.10 + 23.3.0.11-SNAPSHOT diff --git a/mmt/pom.xml b/mmt/pom.xml index 55faf27e6f7..e9e27d19fd8 100644 --- a/mmt/pom.xml +++ b/mmt/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-community-repo - 23.3.0.10 + 23.3.0.11-SNAPSHOT diff --git a/packaging/distribution/pom.xml b/packaging/distribution/pom.xml index d79220c88c0..5e354bb35f7 100644 --- a/packaging/distribution/pom.xml +++ b/packaging/distribution/pom.xml @@ -9,6 +9,6 @@ org.alfresco alfresco-community-repo-packaging - 23.3.0.10 + 23.3.0.11-SNAPSHOT diff --git a/packaging/docker-alfresco/pom.xml b/packaging/docker-alfresco/pom.xml index 8832051b3c7..5ee209843c8 100644 --- a/packaging/docker-alfresco/pom.xml +++ b/packaging/docker-alfresco/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-community-repo-packaging - 23.3.0.10 + 23.3.0.11-SNAPSHOT diff --git a/packaging/pom.xml b/packaging/pom.xml index 773c78dc18e..e3fae820c14 100644 --- a/packaging/pom.xml +++ b/packaging/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-community-repo - 23.3.0.10 + 23.3.0.11-SNAPSHOT diff --git a/packaging/tests/pom.xml b/packaging/tests/pom.xml index bf39495987b..cff8d53499a 100644 --- a/packaging/tests/pom.xml +++ b/packaging/tests/pom.xml @@ -6,7 +6,7 @@ org.alfresco alfresco-community-repo-packaging - 23.3.0.10 + 23.3.0.11-SNAPSHOT diff --git a/packaging/tests/tas-cmis/pom.xml b/packaging/tests/tas-cmis/pom.xml index c3033766b38..1ff93b146e6 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.3.0.10 + 23.3.0.11-SNAPSHOT diff --git a/packaging/tests/tas-email/pom.xml b/packaging/tests/tas-email/pom.xml index d4e7a6e57c3..72353f26d49 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.3.0.10 + 23.3.0.11-SNAPSHOT diff --git a/packaging/tests/tas-integration/pom.xml b/packaging/tests/tas-integration/pom.xml index baac5631cca..65f129a0418 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.3.0.10 + 23.3.0.11-SNAPSHOT diff --git a/packaging/tests/tas-restapi/pom.xml b/packaging/tests/tas-restapi/pom.xml index 8d523ee3425..e6945ab3ea7 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.3.0.10 + 23.3.0.11-SNAPSHOT diff --git a/packaging/tests/tas-webdav/pom.xml b/packaging/tests/tas-webdav/pom.xml index 0d17312d7c0..807c31fc31b 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.3.0.10 + 23.3.0.11-SNAPSHOT diff --git a/packaging/war/pom.xml b/packaging/war/pom.xml index 1de5b25b432..ec9ac65e6cf 100644 --- a/packaging/war/pom.xml +++ b/packaging/war/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-community-repo-packaging - 23.3.0.10 + 23.3.0.11-SNAPSHOT diff --git a/pom.xml b/pom.xml index 0e908626cfe..a1fe2e32c4a 100644 --- a/pom.xml +++ b/pom.xml @@ -2,7 +2,7 @@ 4.0.0 alfresco-community-repo - 23.3.0.10 + 23.3.0.11-SNAPSHOT pom Alfresco Community Repo Parent @@ -151,7 +151,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.3.0.10 + HEAD diff --git a/remote-api/pom.xml b/remote-api/pom.xml index 84d327adb8f..56b993c8314 100644 --- a/remote-api/pom.xml +++ b/remote-api/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-community-repo - 23.3.0.10 + 23.3.0.11-SNAPSHOT diff --git a/repository/pom.xml b/repository/pom.xml index 1dbfbc8225d..cc11e4b6740 100644 --- a/repository/pom.xml +++ b/repository/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-community-repo - 23.3.0.10 + 23.3.0.11-SNAPSHOT From 86070d881c69519521e992ab2ad51aa65e0e5956 Mon Sep 17 00:00:00 2001 From: Maciej Pichura <41297682+mpichura@users.noreply.github.com> Date: Mon, 18 Mar 2024 11:54:56 +0100 Subject: [PATCH 07/10] ACS-6884: Bump api-explorer version to 23.2.0 (GA) (#2480) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * ACS-6884: Bump api-explorer version to 23.2.0 (GA) * Bump org.springframework.security:spring-security-bom (#2453) Bumps [org.springframework.security:spring-security-bom](https://github.com/spring-projects/spring-security) from 6.1.4 to 6.2.2. - [Release notes](https://github.com/spring-projects/spring-security/releases) - [Changelog](https://github.com/spring-projects/spring-security/blob/main/RELEASE.adoc) - [Commits](https://github.com/spring-projects/spring-security/compare/6.1.4...6.2.2) --- updated-dependencies: - dependency-name: org.springframework.security:spring-security-bom dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * ACS-6931 Temporarily turn off SAST Scan (#2489) ACS-6931 Temporarily turn off SAST Scan * [maven-release-plugin][skip ci] prepare release 23.3.0.7 * [maven-release-plugin][skip ci] prepare for next development iteration * [force] Force release for 2024-03-10. * [maven-release-plugin][skip ci] prepare release 23.3.0.8 * [maven-release-plugin][skip ci] prepare for next development iteration * MNT-24250: bump xalan version (#2497) * MNT-24250: bump xalan version * MNT-24250: bump xalan version * bump xalan * MNT-24250: bump xalan version * MNT-24250: bump xalan version * MNT-24250: bump xalan version * MNT-24250: bump xalan version * MNT-24250: bump xalan version * MNT-24250: bump xalan version * MNT-24250: bump xalan version * MNT-24250: bump xalan version * MNT-24250: bump xalan version * MNT-24250: bump xalan version * MNT-24250: bump xalan version * MNT-24250: bump xalan version * MNT-24250: bump xalan version * MNT-24250: bump xalan version * MNT-24250: alfresco.3 * MNT-24250: alfresco.3 * MNT-24250: alfresco.3 * MNT-24250: alfresco.3 * MNT-24250: alfresco.3 * MNT-24250: 2.7.3 official * MNT-24250: 2.7.3-alfresco.3 * MNT-24250: 2.7.3-alfresco.3 * MNT-24250: 2.7.3-alfresco.3 * MNT-24250: 2.7.3-alfresco.3 * MNT-24250: 2.7.3-alfresco.3 * MNT-24250: 2.7.3-alfresco.3 * MNT-24250: 2.7.3-alfresco.3 * MNT-24250: 2.7.3-alfresco.3 * MNT-24250: 2.7.3-alfresco.3 * MNT-24250: 2.7.3-alfresco.3 * MNT-24250: 2.7.3-alfresco.3 * MNT-24250: 2.7.3-alfresco.3 * MNT-24250: 2.7.3-alfresco.3 * MNT-24250: 2.7.3-alfresco * MNT-24250: 2.7.3-alfresco * MNT-24250: 2.7.3-alfresco * MNT-24250: 2.7.3-alfresco * [maven-release-plugin][skip ci] prepare release 23.3.0.9 * [maven-release-plugin][skip ci] prepare for next development iteration * [force] Force release for 2024-03-17. * [maven-release-plugin][skip ci] prepare release 23.3.0.10 * [maven-release-plugin][skip ci] prepare for next development iteration --------- Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: mikolajbrzezinski <86791239+mikolajbrzezinski@users.noreply.github.com> Co-authored-by: alfresco-build <8039454+alfresco-build@users.noreply.github.com> Co-authored-by: Alfresco CI User Co-authored-by: Paweł Rainer <62990104+Pawel-608@users.noreply.github.com> --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index a1fe2e32c4a..5622bcf8828 100644 --- a/pom.xml +++ b/pom.xml @@ -114,7 +114,7 @@ 2.5.0 4.1.0 3.0.0 - 23.1.0 + 23.2.0 2.2.0 2.0.1 From 6bdcaa9b10d064960b70392fca790db2ae4b214f Mon Sep 17 00:00:00 2001 From: mohit-singh4 <158050587+mohit-singh4@users.noreply.github.com> Date: Mon, 18 Mar 2024 20:54:04 +0530 Subject: [PATCH 08/10] [APPS-2576] fix for Security Web Vulnerability (#2516) --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 5622bcf8828..83b56d95847 100644 --- a/pom.xml +++ b/pom.xml @@ -57,7 +57,7 @@ 0.0.27 1.9.20.1 - 6.0.14 + 6.0.17 6.2.2 3.5.3 2.15.2 From 87b91b6cae5b03befae248f1ebd1d74439d7740e Mon Sep 17 00:00:00 2001 From: alfresco-build <8039454+alfresco-build@users.noreply.github.com> Date: Mon, 18 Mar 2024 16:00:08 +0000 Subject: [PATCH 09/10] [maven-release-plugin][skip ci] prepare release 23.3.0.11 --- 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 f15c9429fba..0a4d9516a87 100644 --- a/amps/ags/pom.xml +++ b/amps/ags/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-community-repo-amps - 23.3.0.11-SNAPSHOT + 23.3.0.11 diff --git a/amps/ags/rm-automation/pom.xml b/amps/ags/rm-automation/pom.xml index a27f7263b42..5023be44247 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.3.0.11-SNAPSHOT + 23.3.0.11 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 a91ab280b2d..ab3b5b3a161 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.3.0.11-SNAPSHOT + 23.3.0.11 diff --git a/amps/ags/rm-community/pom.xml b/amps/ags/rm-community/pom.xml index 2fa6ed68538..7ac70c784c9 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.3.0.11-SNAPSHOT + 23.3.0.11 diff --git a/amps/ags/rm-community/rm-community-repo/pom.xml b/amps/ags/rm-community/rm-community-repo/pom.xml index bc40469be43..7f48ab1d221 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.3.0.11-SNAPSHOT + 23.3.0.11 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 df2c380397a..715c2ad39e7 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.3.0.11-SNAPSHOT + 23.3.0.11 diff --git a/amps/pom.xml b/amps/pom.xml index e1b062db0f6..71169a9f2e5 100644 --- a/amps/pom.xml +++ b/amps/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-community-repo - 23.3.0.11-SNAPSHOT + 23.3.0.11 diff --git a/amps/share-services/pom.xml b/amps/share-services/pom.xml index e643d84ef66..93f16b1a1e4 100644 --- a/amps/share-services/pom.xml +++ b/amps/share-services/pom.xml @@ -8,7 +8,7 @@ org.alfresco alfresco-community-repo-amps - 23.3.0.11-SNAPSHOT + 23.3.0.11 diff --git a/core/pom.xml b/core/pom.xml index e2b4c7136ba..9feab440eb0 100644 --- a/core/pom.xml +++ b/core/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-community-repo - 23.3.0.11-SNAPSHOT + 23.3.0.11 diff --git a/data-model/pom.xml b/data-model/pom.xml index a18c93d0f58..10d9795e0cc 100644 --- a/data-model/pom.xml +++ b/data-model/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-community-repo - 23.3.0.11-SNAPSHOT + 23.3.0.11 diff --git a/mmt/pom.xml b/mmt/pom.xml index e9e27d19fd8..382a86b4409 100644 --- a/mmt/pom.xml +++ b/mmt/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-community-repo - 23.3.0.11-SNAPSHOT + 23.3.0.11 diff --git a/packaging/distribution/pom.xml b/packaging/distribution/pom.xml index 5e354bb35f7..f9024f2fd8a 100644 --- a/packaging/distribution/pom.xml +++ b/packaging/distribution/pom.xml @@ -9,6 +9,6 @@ org.alfresco alfresco-community-repo-packaging - 23.3.0.11-SNAPSHOT + 23.3.0.11 diff --git a/packaging/docker-alfresco/pom.xml b/packaging/docker-alfresco/pom.xml index 5ee209843c8..1a5781df481 100644 --- a/packaging/docker-alfresco/pom.xml +++ b/packaging/docker-alfresco/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-community-repo-packaging - 23.3.0.11-SNAPSHOT + 23.3.0.11 diff --git a/packaging/pom.xml b/packaging/pom.xml index e3fae820c14..f06ebacd97e 100644 --- a/packaging/pom.xml +++ b/packaging/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-community-repo - 23.3.0.11-SNAPSHOT + 23.3.0.11 diff --git a/packaging/tests/pom.xml b/packaging/tests/pom.xml index cff8d53499a..72bd88498b1 100644 --- a/packaging/tests/pom.xml +++ b/packaging/tests/pom.xml @@ -6,7 +6,7 @@ org.alfresco alfresco-community-repo-packaging - 23.3.0.11-SNAPSHOT + 23.3.0.11 diff --git a/packaging/tests/tas-cmis/pom.xml b/packaging/tests/tas-cmis/pom.xml index 1ff93b146e6..58f165c1bd8 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.3.0.11-SNAPSHOT + 23.3.0.11 diff --git a/packaging/tests/tas-email/pom.xml b/packaging/tests/tas-email/pom.xml index 72353f26d49..26cc4e7d295 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.3.0.11-SNAPSHOT + 23.3.0.11 diff --git a/packaging/tests/tas-integration/pom.xml b/packaging/tests/tas-integration/pom.xml index 65f129a0418..1830f1b428e 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.3.0.11-SNAPSHOT + 23.3.0.11 diff --git a/packaging/tests/tas-restapi/pom.xml b/packaging/tests/tas-restapi/pom.xml index e6945ab3ea7..ddc07933642 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.3.0.11-SNAPSHOT + 23.3.0.11 diff --git a/packaging/tests/tas-webdav/pom.xml b/packaging/tests/tas-webdav/pom.xml index 807c31fc31b..69fef6131f3 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.3.0.11-SNAPSHOT + 23.3.0.11 diff --git a/packaging/war/pom.xml b/packaging/war/pom.xml index ec9ac65e6cf..b561b7daa7a 100644 --- a/packaging/war/pom.xml +++ b/packaging/war/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-community-repo-packaging - 23.3.0.11-SNAPSHOT + 23.3.0.11 diff --git a/pom.xml b/pom.xml index 83b56d95847..dc7df8771eb 100644 --- a/pom.xml +++ b/pom.xml @@ -2,7 +2,7 @@ 4.0.0 alfresco-community-repo - 23.3.0.11-SNAPSHOT + 23.3.0.11 pom Alfresco Community Repo Parent @@ -151,7 +151,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.3.0.11 diff --git a/remote-api/pom.xml b/remote-api/pom.xml index 56b993c8314..085e0f94a7d 100644 --- a/remote-api/pom.xml +++ b/remote-api/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-community-repo - 23.3.0.11-SNAPSHOT + 23.3.0.11 diff --git a/repository/pom.xml b/repository/pom.xml index cc11e4b6740..d3cbf632950 100644 --- a/repository/pom.xml +++ b/repository/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-community-repo - 23.3.0.11-SNAPSHOT + 23.3.0.11 From af94063bbbd40da75efb845daf22fd7055011211 Mon Sep 17 00:00:00 2001 From: alfresco-build <8039454+alfresco-build@users.noreply.github.com> Date: Mon, 18 Mar 2024 16:00:10 +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 0a4d9516a87..8894359a60a 100644 --- a/amps/ags/pom.xml +++ b/amps/ags/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-community-repo-amps - 23.3.0.11 + 23.3.0.12-SNAPSHOT diff --git a/amps/ags/rm-automation/pom.xml b/amps/ags/rm-automation/pom.xml index 5023be44247..2e5b60232c6 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.3.0.11 + 23.3.0.12-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 ab3b5b3a161..139688321c8 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.3.0.11 + 23.3.0.12-SNAPSHOT diff --git a/amps/ags/rm-community/pom.xml b/amps/ags/rm-community/pom.xml index 7ac70c784c9..4c815db775f 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.3.0.11 + 23.3.0.12-SNAPSHOT diff --git a/amps/ags/rm-community/rm-community-repo/pom.xml b/amps/ags/rm-community/rm-community-repo/pom.xml index 7f48ab1d221..b064ade653a 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.3.0.11 + 23.3.0.12-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 715c2ad39e7..89c43b1bdb2 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.3.0.11 + 23.3.0.12-SNAPSHOT diff --git a/amps/pom.xml b/amps/pom.xml index 71169a9f2e5..c82b74c6e5e 100644 --- a/amps/pom.xml +++ b/amps/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-community-repo - 23.3.0.11 + 23.3.0.12-SNAPSHOT diff --git a/amps/share-services/pom.xml b/amps/share-services/pom.xml index 93f16b1a1e4..78a85a149b0 100644 --- a/amps/share-services/pom.xml +++ b/amps/share-services/pom.xml @@ -8,7 +8,7 @@ org.alfresco alfresco-community-repo-amps - 23.3.0.11 + 23.3.0.12-SNAPSHOT diff --git a/core/pom.xml b/core/pom.xml index 9feab440eb0..ef8753f370f 100644 --- a/core/pom.xml +++ b/core/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-community-repo - 23.3.0.11 + 23.3.0.12-SNAPSHOT diff --git a/data-model/pom.xml b/data-model/pom.xml index 10d9795e0cc..069b6e11ddc 100644 --- a/data-model/pom.xml +++ b/data-model/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-community-repo - 23.3.0.11 + 23.3.0.12-SNAPSHOT diff --git a/mmt/pom.xml b/mmt/pom.xml index 382a86b4409..00827bbdcdb 100644 --- a/mmt/pom.xml +++ b/mmt/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-community-repo - 23.3.0.11 + 23.3.0.12-SNAPSHOT diff --git a/packaging/distribution/pom.xml b/packaging/distribution/pom.xml index f9024f2fd8a..2d82db2e79e 100644 --- a/packaging/distribution/pom.xml +++ b/packaging/distribution/pom.xml @@ -9,6 +9,6 @@ org.alfresco alfresco-community-repo-packaging - 23.3.0.11 + 23.3.0.12-SNAPSHOT diff --git a/packaging/docker-alfresco/pom.xml b/packaging/docker-alfresco/pom.xml index 1a5781df481..2128db7677e 100644 --- a/packaging/docker-alfresco/pom.xml +++ b/packaging/docker-alfresco/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-community-repo-packaging - 23.3.0.11 + 23.3.0.12-SNAPSHOT diff --git a/packaging/pom.xml b/packaging/pom.xml index f06ebacd97e..3121b3759af 100644 --- a/packaging/pom.xml +++ b/packaging/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-community-repo - 23.3.0.11 + 23.3.0.12-SNAPSHOT diff --git a/packaging/tests/pom.xml b/packaging/tests/pom.xml index 72bd88498b1..824a38431b5 100644 --- a/packaging/tests/pom.xml +++ b/packaging/tests/pom.xml @@ -6,7 +6,7 @@ org.alfresco alfresco-community-repo-packaging - 23.3.0.11 + 23.3.0.12-SNAPSHOT diff --git a/packaging/tests/tas-cmis/pom.xml b/packaging/tests/tas-cmis/pom.xml index 58f165c1bd8..d0dac687dda 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.3.0.11 + 23.3.0.12-SNAPSHOT diff --git a/packaging/tests/tas-email/pom.xml b/packaging/tests/tas-email/pom.xml index 26cc4e7d295..5ffca3750b8 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.3.0.11 + 23.3.0.12-SNAPSHOT diff --git a/packaging/tests/tas-integration/pom.xml b/packaging/tests/tas-integration/pom.xml index 1830f1b428e..bc0d1a63aa7 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.3.0.11 + 23.3.0.12-SNAPSHOT diff --git a/packaging/tests/tas-restapi/pom.xml b/packaging/tests/tas-restapi/pom.xml index ddc07933642..89e5733b4b9 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.3.0.11 + 23.3.0.12-SNAPSHOT diff --git a/packaging/tests/tas-webdav/pom.xml b/packaging/tests/tas-webdav/pom.xml index 69fef6131f3..4050b5c1cbe 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.3.0.11 + 23.3.0.12-SNAPSHOT diff --git a/packaging/war/pom.xml b/packaging/war/pom.xml index b561b7daa7a..e0c52979290 100644 --- a/packaging/war/pom.xml +++ b/packaging/war/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-community-repo-packaging - 23.3.0.11 + 23.3.0.12-SNAPSHOT diff --git a/pom.xml b/pom.xml index dc7df8771eb..9e513e9a9c0 100644 --- a/pom.xml +++ b/pom.xml @@ -2,7 +2,7 @@ 4.0.0 alfresco-community-repo - 23.3.0.11 + 23.3.0.12-SNAPSHOT pom Alfresco Community Repo Parent @@ -151,7 +151,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.3.0.11 + HEAD diff --git a/remote-api/pom.xml b/remote-api/pom.xml index 085e0f94a7d..399f23e8864 100644 --- a/remote-api/pom.xml +++ b/remote-api/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-community-repo - 23.3.0.11 + 23.3.0.12-SNAPSHOT diff --git a/repository/pom.xml b/repository/pom.xml index d3cbf632950..9eb8d100f87 100644 --- a/repository/pom.xml +++ b/repository/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-community-repo - 23.3.0.11 + 23.3.0.12-SNAPSHOT