From c3dcf8891e2f18c298d8a87e25ff4598d88d3c96 Mon Sep 17 00:00:00 2001 From: Sara Date: Thu, 15 Jun 2023 09:36:44 +0100 Subject: [PATCH 01/12] ACS-5421 Remove RepoUrlConfigSource (#1992) --- .../config/source/RepoUrlConfigSource.java | 158 ------------------ 1 file changed, 158 deletions(-) delete mode 100644 repository/src/main/java/org/alfresco/repo/config/source/RepoUrlConfigSource.java diff --git a/repository/src/main/java/org/alfresco/repo/config/source/RepoUrlConfigSource.java b/repository/src/main/java/org/alfresco/repo/config/source/RepoUrlConfigSource.java deleted file mode 100644 index e9839d5b06..0000000000 --- a/repository/src/main/java/org/alfresco/repo/config/source/RepoUrlConfigSource.java +++ /dev/null @@ -1,158 +0,0 @@ -/* - * #%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% - */ -package org.alfresco.repo.config.source; - -import java.io.InputStream; -import java.util.List; - -import org.springframework.extensions.config.ConfigException; -import org.springframework.extensions.config.source.UrlConfigSource; -import org.alfresco.model.ContentModel; -import org.alfresco.repo.tenant.TenantService; -import org.alfresco.service.cmr.repository.ContentReader; -import org.alfresco.service.cmr.repository.ContentService; -import org.alfresco.service.cmr.repository.InvalidStoreRefException; -import org.alfresco.service.cmr.repository.NodeRef; -import org.alfresco.service.cmr.repository.NodeService; -import org.alfresco.service.cmr.repository.StoreRef; -import org.alfresco.service.cmr.search.SearchService; -import org.alfresco.service.namespace.NamespaceService; - -/** - * ConfigSource that looks for a prefix to determine where to look for the config.
- * Valid prefixes are: - * - * as well as those defined in the core (UrlConfigSource) - * - * Example store URLs - * workspace://SpacesStore/${spaces.company_home.childname}/${spaces.dictionary.childname}/${spaces.webclient_extension.childname}/cm:web-client-config-custom.xml - * workspace://SpacesStore/app:company_home/app:dictionary/app:webclient_extension/cm:web-client-config-custom.xml - */ -public class RepoUrlConfigSource extends UrlConfigSource -{ - private TenantService tenantService; - private SearchService searchService; - private ContentService contentService; - private NamespaceService namespaceService; - private NodeService nodeService; - - - public void setTenantService(TenantService tenantService) - { - this.tenantService = tenantService; - } - - public void setSearchService(SearchService searchService) - { - this.searchService = searchService; - } - - public void setContentService(ContentService contentService) - { - this.contentService = contentService; - } - - public void setNamespaceService(NamespaceService namespaceService) - { - this.namespaceService = namespaceService; - } - - public void setNodeService(NodeService nodeService) - { - this.nodeService = nodeService; - } - - - public RepoUrlConfigSource(String sourceLocation) - { - super(sourceLocation); - } - - public RepoUrlConfigSource(List sourceLocations) - { - super(sourceLocations); - } - - - public InputStream getInputStream(String sourceUrl) - { - // determine the config source - try - { - return super.getInputStream(sourceUrl); - } - catch (ConfigException ce) - { - int idx = sourceUrl.indexOf(StoreRef.URI_FILLER); - if (idx != -1) - { - // assume this is a repository location - int idx2 = sourceUrl.indexOf("/", idx+3); - - String store = sourceUrl.substring(0, idx2); - String path = sourceUrl.substring(idx2); - - StoreRef storeRef = tenantService.getName(new StoreRef(store)); - NodeRef rootNode = null; - - try - { - rootNode = nodeService.getRootNode(storeRef); - } - catch (InvalidStoreRefException e) - { - throw ce; - } - - List nodeRefs = searchService.selectNodes(rootNode, path, null, namespaceService, false); - - if (nodeRefs.size() == 0) - { - // if none found, then simply skip - return null; - } - else if (nodeRefs.size() > 1) - { - // unexpected - throw new ConfigException("Found duplicate config sources in the repository " + sourceUrl); - } - - NodeRef nodeRef = nodeRefs.get(0); - - ContentReader cr = contentService.getReader(nodeRef, ContentModel.PROP_CONTENT); - - return cr.getContentInputStream(); - } - else - { - // not a repository url - throw ce; - } - } - } -} From 8ebaf16a45a42506ff286e9b58b656a0abd6e632 Mon Sep 17 00:00:00 2001 From: alfresco-build <8039454+alfresco-build@users.noreply.github.com> Date: Thu, 15 Jun 2023 09:33:24 +0000 Subject: [PATCH 02/12] [maven-release-plugin][skip ci] prepare release 23.1.0.136 --- 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 15dad9bfbe..a65be5759f 100644 --- a/amps/ags/pom.xml +++ b/amps/ags/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-community-repo-amps - 23.1.0.136-SNAPSHOT + 23.1.0.136 diff --git a/amps/ags/rm-automation/pom.xml b/amps/ags/rm-automation/pom.xml index fba9dcc5e9..39bac2d92b 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.136-SNAPSHOT + 23.1.0.136 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 1a00fc3176..63da8504e2 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.136-SNAPSHOT + 23.1.0.136 diff --git a/amps/ags/rm-community/pom.xml b/amps/ags/rm-community/pom.xml index 54a212c4a8..761090a05a 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.136-SNAPSHOT + 23.1.0.136 diff --git a/amps/ags/rm-community/rm-community-repo/pom.xml b/amps/ags/rm-community/rm-community-repo/pom.xml index 49e69b80e0..c9632acd84 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.136-SNAPSHOT + 23.1.0.136 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 79563e1f59..e7c93253df 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.136-SNAPSHOT + 23.1.0.136 diff --git a/amps/pom.xml b/amps/pom.xml index 714d06ce9d..82bd585ab7 100644 --- a/amps/pom.xml +++ b/amps/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-community-repo - 23.1.0.136-SNAPSHOT + 23.1.0.136 diff --git a/amps/share-services/pom.xml b/amps/share-services/pom.xml index bf23bff71a..2a9bbf0478 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.136-SNAPSHOT + 23.1.0.136 diff --git a/core/pom.xml b/core/pom.xml index ac78514de7..7122158110 100644 --- a/core/pom.xml +++ b/core/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-community-repo - 23.1.0.136-SNAPSHOT + 23.1.0.136 diff --git a/data-model/pom.xml b/data-model/pom.xml index 4076815ed3..f7651d0939 100644 --- a/data-model/pom.xml +++ b/data-model/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-community-repo - 23.1.0.136-SNAPSHOT + 23.1.0.136 diff --git a/mmt/pom.xml b/mmt/pom.xml index e0d4a2c9ad..0be0626699 100644 --- a/mmt/pom.xml +++ b/mmt/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-community-repo - 23.1.0.136-SNAPSHOT + 23.1.0.136 diff --git a/packaging/distribution/pom.xml b/packaging/distribution/pom.xml index 2c27ce7e46..f1c3d9d7d0 100644 --- a/packaging/distribution/pom.xml +++ b/packaging/distribution/pom.xml @@ -9,6 +9,6 @@ org.alfresco alfresco-community-repo-packaging - 23.1.0.136-SNAPSHOT + 23.1.0.136 diff --git a/packaging/docker-alfresco/pom.xml b/packaging/docker-alfresco/pom.xml index cabc91f15e..ff81b839b0 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.136-SNAPSHOT + 23.1.0.136 diff --git a/packaging/pom.xml b/packaging/pom.xml index 62ffe4fadf..a2d48b2be1 100644 --- a/packaging/pom.xml +++ b/packaging/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-community-repo - 23.1.0.136-SNAPSHOT + 23.1.0.136 diff --git a/packaging/tests/pom.xml b/packaging/tests/pom.xml index 1d709b861b..0f531d929f 100644 --- a/packaging/tests/pom.xml +++ b/packaging/tests/pom.xml @@ -6,7 +6,7 @@ org.alfresco alfresco-community-repo-packaging - 23.1.0.136-SNAPSHOT + 23.1.0.136 diff --git a/packaging/tests/tas-cmis/pom.xml b/packaging/tests/tas-cmis/pom.xml index 4231869ebc..6dad744b25 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.136-SNAPSHOT + 23.1.0.136 diff --git a/packaging/tests/tas-email/pom.xml b/packaging/tests/tas-email/pom.xml index c719adcb87..193f01c9d5 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.136-SNAPSHOT + 23.1.0.136 diff --git a/packaging/tests/tas-integration/pom.xml b/packaging/tests/tas-integration/pom.xml index 9b1358a9f4..0785dc2757 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.136-SNAPSHOT + 23.1.0.136 diff --git a/packaging/tests/tas-restapi/pom.xml b/packaging/tests/tas-restapi/pom.xml index 2253bc6922..e4b0b09e0b 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.136-SNAPSHOT + 23.1.0.136 diff --git a/packaging/tests/tas-webdav/pom.xml b/packaging/tests/tas-webdav/pom.xml index b0c3090e6b..5a40f888ae 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.136-SNAPSHOT + 23.1.0.136 diff --git a/packaging/war/pom.xml b/packaging/war/pom.xml index bfb13c24d5..3ff6563d98 100644 --- a/packaging/war/pom.xml +++ b/packaging/war/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-community-repo-packaging - 23.1.0.136-SNAPSHOT + 23.1.0.136 diff --git a/pom.xml b/pom.xml index de7194ac74..1718d6bb76 100644 --- a/pom.xml +++ b/pom.xml @@ -2,7 +2,7 @@ 4.0.0 alfresco-community-repo - 23.1.0.136-SNAPSHOT + 23.1.0.136 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.136 diff --git a/remote-api/pom.xml b/remote-api/pom.xml index 1a1ad763fd..7d2fb365ba 100644 --- a/remote-api/pom.xml +++ b/remote-api/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-community-repo - 23.1.0.136-SNAPSHOT + 23.1.0.136 diff --git a/repository/pom.xml b/repository/pom.xml index 6a3599e6a8..9e93ee5dfd 100644 --- a/repository/pom.xml +++ b/repository/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-community-repo - 23.1.0.136-SNAPSHOT + 23.1.0.136 From 47b793b922b1046dc541f9fda513ae91cf08437e Mon Sep 17 00:00:00 2001 From: alfresco-build <8039454+alfresco-build@users.noreply.github.com> Date: Thu, 15 Jun 2023 09:33:28 +0000 Subject: [PATCH 03/12] [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 a65be5759f..17ae42ed21 100644 --- a/amps/ags/pom.xml +++ b/amps/ags/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-community-repo-amps - 23.1.0.136 + 23.1.0.137-SNAPSHOT diff --git a/amps/ags/rm-automation/pom.xml b/amps/ags/rm-automation/pom.xml index 39bac2d92b..c6486cdf2d 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.136 + 23.1.0.137-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 63da8504e2..8c8c2ba391 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.136 + 23.1.0.137-SNAPSHOT diff --git a/amps/ags/rm-community/pom.xml b/amps/ags/rm-community/pom.xml index 761090a05a..39cf6dc125 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.136 + 23.1.0.137-SNAPSHOT diff --git a/amps/ags/rm-community/rm-community-repo/pom.xml b/amps/ags/rm-community/rm-community-repo/pom.xml index c9632acd84..4f92040edc 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.136 + 23.1.0.137-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 e7c93253df..c66b94625c 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.136 + 23.1.0.137-SNAPSHOT diff --git a/amps/pom.xml b/amps/pom.xml index 82bd585ab7..b744c7140b 100644 --- a/amps/pom.xml +++ b/amps/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-community-repo - 23.1.0.136 + 23.1.0.137-SNAPSHOT diff --git a/amps/share-services/pom.xml b/amps/share-services/pom.xml index 2a9bbf0478..e878fe9ca5 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.136 + 23.1.0.137-SNAPSHOT diff --git a/core/pom.xml b/core/pom.xml index 7122158110..14be1f1754 100644 --- a/core/pom.xml +++ b/core/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-community-repo - 23.1.0.136 + 23.1.0.137-SNAPSHOT diff --git a/data-model/pom.xml b/data-model/pom.xml index f7651d0939..07d9acf09c 100644 --- a/data-model/pom.xml +++ b/data-model/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-community-repo - 23.1.0.136 + 23.1.0.137-SNAPSHOT diff --git a/mmt/pom.xml b/mmt/pom.xml index 0be0626699..0cdf463250 100644 --- a/mmt/pom.xml +++ b/mmt/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-community-repo - 23.1.0.136 + 23.1.0.137-SNAPSHOT diff --git a/packaging/distribution/pom.xml b/packaging/distribution/pom.xml index f1c3d9d7d0..304efc6ea5 100644 --- a/packaging/distribution/pom.xml +++ b/packaging/distribution/pom.xml @@ -9,6 +9,6 @@ org.alfresco alfresco-community-repo-packaging - 23.1.0.136 + 23.1.0.137-SNAPSHOT diff --git a/packaging/docker-alfresco/pom.xml b/packaging/docker-alfresco/pom.xml index ff81b839b0..2b234afe82 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.136 + 23.1.0.137-SNAPSHOT diff --git a/packaging/pom.xml b/packaging/pom.xml index a2d48b2be1..fb3466e4be 100644 --- a/packaging/pom.xml +++ b/packaging/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-community-repo - 23.1.0.136 + 23.1.0.137-SNAPSHOT diff --git a/packaging/tests/pom.xml b/packaging/tests/pom.xml index 0f531d929f..d4dd44a9b9 100644 --- a/packaging/tests/pom.xml +++ b/packaging/tests/pom.xml @@ -6,7 +6,7 @@ org.alfresco alfresco-community-repo-packaging - 23.1.0.136 + 23.1.0.137-SNAPSHOT diff --git a/packaging/tests/tas-cmis/pom.xml b/packaging/tests/tas-cmis/pom.xml index 6dad744b25..51208d43af 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.136 + 23.1.0.137-SNAPSHOT diff --git a/packaging/tests/tas-email/pom.xml b/packaging/tests/tas-email/pom.xml index 193f01c9d5..d36645de89 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.136 + 23.1.0.137-SNAPSHOT diff --git a/packaging/tests/tas-integration/pom.xml b/packaging/tests/tas-integration/pom.xml index 0785dc2757..1191dffb45 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.136 + 23.1.0.137-SNAPSHOT diff --git a/packaging/tests/tas-restapi/pom.xml b/packaging/tests/tas-restapi/pom.xml index e4b0b09e0b..d0c606d9bd 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.136 + 23.1.0.137-SNAPSHOT diff --git a/packaging/tests/tas-webdav/pom.xml b/packaging/tests/tas-webdav/pom.xml index 5a40f888ae..105820dbd2 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.136 + 23.1.0.137-SNAPSHOT diff --git a/packaging/war/pom.xml b/packaging/war/pom.xml index 3ff6563d98..da306a3f5d 100644 --- a/packaging/war/pom.xml +++ b/packaging/war/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-community-repo-packaging - 23.1.0.136 + 23.1.0.137-SNAPSHOT diff --git a/pom.xml b/pom.xml index 1718d6bb76..d16c334c81 100644 --- a/pom.xml +++ b/pom.xml @@ -2,7 +2,7 @@ 4.0.0 alfresco-community-repo - 23.1.0.136 + 23.1.0.137-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.136 + HEAD diff --git a/remote-api/pom.xml b/remote-api/pom.xml index 7d2fb365ba..3ef332c19c 100644 --- a/remote-api/pom.xml +++ b/remote-api/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-community-repo - 23.1.0.136 + 23.1.0.137-SNAPSHOT diff --git a/repository/pom.xml b/repository/pom.xml index 9e93ee5dfd..af7b59ca25 100644 --- a/repository/pom.xml +++ b/repository/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-community-repo - 23.1.0.136 + 23.1.0.137-SNAPSHOT From 1866e64d07b1237f9e6df5bd1c07385b284a7554 Mon Sep 17 00:00:00 2001 From: rrajoria <88024787+rrajoria@users.noreply.github.com> Date: Thu, 15 Jun 2023 16:07:26 +0530 Subject: [PATCH 04/12] MNT-23724: Fix for Downloading a folder as zip with correct Name (#1994) --- repository/src/main/resources/alfresco/repository.properties | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/repository/src/main/resources/alfresco/repository.properties b/repository/src/main/resources/alfresco/repository.properties index 49aad509f8..908bf8bbef 100644 --- a/repository/src/main/resources/alfresco/repository.properties +++ b/repository/src/main/resources/alfresco/repository.properties @@ -1349,7 +1349,7 @@ system.remove-alf_server-table-from-db.ignored=true allow.unsecure.callback.jsonp=false # pre-configured allow list of media/mime types to allow inline instead of attachment (via Content-Disposition response header) -content.nonAttach.mimetypes=application/pdf,image/jpeg,image/gif,image/png,image/tiff,image/bmp +content.nonAttach.mimetypes=application/pdf,image/jpeg,image/gif,image/png,image/tiff,image/bmp,application/octet-stream # Zip file compression ratio threshold as a percentage, above which the zip file will be considered a "zip bomb" and the # import extraction process cancelled. From 0403fcde692c50af575defad960f295748462ef0 Mon Sep 17 00:00:00 2001 From: alfresco-build <8039454+alfresco-build@users.noreply.github.com> Date: Thu, 15 Jun 2023 11:25:32 +0000 Subject: [PATCH 05/12] [maven-release-plugin][skip ci] prepare release 23.1.0.137 --- 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 17ae42ed21..2755f21b16 100644 --- a/amps/ags/pom.xml +++ b/amps/ags/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-community-repo-amps - 23.1.0.137-SNAPSHOT + 23.1.0.137 diff --git a/amps/ags/rm-automation/pom.xml b/amps/ags/rm-automation/pom.xml index c6486cdf2d..b2d033fe9d 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.137-SNAPSHOT + 23.1.0.137 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 8c8c2ba391..5e48ca580b 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.137-SNAPSHOT + 23.1.0.137 diff --git a/amps/ags/rm-community/pom.xml b/amps/ags/rm-community/pom.xml index 39cf6dc125..0cab9c5077 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.137-SNAPSHOT + 23.1.0.137 diff --git a/amps/ags/rm-community/rm-community-repo/pom.xml b/amps/ags/rm-community/rm-community-repo/pom.xml index 4f92040edc..8b80bc3a30 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.137-SNAPSHOT + 23.1.0.137 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 c66b94625c..b1ef62dd98 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.137-SNAPSHOT + 23.1.0.137 diff --git a/amps/pom.xml b/amps/pom.xml index b744c7140b..59217b9ead 100644 --- a/amps/pom.xml +++ b/amps/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-community-repo - 23.1.0.137-SNAPSHOT + 23.1.0.137 diff --git a/amps/share-services/pom.xml b/amps/share-services/pom.xml index e878fe9ca5..50b84266ca 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.137-SNAPSHOT + 23.1.0.137 diff --git a/core/pom.xml b/core/pom.xml index 14be1f1754..3aa1ed76df 100644 --- a/core/pom.xml +++ b/core/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-community-repo - 23.1.0.137-SNAPSHOT + 23.1.0.137 diff --git a/data-model/pom.xml b/data-model/pom.xml index 07d9acf09c..a428b68eb5 100644 --- a/data-model/pom.xml +++ b/data-model/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-community-repo - 23.1.0.137-SNAPSHOT + 23.1.0.137 diff --git a/mmt/pom.xml b/mmt/pom.xml index 0cdf463250..148829387d 100644 --- a/mmt/pom.xml +++ b/mmt/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-community-repo - 23.1.0.137-SNAPSHOT + 23.1.0.137 diff --git a/packaging/distribution/pom.xml b/packaging/distribution/pom.xml index 304efc6ea5..3600349ad7 100644 --- a/packaging/distribution/pom.xml +++ b/packaging/distribution/pom.xml @@ -9,6 +9,6 @@ org.alfresco alfresco-community-repo-packaging - 23.1.0.137-SNAPSHOT + 23.1.0.137 diff --git a/packaging/docker-alfresco/pom.xml b/packaging/docker-alfresco/pom.xml index 2b234afe82..5956052d2d 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.137-SNAPSHOT + 23.1.0.137 diff --git a/packaging/pom.xml b/packaging/pom.xml index fb3466e4be..ce502c12ca 100644 --- a/packaging/pom.xml +++ b/packaging/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-community-repo - 23.1.0.137-SNAPSHOT + 23.1.0.137 diff --git a/packaging/tests/pom.xml b/packaging/tests/pom.xml index d4dd44a9b9..24b72bc9b0 100644 --- a/packaging/tests/pom.xml +++ b/packaging/tests/pom.xml @@ -6,7 +6,7 @@ org.alfresco alfresco-community-repo-packaging - 23.1.0.137-SNAPSHOT + 23.1.0.137 diff --git a/packaging/tests/tas-cmis/pom.xml b/packaging/tests/tas-cmis/pom.xml index 51208d43af..a8052d295d 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.137-SNAPSHOT + 23.1.0.137 diff --git a/packaging/tests/tas-email/pom.xml b/packaging/tests/tas-email/pom.xml index d36645de89..3be08c848a 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.137-SNAPSHOT + 23.1.0.137 diff --git a/packaging/tests/tas-integration/pom.xml b/packaging/tests/tas-integration/pom.xml index 1191dffb45..45f1e5cd8b 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.137-SNAPSHOT + 23.1.0.137 diff --git a/packaging/tests/tas-restapi/pom.xml b/packaging/tests/tas-restapi/pom.xml index d0c606d9bd..b4d696f71a 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.137-SNAPSHOT + 23.1.0.137 diff --git a/packaging/tests/tas-webdav/pom.xml b/packaging/tests/tas-webdav/pom.xml index 105820dbd2..fd8b97572d 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.137-SNAPSHOT + 23.1.0.137 diff --git a/packaging/war/pom.xml b/packaging/war/pom.xml index da306a3f5d..165082cd21 100644 --- a/packaging/war/pom.xml +++ b/packaging/war/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-community-repo-packaging - 23.1.0.137-SNAPSHOT + 23.1.0.137 diff --git a/pom.xml b/pom.xml index d16c334c81..4e98c74b1f 100644 --- a/pom.xml +++ b/pom.xml @@ -2,7 +2,7 @@ 4.0.0 alfresco-community-repo - 23.1.0.137-SNAPSHOT + 23.1.0.137 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.137 diff --git a/remote-api/pom.xml b/remote-api/pom.xml index 3ef332c19c..476fa82085 100644 --- a/remote-api/pom.xml +++ b/remote-api/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-community-repo - 23.1.0.137-SNAPSHOT + 23.1.0.137 diff --git a/repository/pom.xml b/repository/pom.xml index af7b59ca25..295b9cd070 100644 --- a/repository/pom.xml +++ b/repository/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-community-repo - 23.1.0.137-SNAPSHOT + 23.1.0.137 From 763f0932a0b26c797945938e32cd06a600781a63 Mon Sep 17 00:00:00 2001 From: alfresco-build <8039454+alfresco-build@users.noreply.github.com> Date: Thu, 15 Jun 2023 11:25:36 +0000 Subject: [PATCH 06/12] [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 2755f21b16..367a4d2fa7 100644 --- a/amps/ags/pom.xml +++ b/amps/ags/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-community-repo-amps - 23.1.0.137 + 23.1.0.138-SNAPSHOT diff --git a/amps/ags/rm-automation/pom.xml b/amps/ags/rm-automation/pom.xml index b2d033fe9d..b0c9f36c4e 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.137 + 23.1.0.138-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 5e48ca580b..9f931f8081 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.137 + 23.1.0.138-SNAPSHOT diff --git a/amps/ags/rm-community/pom.xml b/amps/ags/rm-community/pom.xml index 0cab9c5077..86dd97d5aa 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.137 + 23.1.0.138-SNAPSHOT diff --git a/amps/ags/rm-community/rm-community-repo/pom.xml b/amps/ags/rm-community/rm-community-repo/pom.xml index 8b80bc3a30..e7fdd1be7c 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.137 + 23.1.0.138-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 b1ef62dd98..391e29f3ad 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.137 + 23.1.0.138-SNAPSHOT diff --git a/amps/pom.xml b/amps/pom.xml index 59217b9ead..613fbb189d 100644 --- a/amps/pom.xml +++ b/amps/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-community-repo - 23.1.0.137 + 23.1.0.138-SNAPSHOT diff --git a/amps/share-services/pom.xml b/amps/share-services/pom.xml index 50b84266ca..20cda061f4 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.137 + 23.1.0.138-SNAPSHOT diff --git a/core/pom.xml b/core/pom.xml index 3aa1ed76df..e1a2f63f4b 100644 --- a/core/pom.xml +++ b/core/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-community-repo - 23.1.0.137 + 23.1.0.138-SNAPSHOT diff --git a/data-model/pom.xml b/data-model/pom.xml index a428b68eb5..dc657bdd3c 100644 --- a/data-model/pom.xml +++ b/data-model/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-community-repo - 23.1.0.137 + 23.1.0.138-SNAPSHOT diff --git a/mmt/pom.xml b/mmt/pom.xml index 148829387d..18c8b1b15f 100644 --- a/mmt/pom.xml +++ b/mmt/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-community-repo - 23.1.0.137 + 23.1.0.138-SNAPSHOT diff --git a/packaging/distribution/pom.xml b/packaging/distribution/pom.xml index 3600349ad7..9b383313c7 100644 --- a/packaging/distribution/pom.xml +++ b/packaging/distribution/pom.xml @@ -9,6 +9,6 @@ org.alfresco alfresco-community-repo-packaging - 23.1.0.137 + 23.1.0.138-SNAPSHOT diff --git a/packaging/docker-alfresco/pom.xml b/packaging/docker-alfresco/pom.xml index 5956052d2d..66f3efe14e 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.137 + 23.1.0.138-SNAPSHOT diff --git a/packaging/pom.xml b/packaging/pom.xml index ce502c12ca..ab2a803a17 100644 --- a/packaging/pom.xml +++ b/packaging/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-community-repo - 23.1.0.137 + 23.1.0.138-SNAPSHOT diff --git a/packaging/tests/pom.xml b/packaging/tests/pom.xml index 24b72bc9b0..e138c0db97 100644 --- a/packaging/tests/pom.xml +++ b/packaging/tests/pom.xml @@ -6,7 +6,7 @@ org.alfresco alfresco-community-repo-packaging - 23.1.0.137 + 23.1.0.138-SNAPSHOT diff --git a/packaging/tests/tas-cmis/pom.xml b/packaging/tests/tas-cmis/pom.xml index a8052d295d..e214919260 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.137 + 23.1.0.138-SNAPSHOT diff --git a/packaging/tests/tas-email/pom.xml b/packaging/tests/tas-email/pom.xml index 3be08c848a..8f551b3892 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.137 + 23.1.0.138-SNAPSHOT diff --git a/packaging/tests/tas-integration/pom.xml b/packaging/tests/tas-integration/pom.xml index 45f1e5cd8b..f714130383 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.137 + 23.1.0.138-SNAPSHOT diff --git a/packaging/tests/tas-restapi/pom.xml b/packaging/tests/tas-restapi/pom.xml index b4d696f71a..19d09e4ad4 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.137 + 23.1.0.138-SNAPSHOT diff --git a/packaging/tests/tas-webdav/pom.xml b/packaging/tests/tas-webdav/pom.xml index fd8b97572d..b5c1e14487 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.137 + 23.1.0.138-SNAPSHOT diff --git a/packaging/war/pom.xml b/packaging/war/pom.xml index 165082cd21..2ad598dd48 100644 --- a/packaging/war/pom.xml +++ b/packaging/war/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-community-repo-packaging - 23.1.0.137 + 23.1.0.138-SNAPSHOT diff --git a/pom.xml b/pom.xml index 4e98c74b1f..98cf0064e7 100644 --- a/pom.xml +++ b/pom.xml @@ -2,7 +2,7 @@ 4.0.0 alfresco-community-repo - 23.1.0.137 + 23.1.0.138-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.137 + HEAD diff --git a/remote-api/pom.xml b/remote-api/pom.xml index 476fa82085..76f03d29f8 100644 --- a/remote-api/pom.xml +++ b/remote-api/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-community-repo - 23.1.0.137 + 23.1.0.138-SNAPSHOT diff --git a/repository/pom.xml b/repository/pom.xml index 295b9cd070..48272d205e 100644 --- a/repository/pom.xml +++ b/repository/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-community-repo - 23.1.0.137 + 23.1.0.138-SNAPSHOT From 402c0661e0813a5b5913ffe70ab952429104ae02 Mon Sep 17 00:00:00 2001 From: Krystian Dabrowski <98942253+krdabrowski@users.noreply.github.com> Date: Thu, 15 Jun 2023 16:05:54 +0200 Subject: [PATCH 07/12] ACS-4799: Elasticsearch query feature expansion - Query E2Es capabilities expanded: (#1997) - added query templates - added query defaults --- .../rest/search/RestRequestDefaultsModel.java | 190 ++++++++++++++++++ .../search/RestRequestTemplatesModel.java | 105 ++++++++++ .../alfresco/rest/search/SearchRequest.java | 29 ++- 3 files changed, 321 insertions(+), 3 deletions(-) create mode 100644 packaging/tests/tas-restapi/src/main/java/org/alfresco/rest/search/RestRequestDefaultsModel.java create mode 100644 packaging/tests/tas-restapi/src/main/java/org/alfresco/rest/search/RestRequestTemplatesModel.java diff --git a/packaging/tests/tas-restapi/src/main/java/org/alfresco/rest/search/RestRequestDefaultsModel.java b/packaging/tests/tas-restapi/src/main/java/org/alfresco/rest/search/RestRequestDefaultsModel.java new file mode 100644 index 0000000000..5070b52815 --- /dev/null +++ b/packaging/tests/tas-restapi/src/main/java/org/alfresco/rest/search/RestRequestDefaultsModel.java @@ -0,0 +1,190 @@ +package org.alfresco.rest.search; + +import java.util.List; +import java.util.Objects; + +import org.alfresco.rest.core.IRestModel; +import org.alfresco.utility.model.TestModel; + +import com.fasterxml.jackson.annotation.JsonProperty; + +/** + * Generated by 'krystian' on '2023-06-12 18:46' from 'Alfresco Content Services REST API' swagger file + * Generated from 'Alfresco Content Services REST API' swagger file + * Base Path {@linkplain /alfresco/api/-default-/public/search/versions/1} + */ +public class RestRequestDefaultsModel extends TestModel implements IRestModel +{ + @JsonProperty(value = "entry") + RestRequestDefaultsModel model; + + @Override + public RestRequestDefaultsModel onModel() + { + return model; + } + + /** + A list of query fields/properties used to expand TEXT: queries. +The default is cm:content. +You could include all content properties using d:content or list all individual content properties or types. +As more terms are included the query size, complexity, memory impact and query time will increase. + + */ + + private List textAttributes; + /** + The default way to combine query parts when AND or OR is not explicitly stated - includes ! - + +one two three +(one two three) + + */ + + private String defaultFTSOperator; + /** + The default way to combine query parts in field query groups when AND or OR is not explicitly stated - includes ! - + +FIELD:(one two three) + + */ + + private String defaultFTSFieldOperator; + /** + The default name space to use if one is not provided + */ + + private String namespace; + + private String defaultFieldName; + + public List getTextAttributes() + { + return this.textAttributes; + } + + public void setTextAttributes(List textAttributes) + { + this.textAttributes = textAttributes; + } + + public String getDefaultFTSOperator() + { + return this.defaultFTSOperator; + } + + public void setDefaultFTSOperator(String defaultFTSOperator) + { + this.defaultFTSOperator = defaultFTSOperator; + } + + public String getDefaultFTSFieldOperator() + { + return this.defaultFTSFieldOperator; + } + + public void setDefaultFTSFieldOperator(String defaultFTSFieldOperator) + { + this.defaultFTSFieldOperator = defaultFTSFieldOperator; + } + + public String getNamespace() + { + return this.namespace; + } + + public void setNamespace(String namespace) + { + this.namespace = namespace; + } + + public String getDefaultFieldName() + { + return this.defaultFieldName; + } + + public void setDefaultFieldName(String defaultFieldName) + { + this.defaultFieldName = defaultFieldName; + } + + @Override + public String toString() + { + return "RestRequestDefaultsModel{" + "textAttributes=" + textAttributes + ", defaultFTSOperator='" + defaultFTSOperator + '\'' + ", defaultFTSFieldOperator='" + + defaultFTSFieldOperator + '\'' + ", namespace='" + namespace + '\'' + ", defaultFieldName='" + defaultFieldName + '\'' + '}'; + } + + @Override + public boolean equals(Object o) + { + if (this == o) + return true; + if (o == null || getClass() != o.getClass()) + return false; + RestRequestDefaultsModel that = (RestRequestDefaultsModel) o; + return Objects.equals(textAttributes, that.textAttributes) && Objects.equals(defaultFTSOperator, that.defaultFTSOperator) && Objects.equals( + defaultFTSFieldOperator, that.defaultFTSFieldOperator) && Objects.equals(namespace, that.namespace) && Objects.equals(defaultFieldName, that.defaultFieldName); + } + + @Override + public int hashCode() + { + return Objects.hash(textAttributes, defaultFTSOperator, defaultFTSFieldOperator, namespace, defaultFieldName); + } + + public static Builder builder() + { + return new Builder(); + } + + public static class Builder + { + private List textAttributes; + private String defaultFTSOperator; + private String defaultFTSFieldOperator; + private String namespace; + private String defaultFieldName; + + public Builder textAttributes(List textAttributes) + { + this.textAttributes = textAttributes; + return this; + } + + public Builder defaultFTSOperator(String defaultFTSOperator) + { + this.defaultFTSOperator = defaultFTSOperator; + return this; + } + + public Builder defaultFTSFieldOperator(String defaultFTSFieldOperator) + { + this.defaultFTSFieldOperator = defaultFTSFieldOperator; + return this; + } + + public Builder namespace(String namespace) + { + this.namespace = namespace; + return this; + } + + public Builder defaultFieldName(String defaultFieldName) + { + this.defaultFieldName = defaultFieldName; + return this; + } + + public RestRequestDefaultsModel create() + { + RestRequestDefaultsModel defaults = new RestRequestDefaultsModel(); + defaults.setTextAttributes(this.textAttributes); + defaults.setDefaultFTSOperator(this.defaultFTSOperator); + defaults.setDefaultFTSFieldOperator(this.defaultFTSFieldOperator); + defaults.setNamespace(this.namespace); + defaults.setDefaultFieldName(this.defaultFieldName); + + return defaults; + } + } +} + diff --git a/packaging/tests/tas-restapi/src/main/java/org/alfresco/rest/search/RestRequestTemplatesModel.java b/packaging/tests/tas-restapi/src/main/java/org/alfresco/rest/search/RestRequestTemplatesModel.java new file mode 100644 index 0000000000..6cf79ec33f --- /dev/null +++ b/packaging/tests/tas-restapi/src/main/java/org/alfresco/rest/search/RestRequestTemplatesModel.java @@ -0,0 +1,105 @@ +package org.alfresco.rest.search; + +import java.util.Objects; + +import org.alfresco.rest.core.IRestModel; +import org.alfresco.utility.model.TestModel; + +import com.fasterxml.jackson.annotation.JsonProperty; + +/** + * Generated by 'krystian' on '2023-06-12 18:46' from 'Alfresco Content Services REST API' swagger file + * Generated from 'Alfresco Content Services REST API' swagger file + * Base Path {@linkplain /alfresco/api/-default-/public/search/versions/1} + */ +public class RestRequestTemplatesModel extends TestModel implements IRestModel +{ + @JsonProperty(value = "entry") + RestRequestTemplatesModel model; + + @Override + public RestRequestTemplatesModel onModel() + { + return model; + } + + private String name; + + private String template; + + public String getName() + { + return name; + } + + public void setName(String name) + { + this.name = name; + } + + public String getTemplate() + { + return template; + } + + public void setTemplate(String template) + { + this.template = template; + } + + @Override + public String toString() + { + return "RestRequestTemplatesModel{" + "name='" + name + '\'' + ", template='" + template + '\'' + '}'; + } + + @Override + public boolean equals(Object o) + { + if (this == o) + return true; + if (o == null || getClass() != o.getClass()) + return false; + RestRequestTemplatesModel that = (RestRequestTemplatesModel) o; + return Objects.equals(name, that.name) && Objects.equals(template, that.template); + } + + @Override + public int hashCode() + { + return Objects.hash(name, template); + } + + public static Builder builder() + { + return new Builder(); + } + + public static class Builder + { + private String name; + private String template; + + public Builder name(String name) + { + this.name = name; + return this; + } + + public Builder template(String template) + { + this.template = template; + return this; + } + + public RestRequestTemplatesModel create() + { + RestRequestTemplatesModel template = new RestRequestTemplatesModel(); + template.setName(this.name); + template.setTemplate(this.template); + + return template; + } + } +} + diff --git a/packaging/tests/tas-restapi/src/main/java/org/alfresco/rest/search/SearchRequest.java b/packaging/tests/tas-restapi/src/main/java/org/alfresco/rest/search/SearchRequest.java index 33539f899a..90d1dd61d0 100644 --- a/packaging/tests/tas-restapi/src/main/java/org/alfresco/rest/search/SearchRequest.java +++ b/packaging/tests/tas-restapi/src/main/java/org/alfresco/rest/search/SearchRequest.java @@ -43,14 +43,15 @@ */ package org.alfresco.rest.search; +import java.util.ArrayList; +import java.util.List; + import com.fasterxml.jackson.annotation.JsonProperty; + import org.alfresco.rest.model.RestRequestRangesModel; import org.alfresco.rest.model.RestRequestSpellcheckModel; import org.alfresco.utility.model.TestModel; -import java.util.ArrayList; -import java.util.List; - /** * Search Query object. * @author msuzuki @@ -76,6 +77,8 @@ public class SearchRequest extends TestModel String facetFormat; List include; List sort; + RestRequestDefaultsModel defaults; + List templates; public SearchRequest() { @@ -255,6 +258,26 @@ public class SearchRequest extends TestModel this.fields = fields; } + public RestRequestDefaultsModel getDefaults() + { + return defaults; + } + + public void setDefaults(RestRequestDefaultsModel defaults) + { + this.defaults = defaults; + } + + public List getTemplates() + { + return templates; + } + + public void setTemplates(List templates) + { + this.templates = templates; + } + public List getSort() { if (sort == null) From b834ab924549490c6c15cdad20efd56c2744d9ed Mon Sep 17 00:00:00 2001 From: alfresco-build <8039454+alfresco-build@users.noreply.github.com> Date: Thu, 15 Jun 2023 16:00:14 +0000 Subject: [PATCH 08/12] [maven-release-plugin][skip ci] prepare release 23.1.0.138 --- 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 367a4d2fa7..640d2793ab 100644 --- a/amps/ags/pom.xml +++ b/amps/ags/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-community-repo-amps - 23.1.0.138-SNAPSHOT + 23.1.0.138 diff --git a/amps/ags/rm-automation/pom.xml b/amps/ags/rm-automation/pom.xml index b0c9f36c4e..059da0f058 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.138-SNAPSHOT + 23.1.0.138 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 9f931f8081..6dd4d45b43 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.138-SNAPSHOT + 23.1.0.138 diff --git a/amps/ags/rm-community/pom.xml b/amps/ags/rm-community/pom.xml index 86dd97d5aa..7a0d8d4fa1 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.138-SNAPSHOT + 23.1.0.138 diff --git a/amps/ags/rm-community/rm-community-repo/pom.xml b/amps/ags/rm-community/rm-community-repo/pom.xml index e7fdd1be7c..08b97e77c5 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.138-SNAPSHOT + 23.1.0.138 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 391e29f3ad..adcc093132 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.138-SNAPSHOT + 23.1.0.138 diff --git a/amps/pom.xml b/amps/pom.xml index 613fbb189d..733d6314bf 100644 --- a/amps/pom.xml +++ b/amps/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-community-repo - 23.1.0.138-SNAPSHOT + 23.1.0.138 diff --git a/amps/share-services/pom.xml b/amps/share-services/pom.xml index 20cda061f4..d9ae3d08a3 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.138-SNAPSHOT + 23.1.0.138 diff --git a/core/pom.xml b/core/pom.xml index e1a2f63f4b..0bc9566507 100644 --- a/core/pom.xml +++ b/core/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-community-repo - 23.1.0.138-SNAPSHOT + 23.1.0.138 diff --git a/data-model/pom.xml b/data-model/pom.xml index dc657bdd3c..dadc5818cb 100644 --- a/data-model/pom.xml +++ b/data-model/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-community-repo - 23.1.0.138-SNAPSHOT + 23.1.0.138 diff --git a/mmt/pom.xml b/mmt/pom.xml index 18c8b1b15f..72c52a6cfb 100644 --- a/mmt/pom.xml +++ b/mmt/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-community-repo - 23.1.0.138-SNAPSHOT + 23.1.0.138 diff --git a/packaging/distribution/pom.xml b/packaging/distribution/pom.xml index 9b383313c7..a94d40ebd3 100644 --- a/packaging/distribution/pom.xml +++ b/packaging/distribution/pom.xml @@ -9,6 +9,6 @@ org.alfresco alfresco-community-repo-packaging - 23.1.0.138-SNAPSHOT + 23.1.0.138 diff --git a/packaging/docker-alfresco/pom.xml b/packaging/docker-alfresco/pom.xml index 66f3efe14e..76074eb0d1 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.138-SNAPSHOT + 23.1.0.138 diff --git a/packaging/pom.xml b/packaging/pom.xml index ab2a803a17..3babae1c29 100644 --- a/packaging/pom.xml +++ b/packaging/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-community-repo - 23.1.0.138-SNAPSHOT + 23.1.0.138 diff --git a/packaging/tests/pom.xml b/packaging/tests/pom.xml index e138c0db97..f4a7268140 100644 --- a/packaging/tests/pom.xml +++ b/packaging/tests/pom.xml @@ -6,7 +6,7 @@ org.alfresco alfresco-community-repo-packaging - 23.1.0.138-SNAPSHOT + 23.1.0.138 diff --git a/packaging/tests/tas-cmis/pom.xml b/packaging/tests/tas-cmis/pom.xml index e214919260..6b83c7028b 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.138-SNAPSHOT + 23.1.0.138 diff --git a/packaging/tests/tas-email/pom.xml b/packaging/tests/tas-email/pom.xml index 8f551b3892..b94c8e0470 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.138-SNAPSHOT + 23.1.0.138 diff --git a/packaging/tests/tas-integration/pom.xml b/packaging/tests/tas-integration/pom.xml index f714130383..06ddc3ea78 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.138-SNAPSHOT + 23.1.0.138 diff --git a/packaging/tests/tas-restapi/pom.xml b/packaging/tests/tas-restapi/pom.xml index 19d09e4ad4..a9daea3618 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.138-SNAPSHOT + 23.1.0.138 diff --git a/packaging/tests/tas-webdav/pom.xml b/packaging/tests/tas-webdav/pom.xml index b5c1e14487..59595ede3c 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.138-SNAPSHOT + 23.1.0.138 diff --git a/packaging/war/pom.xml b/packaging/war/pom.xml index 2ad598dd48..1e2f079aa6 100644 --- a/packaging/war/pom.xml +++ b/packaging/war/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-community-repo-packaging - 23.1.0.138-SNAPSHOT + 23.1.0.138 diff --git a/pom.xml b/pom.xml index 98cf0064e7..758086d676 100644 --- a/pom.xml +++ b/pom.xml @@ -2,7 +2,7 @@ 4.0.0 alfresco-community-repo - 23.1.0.138-SNAPSHOT + 23.1.0.138 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.138 diff --git a/remote-api/pom.xml b/remote-api/pom.xml index 76f03d29f8..6e12fbd5b9 100644 --- a/remote-api/pom.xml +++ b/remote-api/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-community-repo - 23.1.0.138-SNAPSHOT + 23.1.0.138 diff --git a/repository/pom.xml b/repository/pom.xml index 48272d205e..5281f77ba4 100644 --- a/repository/pom.xml +++ b/repository/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-community-repo - 23.1.0.138-SNAPSHOT + 23.1.0.138 From 1e506659d2f58e3c29f7313ad3f1def07ffb12c1 Mon Sep 17 00:00:00 2001 From: alfresco-build <8039454+alfresco-build@users.noreply.github.com> Date: Thu, 15 Jun 2023 16:00:17 +0000 Subject: [PATCH 09/12] [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 640d2793ab..0cbb62e1f4 100644 --- a/amps/ags/pom.xml +++ b/amps/ags/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-community-repo-amps - 23.1.0.138 + 23.1.0.139-SNAPSHOT diff --git a/amps/ags/rm-automation/pom.xml b/amps/ags/rm-automation/pom.xml index 059da0f058..1483ad7612 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.138 + 23.1.0.139-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 6dd4d45b43..0e50aa0100 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.138 + 23.1.0.139-SNAPSHOT diff --git a/amps/ags/rm-community/pom.xml b/amps/ags/rm-community/pom.xml index 7a0d8d4fa1..d771800861 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.138 + 23.1.0.139-SNAPSHOT diff --git a/amps/ags/rm-community/rm-community-repo/pom.xml b/amps/ags/rm-community/rm-community-repo/pom.xml index 08b97e77c5..a321966035 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.138 + 23.1.0.139-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 adcc093132..6a9d1643cb 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.138 + 23.1.0.139-SNAPSHOT diff --git a/amps/pom.xml b/amps/pom.xml index 733d6314bf..f8d7c59979 100644 --- a/amps/pom.xml +++ b/amps/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-community-repo - 23.1.0.138 + 23.1.0.139-SNAPSHOT diff --git a/amps/share-services/pom.xml b/amps/share-services/pom.xml index d9ae3d08a3..14cc14cd5e 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.138 + 23.1.0.139-SNAPSHOT diff --git a/core/pom.xml b/core/pom.xml index 0bc9566507..fc1b3d4c1c 100644 --- a/core/pom.xml +++ b/core/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-community-repo - 23.1.0.138 + 23.1.0.139-SNAPSHOT diff --git a/data-model/pom.xml b/data-model/pom.xml index dadc5818cb..0e3a2ec82f 100644 --- a/data-model/pom.xml +++ b/data-model/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-community-repo - 23.1.0.138 + 23.1.0.139-SNAPSHOT diff --git a/mmt/pom.xml b/mmt/pom.xml index 72c52a6cfb..2eb60e1ba9 100644 --- a/mmt/pom.xml +++ b/mmt/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-community-repo - 23.1.0.138 + 23.1.0.139-SNAPSHOT diff --git a/packaging/distribution/pom.xml b/packaging/distribution/pom.xml index a94d40ebd3..110173e92b 100644 --- a/packaging/distribution/pom.xml +++ b/packaging/distribution/pom.xml @@ -9,6 +9,6 @@ org.alfresco alfresco-community-repo-packaging - 23.1.0.138 + 23.1.0.139-SNAPSHOT diff --git a/packaging/docker-alfresco/pom.xml b/packaging/docker-alfresco/pom.xml index 76074eb0d1..978c0c278c 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.138 + 23.1.0.139-SNAPSHOT diff --git a/packaging/pom.xml b/packaging/pom.xml index 3babae1c29..464bf38b04 100644 --- a/packaging/pom.xml +++ b/packaging/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-community-repo - 23.1.0.138 + 23.1.0.139-SNAPSHOT diff --git a/packaging/tests/pom.xml b/packaging/tests/pom.xml index f4a7268140..830ee53379 100644 --- a/packaging/tests/pom.xml +++ b/packaging/tests/pom.xml @@ -6,7 +6,7 @@ org.alfresco alfresco-community-repo-packaging - 23.1.0.138 + 23.1.0.139-SNAPSHOT diff --git a/packaging/tests/tas-cmis/pom.xml b/packaging/tests/tas-cmis/pom.xml index 6b83c7028b..fd1b02ffc7 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.138 + 23.1.0.139-SNAPSHOT diff --git a/packaging/tests/tas-email/pom.xml b/packaging/tests/tas-email/pom.xml index b94c8e0470..5ea18c9f33 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.138 + 23.1.0.139-SNAPSHOT diff --git a/packaging/tests/tas-integration/pom.xml b/packaging/tests/tas-integration/pom.xml index 06ddc3ea78..153512c95a 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.138 + 23.1.0.139-SNAPSHOT diff --git a/packaging/tests/tas-restapi/pom.xml b/packaging/tests/tas-restapi/pom.xml index a9daea3618..c9278c33af 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.138 + 23.1.0.139-SNAPSHOT diff --git a/packaging/tests/tas-webdav/pom.xml b/packaging/tests/tas-webdav/pom.xml index 59595ede3c..8b26df1983 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.138 + 23.1.0.139-SNAPSHOT diff --git a/packaging/war/pom.xml b/packaging/war/pom.xml index 1e2f079aa6..c67954bf65 100644 --- a/packaging/war/pom.xml +++ b/packaging/war/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-community-repo-packaging - 23.1.0.138 + 23.1.0.139-SNAPSHOT diff --git a/pom.xml b/pom.xml index 758086d676..2376f54322 100644 --- a/pom.xml +++ b/pom.xml @@ -2,7 +2,7 @@ 4.0.0 alfresco-community-repo - 23.1.0.138 + 23.1.0.139-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.138 + HEAD diff --git a/remote-api/pom.xml b/remote-api/pom.xml index 6e12fbd5b9..8ad27ebe5a 100644 --- a/remote-api/pom.xml +++ b/remote-api/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-community-repo - 23.1.0.138 + 23.1.0.139-SNAPSHOT diff --git a/repository/pom.xml b/repository/pom.xml index 5281f77ba4..6f23a497e8 100644 --- a/repository/pom.xml +++ b/repository/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-community-repo - 23.1.0.138 + 23.1.0.139-SNAPSHOT From 8734eec06872295d9db2ad5e82376142eff1f67b Mon Sep 17 00:00:00 2001 From: pzurek Date: Fri, 16 Jun 2023 14:13:35 +0200 Subject: [PATCH 10/12] 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 11/12] [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 12/12] [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