From 02b7ee0f5462406fb55400769a9963307b94793b Mon Sep 17 00:00:00 2001 From: estan Date: Mon, 23 Nov 2020 14:42:44 +0200 Subject: [PATCH 01/22] APPS-361 [AGS/S3]Moving records between buckets in S3 (also possible moving records between stores-filecontenstore) fails --revert --- .../model/rma/aspect/RecordAspect.java | 44 +++++-------------- .../rma/aspect/RecordAspectUnitTest.java | 24 ---------- 2 files changed, 10 insertions(+), 58 deletions(-) diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/model/rma/aspect/RecordAspect.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/model/rma/aspect/RecordAspect.java index 25d03ad145..4957664e3b 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/model/rma/aspect/RecordAspect.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/model/rma/aspect/RecordAspect.java @@ -27,6 +27,11 @@ package org.alfresco.module.org_alfresco_module_rm.model.rma.aspect; +import java.io.Serializable; +import java.util.HashMap; +import java.util.Map; +import java.util.Set; + import org.alfresco.model.ContentModel; import org.alfresco.model.QuickShareModel; import org.alfresco.module.org_alfresco_module_rm.RecordsManagementPolicies; @@ -34,6 +39,7 @@ import org.alfresco.module.org_alfresco_module_rm.model.behaviour.AbstractDispos import org.alfresco.module.org_alfresco_module_rm.record.RecordService; import org.alfresco.module.org_alfresco_module_rm.security.ExtendedSecurityService; import org.alfresco.module.org_alfresco_module_rm.util.ContentBinDuplicationUtility; +import org.alfresco.repo.content.ContentServicePolicies; import org.alfresco.repo.copy.CopyBehaviourCallback; import org.alfresco.repo.copy.CopyDetails; import org.alfresco.repo.copy.CopyServicePolicies; @@ -54,11 +60,6 @@ import org.alfresco.service.cmr.repository.ScriptService; import org.alfresco.service.namespace.QName; import org.springframework.extensions.surf.util.I18NUtil; -import java.io.Serializable; -import java.util.HashMap; -import java.util.Map; -import java.util.Set; - /** * rma:record behaviour bean * @@ -76,7 +77,7 @@ public class RecordAspect extends AbstractDisposableItem RecordsManagementPolicies.OnRemoveReference, NodeServicePolicies.OnMoveNodePolicy, CopyServicePolicies.OnCopyCompletePolicy, - NodeServicePolicies.OnUpdatePropertiesPolicy + ContentServicePolicies.OnContentPropertyUpdatePolicy { /** Well-known location of the scripts folder. */ // TODO make configurable @@ -99,7 +100,6 @@ public class RecordAspect extends AbstractDisposableItem /** I18N */ private static final String MSG_CANNOT_UPDATE_RECORD_CONTENT = "rm.service.update-record-content"; - private static final String MSG_WORM_RECORD_LOCKED = "rm.action.worm-record-locked"; // WORM lock aspect public static final String RME_URI = "http://www.alfresco.org/model/recordsmanagemententerprise/1.0"; @@ -410,40 +410,16 @@ public class RecordAspect extends AbstractDisposableItem }, AuthenticationUtil.getSystemUserName()); } - /** - * Behaviour to prevent content update for records - * - * @see org.alfresco.repo.node.NodeServicePolicies.OnUpdatePropertiesPolicy#onUpdateProperties(NodeRef, Map, Map) - */ @Override @Behaviour ( kind = BehaviourKind.CLASS, notificationFrequency = NotificationFrequency.FIRST_EVENT ) - public void onUpdateProperties(NodeRef nodeRef, Map before, Map after) + public void onContentPropertyUpdate(NodeRef nodeRef, QName propertyQName, ContentData beforeValue, ContentData afterValue) { - String storeNameAfter = (String) after.get(ContentModel.PROP_STORE_NAME); - ContentData contentBefore = (ContentData) before.get(ContentModel.PROP_CONTENT); - ContentData contentAfter = (ContentData) after.get(ContentModel.PROP_CONTENT); - // Check only storeNameAfter since the store name is updated before this method is triggered - // Does not allow setting content to null when moving content between stores (case not covered by - // ContentPropertyRestrictionInterceptor) - if (storeNameAfter != null) - { - if (nodeService.hasAspect(nodeRef, ASPECT_WORM_LOCK)) - { - if (contentBefore != null && !contentBefore.equals(contentAfter)) - { - throw new IntegrityException(I18NUtil.getMessage(MSG_WORM_RECORD_LOCKED), null); - } - } - if (contentAfter != null) - { - return; - } - } - if (contentBefore != null && !contentBefore.equals(contentAfter)) + // Allow creation of content but not update + if (beforeValue != null) { throw new IntegrityException(I18NUtil.getMessage(MSG_CANNOT_UPDATE_RECORD_CONTENT), null); } diff --git a/rm-community/rm-community-repo/unit-test/java/org/alfresco/module/org_alfresco_module_rm/model/rma/aspect/RecordAspectUnitTest.java b/rm-community/rm-community-repo/unit-test/java/org/alfresco/module/org_alfresco_module_rm/model/rma/aspect/RecordAspectUnitTest.java index 56621d505f..249bc72556 100644 --- a/rm-community/rm-community-repo/unit-test/java/org/alfresco/module/org_alfresco_module_rm/model/rma/aspect/RecordAspectUnitTest.java +++ b/rm-community/rm-community-repo/unit-test/java/org/alfresco/module/org_alfresco_module_rm/model/rma/aspect/RecordAspectUnitTest.java @@ -132,28 +132,4 @@ public class RecordAspectUnitTest verify(mockExtendedSecurityService, times(1)).remove(COPY_REF); verify(mockContentBinDuplicationUtility, times(1)).duplicate(COPY_REF); } - - /** - * Check that no exception is thrown when moving record between stores - */ - @Test - public void testOnUpdatePropertiesContentMovedToAnotherStore() - { - Map before = ImmutableMap.of(PROP_CONTENT, new ContentData("dummyContentUrl1", "text" + - "/plain", 0L, "UTF-8", Locale.UK)); - Map after = ImmutableMap.of(PROP_CONTENT, new ContentData("dummyContentUrl2", "text" + - "/plain", 0L, "UTF-8", Locale.UK), PROP_STORE_NAME, "store2"); - recordAspect.onUpdateProperties(NODE_REF, before, after); - } - - /** - * Check that an IntegrityException is thrown when content is changed - */ - @Test(expected = IntegrityException.class) - public void testOnUpdatePropertiesContentChanged() - { - Map before = ImmutableMap.of(PROP_CONTENT, new ContentData("dummyContentUrl", "text/plain", 0L, "UTF-8", Locale.UK)); - Map after = ImmutableMap.of(PROP_CONTENT, new ContentData("dummyContentUrl2", "text/plain", 0L, "UTF-8", Locale.UK)); - recordAspect.onUpdateProperties(NODE_REF, before, after); - } } From 62c65eb173dc4a337d829489a9b6990fc39ce6fc Mon Sep 17 00:00:00 2001 From: Travis CI User Date: Tue, 24 Nov 2020 08:09:37 +0000 Subject: [PATCH 02/22] [maven-release-plugin][skip ci] prepare release V3.4.1-A1 --- pom.xml | 4 ++-- rm-automation/pom.xml | 2 +- rm-automation/rm-automation-community-rest-api/pom.xml | 2 +- rm-community/pom.xml | 2 +- rm-community/rm-community-repo/pom.xml | 2 +- rm-community/rm-community-rest-api-explorer/pom.xml | 2 +- 6 files changed, 7 insertions(+), 7 deletions(-) diff --git a/pom.xml b/pom.xml index da542adffa..8502432be2 100644 --- a/pom.xml +++ b/pom.xml @@ -4,7 +4,7 @@ org.alfresco alfresco-governance-services pom - 3.4.1-SNAPSHOT + 3.4.1-A1 Alfresco Governance Services http://www.alfresco.org/ @@ -18,7 +18,7 @@ scm:git:https://github.com/Alfresco/governance-services.git scm:git:https://github.com/Alfresco/governance-services.git https://github.com/Alfresco/governance-services - V3.4.0 + V3.4.1-A1 diff --git a/rm-automation/pom.xml b/rm-automation/pom.xml index 07aa4d97e9..6874bfb6a4 100644 --- a/rm-automation/pom.xml +++ b/rm-automation/pom.xml @@ -8,7 +8,7 @@ org.alfresco alfresco-governance-services - 3.4.1-SNAPSHOT + 3.4.1-A1 diff --git a/rm-automation/rm-automation-community-rest-api/pom.xml b/rm-automation/rm-automation-community-rest-api/pom.xml index 5c8fb293e6..99454c569c 100644 --- a/rm-automation/rm-automation-community-rest-api/pom.xml +++ b/rm-automation/rm-automation-community-rest-api/pom.xml @@ -8,7 +8,7 @@ org.alfresco alfresco-governance-services-automation - 3.4.1-SNAPSHOT + 3.4.1-A1 diff --git a/rm-community/pom.xml b/rm-community/pom.xml index cc0be9ba64..a624481ba1 100644 --- a/rm-community/pom.xml +++ b/rm-community/pom.xml @@ -8,7 +8,7 @@ org.alfresco alfresco-governance-services - 3.4.1-SNAPSHOT + 3.4.1-A1 diff --git a/rm-community/rm-community-repo/pom.xml b/rm-community/rm-community-repo/pom.xml index fd227719b3..6db02ab899 100644 --- a/rm-community/rm-community-repo/pom.xml +++ b/rm-community/rm-community-repo/pom.xml @@ -9,7 +9,7 @@ org.alfresco alfresco-governance-services-community - 3.4.1-SNAPSHOT + 3.4.1-A1 diff --git a/rm-community/rm-community-rest-api-explorer/pom.xml b/rm-community/rm-community-rest-api-explorer/pom.xml index 8e8b8ef613..32a6e140e5 100644 --- a/rm-community/rm-community-rest-api-explorer/pom.xml +++ b/rm-community/rm-community-rest-api-explorer/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-governance-services-community - 3.4.1-SNAPSHOT + 3.4.1-A1 From b38596bfae1a78bb4a4dbcf7f609edaba8e1cfa8 Mon Sep 17 00:00:00 2001 From: Travis CI User Date: Tue, 24 Nov 2020 08:09:45 +0000 Subject: [PATCH 03/22] [maven-release-plugin][skip ci] prepare for next development iteration --- pom.xml | 4 ++-- rm-automation/pom.xml | 2 +- rm-automation/rm-automation-community-rest-api/pom.xml | 2 +- rm-community/pom.xml | 2 +- rm-community/rm-community-repo/pom.xml | 2 +- rm-community/rm-community-rest-api-explorer/pom.xml | 2 +- 6 files changed, 7 insertions(+), 7 deletions(-) diff --git a/pom.xml b/pom.xml index 8502432be2..da542adffa 100644 --- a/pom.xml +++ b/pom.xml @@ -4,7 +4,7 @@ org.alfresco alfresco-governance-services pom - 3.4.1-A1 + 3.4.1-SNAPSHOT Alfresco Governance Services http://www.alfresco.org/ @@ -18,7 +18,7 @@ scm:git:https://github.com/Alfresco/governance-services.git scm:git:https://github.com/Alfresco/governance-services.git https://github.com/Alfresco/governance-services - V3.4.1-A1 + V3.4.0 diff --git a/rm-automation/pom.xml b/rm-automation/pom.xml index 6874bfb6a4..07aa4d97e9 100644 --- a/rm-automation/pom.xml +++ b/rm-automation/pom.xml @@ -8,7 +8,7 @@ org.alfresco alfresco-governance-services - 3.4.1-A1 + 3.4.1-SNAPSHOT diff --git a/rm-automation/rm-automation-community-rest-api/pom.xml b/rm-automation/rm-automation-community-rest-api/pom.xml index 99454c569c..5c8fb293e6 100644 --- a/rm-automation/rm-automation-community-rest-api/pom.xml +++ b/rm-automation/rm-automation-community-rest-api/pom.xml @@ -8,7 +8,7 @@ org.alfresco alfresco-governance-services-automation - 3.4.1-A1 + 3.4.1-SNAPSHOT diff --git a/rm-community/pom.xml b/rm-community/pom.xml index a624481ba1..cc0be9ba64 100644 --- a/rm-community/pom.xml +++ b/rm-community/pom.xml @@ -8,7 +8,7 @@ org.alfresco alfresco-governance-services - 3.4.1-A1 + 3.4.1-SNAPSHOT diff --git a/rm-community/rm-community-repo/pom.xml b/rm-community/rm-community-repo/pom.xml index 6db02ab899..fd227719b3 100644 --- a/rm-community/rm-community-repo/pom.xml +++ b/rm-community/rm-community-repo/pom.xml @@ -9,7 +9,7 @@ org.alfresco alfresco-governance-services-community - 3.4.1-A1 + 3.4.1-SNAPSHOT diff --git a/rm-community/rm-community-rest-api-explorer/pom.xml b/rm-community/rm-community-rest-api-explorer/pom.xml index 32a6e140e5..8e8b8ef613 100644 --- a/rm-community/rm-community-rest-api-explorer/pom.xml +++ b/rm-community/rm-community-rest-api-explorer/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-governance-services-community - 3.4.1-A1 + 3.4.1-SNAPSHOT From 8aa26ec4fb270d5fb6ac068da8b9653c319a3b3c Mon Sep 17 00:00:00 2001 From: Travis CI User Date: Tue, 24 Nov 2020 10:15:02 +0000 Subject: [PATCH 04/22] [maven-release-plugin][skip ci] prepare release V3.4.1-A2 --- pom.xml | 4 ++-- rm-automation/pom.xml | 2 +- rm-automation/rm-automation-community-rest-api/pom.xml | 2 +- rm-community/pom.xml | 2 +- rm-community/rm-community-repo/pom.xml | 2 +- rm-community/rm-community-rest-api-explorer/pom.xml | 2 +- 6 files changed, 7 insertions(+), 7 deletions(-) diff --git a/pom.xml b/pom.xml index da542adffa..ed1112e2ce 100644 --- a/pom.xml +++ b/pom.xml @@ -4,7 +4,7 @@ org.alfresco alfresco-governance-services pom - 3.4.1-SNAPSHOT + 3.4.1-A2 Alfresco Governance Services http://www.alfresco.org/ @@ -18,7 +18,7 @@ scm:git:https://github.com/Alfresco/governance-services.git scm:git:https://github.com/Alfresco/governance-services.git https://github.com/Alfresco/governance-services - V3.4.0 + V3.4.1-A2 diff --git a/rm-automation/pom.xml b/rm-automation/pom.xml index 07aa4d97e9..8a2f8f1fd3 100644 --- a/rm-automation/pom.xml +++ b/rm-automation/pom.xml @@ -8,7 +8,7 @@ org.alfresco alfresco-governance-services - 3.4.1-SNAPSHOT + 3.4.1-A2 diff --git a/rm-automation/rm-automation-community-rest-api/pom.xml b/rm-automation/rm-automation-community-rest-api/pom.xml index 5c8fb293e6..d043955e8f 100644 --- a/rm-automation/rm-automation-community-rest-api/pom.xml +++ b/rm-automation/rm-automation-community-rest-api/pom.xml @@ -8,7 +8,7 @@ org.alfresco alfresco-governance-services-automation - 3.4.1-SNAPSHOT + 3.4.1-A2 diff --git a/rm-community/pom.xml b/rm-community/pom.xml index cc0be9ba64..67610d99ba 100644 --- a/rm-community/pom.xml +++ b/rm-community/pom.xml @@ -8,7 +8,7 @@ org.alfresco alfresco-governance-services - 3.4.1-SNAPSHOT + 3.4.1-A2 diff --git a/rm-community/rm-community-repo/pom.xml b/rm-community/rm-community-repo/pom.xml index fd227719b3..4b8febe904 100644 --- a/rm-community/rm-community-repo/pom.xml +++ b/rm-community/rm-community-repo/pom.xml @@ -9,7 +9,7 @@ org.alfresco alfresco-governance-services-community - 3.4.1-SNAPSHOT + 3.4.1-A2 diff --git a/rm-community/rm-community-rest-api-explorer/pom.xml b/rm-community/rm-community-rest-api-explorer/pom.xml index 8e8b8ef613..a43c63beb9 100644 --- a/rm-community/rm-community-rest-api-explorer/pom.xml +++ b/rm-community/rm-community-rest-api-explorer/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-governance-services-community - 3.4.1-SNAPSHOT + 3.4.1-A2 From 26400110dcaa7c0c949363c13e64cb30b42b540f Mon Sep 17 00:00:00 2001 From: Travis CI User Date: Tue, 24 Nov 2020 10:15:11 +0000 Subject: [PATCH 05/22] [maven-release-plugin][skip ci] prepare for next development iteration --- pom.xml | 4 ++-- rm-automation/pom.xml | 2 +- rm-automation/rm-automation-community-rest-api/pom.xml | 2 +- rm-community/pom.xml | 2 +- rm-community/rm-community-repo/pom.xml | 2 +- rm-community/rm-community-rest-api-explorer/pom.xml | 2 +- 6 files changed, 7 insertions(+), 7 deletions(-) diff --git a/pom.xml b/pom.xml index ed1112e2ce..da542adffa 100644 --- a/pom.xml +++ b/pom.xml @@ -4,7 +4,7 @@ org.alfresco alfresco-governance-services pom - 3.4.1-A2 + 3.4.1-SNAPSHOT Alfresco Governance Services http://www.alfresco.org/ @@ -18,7 +18,7 @@ scm:git:https://github.com/Alfresco/governance-services.git scm:git:https://github.com/Alfresco/governance-services.git https://github.com/Alfresco/governance-services - V3.4.1-A2 + V3.4.0 diff --git a/rm-automation/pom.xml b/rm-automation/pom.xml index 8a2f8f1fd3..07aa4d97e9 100644 --- a/rm-automation/pom.xml +++ b/rm-automation/pom.xml @@ -8,7 +8,7 @@ org.alfresco alfresco-governance-services - 3.4.1-A2 + 3.4.1-SNAPSHOT diff --git a/rm-automation/rm-automation-community-rest-api/pom.xml b/rm-automation/rm-automation-community-rest-api/pom.xml index d043955e8f..5c8fb293e6 100644 --- a/rm-automation/rm-automation-community-rest-api/pom.xml +++ b/rm-automation/rm-automation-community-rest-api/pom.xml @@ -8,7 +8,7 @@ org.alfresco alfresco-governance-services-automation - 3.4.1-A2 + 3.4.1-SNAPSHOT diff --git a/rm-community/pom.xml b/rm-community/pom.xml index 67610d99ba..cc0be9ba64 100644 --- a/rm-community/pom.xml +++ b/rm-community/pom.xml @@ -8,7 +8,7 @@ org.alfresco alfresco-governance-services - 3.4.1-A2 + 3.4.1-SNAPSHOT diff --git a/rm-community/rm-community-repo/pom.xml b/rm-community/rm-community-repo/pom.xml index 4b8febe904..fd227719b3 100644 --- a/rm-community/rm-community-repo/pom.xml +++ b/rm-community/rm-community-repo/pom.xml @@ -9,7 +9,7 @@ org.alfresco alfresco-governance-services-community - 3.4.1-A2 + 3.4.1-SNAPSHOT diff --git a/rm-community/rm-community-rest-api-explorer/pom.xml b/rm-community/rm-community-rest-api-explorer/pom.xml index a43c63beb9..8e8b8ef613 100644 --- a/rm-community/rm-community-rest-api-explorer/pom.xml +++ b/rm-community/rm-community-rest-api-explorer/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-governance-services-community - 3.4.1-A2 + 3.4.1-SNAPSHOT From 8e74c2fee23075708a45a81e188f0b14f27673ab Mon Sep 17 00:00:00 2001 From: Claudia Agache Date: Tue, 24 Nov 2020 13:15:53 +0200 Subject: [PATCH 06/22] [enterprise release 3.4.1-A3 3.4.1-SNAPSHOT] [skip tests] --- scripts/release.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/release.sh b/scripts/release.sh index d9a13454ec..939052b7c1 100755 --- a/scripts/release.sh +++ b/scripts/release.sh @@ -36,5 +36,5 @@ mvn --batch-mode \ -DreleaseVersion=${RELEASE_VERSION} \ -DdevelopmentVersion=${DEVELOPMENT_VERSION} \ -DscmCommentPrefix="[maven-release-plugin][skip ci] " \ - "-Darguments=-DskipTests -D${release_type} -P${deployment_repository},release-${release_type}" \ + "-Darguments=-DskipTests -P${deployment_repository},release-${release_type}" \ release:clean release:prepare release:perform From b5780729bc3f2ff494b3cb0ecf10df1acb5b5696 Mon Sep 17 00:00:00 2001 From: Claudia Agache Date: Tue, 24 Nov 2020 13:17:05 +0200 Subject: [PATCH 07/22] [enterprise release 3.4.1-A3 3.4.1-SNAPSHOT] [skip tests] From 9048cd79e78a6f910042146901fcdf1ef8331eab Mon Sep 17 00:00:00 2001 From: Travis CI User Date: Tue, 24 Nov 2020 12:19:52 +0000 Subject: [PATCH 08/22] [maven-release-plugin][skip ci] prepare release V3.4.1-A3 --- pom.xml | 4 ++-- rm-automation/pom.xml | 2 +- rm-automation/rm-automation-community-rest-api/pom.xml | 2 +- rm-community/pom.xml | 2 +- rm-community/rm-community-repo/pom.xml | 2 +- rm-community/rm-community-rest-api-explorer/pom.xml | 2 +- 6 files changed, 7 insertions(+), 7 deletions(-) diff --git a/pom.xml b/pom.xml index da542adffa..b318024c3a 100644 --- a/pom.xml +++ b/pom.xml @@ -4,7 +4,7 @@ org.alfresco alfresco-governance-services pom - 3.4.1-SNAPSHOT + 3.4.1-A3 Alfresco Governance Services http://www.alfresco.org/ @@ -18,7 +18,7 @@ scm:git:https://github.com/Alfresco/governance-services.git scm:git:https://github.com/Alfresco/governance-services.git https://github.com/Alfresco/governance-services - V3.4.0 + V3.4.1-A3 diff --git a/rm-automation/pom.xml b/rm-automation/pom.xml index 07aa4d97e9..b882318ba8 100644 --- a/rm-automation/pom.xml +++ b/rm-automation/pom.xml @@ -8,7 +8,7 @@ org.alfresco alfresco-governance-services - 3.4.1-SNAPSHOT + 3.4.1-A3 diff --git a/rm-automation/rm-automation-community-rest-api/pom.xml b/rm-automation/rm-automation-community-rest-api/pom.xml index 5c8fb293e6..bd1dd346fd 100644 --- a/rm-automation/rm-automation-community-rest-api/pom.xml +++ b/rm-automation/rm-automation-community-rest-api/pom.xml @@ -8,7 +8,7 @@ org.alfresco alfresco-governance-services-automation - 3.4.1-SNAPSHOT + 3.4.1-A3 diff --git a/rm-community/pom.xml b/rm-community/pom.xml index cc0be9ba64..40884aaaec 100644 --- a/rm-community/pom.xml +++ b/rm-community/pom.xml @@ -8,7 +8,7 @@ org.alfresco alfresco-governance-services - 3.4.1-SNAPSHOT + 3.4.1-A3 diff --git a/rm-community/rm-community-repo/pom.xml b/rm-community/rm-community-repo/pom.xml index fd227719b3..a4a61b6044 100644 --- a/rm-community/rm-community-repo/pom.xml +++ b/rm-community/rm-community-repo/pom.xml @@ -9,7 +9,7 @@ org.alfresco alfresco-governance-services-community - 3.4.1-SNAPSHOT + 3.4.1-A3 diff --git a/rm-community/rm-community-rest-api-explorer/pom.xml b/rm-community/rm-community-rest-api-explorer/pom.xml index 8e8b8ef613..b0aa696abf 100644 --- a/rm-community/rm-community-rest-api-explorer/pom.xml +++ b/rm-community/rm-community-rest-api-explorer/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-governance-services-community - 3.4.1-SNAPSHOT + 3.4.1-A3 From 09394ec8dbde3452f92c040a629199ee12bf2d29 Mon Sep 17 00:00:00 2001 From: Travis CI User Date: Tue, 24 Nov 2020 12:20:00 +0000 Subject: [PATCH 09/22] [maven-release-plugin][skip ci] prepare for next development iteration --- pom.xml | 4 ++-- rm-automation/pom.xml | 2 +- rm-automation/rm-automation-community-rest-api/pom.xml | 2 +- rm-community/pom.xml | 2 +- rm-community/rm-community-repo/pom.xml | 2 +- rm-community/rm-community-rest-api-explorer/pom.xml | 2 +- 6 files changed, 7 insertions(+), 7 deletions(-) diff --git a/pom.xml b/pom.xml index b318024c3a..da542adffa 100644 --- a/pom.xml +++ b/pom.xml @@ -4,7 +4,7 @@ org.alfresco alfresco-governance-services pom - 3.4.1-A3 + 3.4.1-SNAPSHOT Alfresco Governance Services http://www.alfresco.org/ @@ -18,7 +18,7 @@ scm:git:https://github.com/Alfresco/governance-services.git scm:git:https://github.com/Alfresco/governance-services.git https://github.com/Alfresco/governance-services - V3.4.1-A3 + V3.4.0 diff --git a/rm-automation/pom.xml b/rm-automation/pom.xml index b882318ba8..07aa4d97e9 100644 --- a/rm-automation/pom.xml +++ b/rm-automation/pom.xml @@ -8,7 +8,7 @@ org.alfresco alfresco-governance-services - 3.4.1-A3 + 3.4.1-SNAPSHOT diff --git a/rm-automation/rm-automation-community-rest-api/pom.xml b/rm-automation/rm-automation-community-rest-api/pom.xml index bd1dd346fd..5c8fb293e6 100644 --- a/rm-automation/rm-automation-community-rest-api/pom.xml +++ b/rm-automation/rm-automation-community-rest-api/pom.xml @@ -8,7 +8,7 @@ org.alfresco alfresco-governance-services-automation - 3.4.1-A3 + 3.4.1-SNAPSHOT diff --git a/rm-community/pom.xml b/rm-community/pom.xml index 40884aaaec..cc0be9ba64 100644 --- a/rm-community/pom.xml +++ b/rm-community/pom.xml @@ -8,7 +8,7 @@ org.alfresco alfresco-governance-services - 3.4.1-A3 + 3.4.1-SNAPSHOT diff --git a/rm-community/rm-community-repo/pom.xml b/rm-community/rm-community-repo/pom.xml index a4a61b6044..fd227719b3 100644 --- a/rm-community/rm-community-repo/pom.xml +++ b/rm-community/rm-community-repo/pom.xml @@ -9,7 +9,7 @@ org.alfresco alfresco-governance-services-community - 3.4.1-A3 + 3.4.1-SNAPSHOT diff --git a/rm-community/rm-community-rest-api-explorer/pom.xml b/rm-community/rm-community-rest-api-explorer/pom.xml index b0aa696abf..8e8b8ef613 100644 --- a/rm-community/rm-community-rest-api-explorer/pom.xml +++ b/rm-community/rm-community-rest-api-explorer/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-governance-services-community - 3.4.1-A3 + 3.4.1-SNAPSHOT From e5926a9dc9aecd6a2cf737a35b6022af23ed040e Mon Sep 17 00:00:00 2001 From: ehardon Date: Tue, 24 Nov 2020 14:29:37 +0200 Subject: [PATCH 10/22] [enterprise release 3.4.1-A4 3.4.1-SNAPSHOT] [skip tests] --- scripts/release.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/release.sh b/scripts/release.sh index 939052b7c1..6e1a7256e8 100755 --- a/scripts/release.sh +++ b/scripts/release.sh @@ -36,5 +36,5 @@ mvn --batch-mode \ -DreleaseVersion=${RELEASE_VERSION} \ -DdevelopmentVersion=${DEVELOPMENT_VERSION} \ -DscmCommentPrefix="[maven-release-plugin][skip ci] " \ - "-Darguments=-DskipTests -P${deployment_repository},release-${release_type}" \ + "-Darguments=-DskipTests -D${release_type} -DuseReleaseProfile=false -P${deployment_repository},release-${release_type}" \ release:clean release:prepare release:perform From cb813f5a5876580ef5a20b194b239a2ed2827683 Mon Sep 17 00:00:00 2001 From: Travis CI User Date: Tue, 24 Nov 2020 13:27:28 +0000 Subject: [PATCH 11/22] [maven-release-plugin][skip ci] prepare release V3.4.1-A4 --- pom.xml | 4 ++-- rm-automation/pom.xml | 2 +- rm-automation/rm-automation-community-rest-api/pom.xml | 2 +- rm-community/pom.xml | 2 +- rm-community/rm-community-repo/pom.xml | 2 +- rm-community/rm-community-rest-api-explorer/pom.xml | 2 +- 6 files changed, 7 insertions(+), 7 deletions(-) diff --git a/pom.xml b/pom.xml index da542adffa..88ff8d60f7 100644 --- a/pom.xml +++ b/pom.xml @@ -4,7 +4,7 @@ org.alfresco alfresco-governance-services pom - 3.4.1-SNAPSHOT + 3.4.1-A4 Alfresco Governance Services http://www.alfresco.org/ @@ -18,7 +18,7 @@ scm:git:https://github.com/Alfresco/governance-services.git scm:git:https://github.com/Alfresco/governance-services.git https://github.com/Alfresco/governance-services - V3.4.0 + V3.4.1-A4 diff --git a/rm-automation/pom.xml b/rm-automation/pom.xml index 07aa4d97e9..039366853e 100644 --- a/rm-automation/pom.xml +++ b/rm-automation/pom.xml @@ -8,7 +8,7 @@ org.alfresco alfresco-governance-services - 3.4.1-SNAPSHOT + 3.4.1-A4 diff --git a/rm-automation/rm-automation-community-rest-api/pom.xml b/rm-automation/rm-automation-community-rest-api/pom.xml index 5c8fb293e6..fff359518c 100644 --- a/rm-automation/rm-automation-community-rest-api/pom.xml +++ b/rm-automation/rm-automation-community-rest-api/pom.xml @@ -8,7 +8,7 @@ org.alfresco alfresco-governance-services-automation - 3.4.1-SNAPSHOT + 3.4.1-A4 diff --git a/rm-community/pom.xml b/rm-community/pom.xml index cc0be9ba64..540ae3f9bd 100644 --- a/rm-community/pom.xml +++ b/rm-community/pom.xml @@ -8,7 +8,7 @@ org.alfresco alfresco-governance-services - 3.4.1-SNAPSHOT + 3.4.1-A4 diff --git a/rm-community/rm-community-repo/pom.xml b/rm-community/rm-community-repo/pom.xml index fd227719b3..3845c957e3 100644 --- a/rm-community/rm-community-repo/pom.xml +++ b/rm-community/rm-community-repo/pom.xml @@ -9,7 +9,7 @@ org.alfresco alfresco-governance-services-community - 3.4.1-SNAPSHOT + 3.4.1-A4 diff --git a/rm-community/rm-community-rest-api-explorer/pom.xml b/rm-community/rm-community-rest-api-explorer/pom.xml index 8e8b8ef613..968fc3dc6b 100644 --- a/rm-community/rm-community-rest-api-explorer/pom.xml +++ b/rm-community/rm-community-rest-api-explorer/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-governance-services-community - 3.4.1-SNAPSHOT + 3.4.1-A4 From e3776d86bf0a90f7e610218aa6819dabc5e291da Mon Sep 17 00:00:00 2001 From: Travis CI User Date: Tue, 24 Nov 2020 13:27:35 +0000 Subject: [PATCH 12/22] [maven-release-plugin][skip ci] prepare for next development iteration --- pom.xml | 4 ++-- rm-automation/pom.xml | 2 +- rm-automation/rm-automation-community-rest-api/pom.xml | 2 +- rm-community/pom.xml | 2 +- rm-community/rm-community-repo/pom.xml | 2 +- rm-community/rm-community-rest-api-explorer/pom.xml | 2 +- 6 files changed, 7 insertions(+), 7 deletions(-) diff --git a/pom.xml b/pom.xml index 88ff8d60f7..da542adffa 100644 --- a/pom.xml +++ b/pom.xml @@ -4,7 +4,7 @@ org.alfresco alfresco-governance-services pom - 3.4.1-A4 + 3.4.1-SNAPSHOT Alfresco Governance Services http://www.alfresco.org/ @@ -18,7 +18,7 @@ scm:git:https://github.com/Alfresco/governance-services.git scm:git:https://github.com/Alfresco/governance-services.git https://github.com/Alfresco/governance-services - V3.4.1-A4 + V3.4.0 diff --git a/rm-automation/pom.xml b/rm-automation/pom.xml index 039366853e..07aa4d97e9 100644 --- a/rm-automation/pom.xml +++ b/rm-automation/pom.xml @@ -8,7 +8,7 @@ org.alfresco alfresco-governance-services - 3.4.1-A4 + 3.4.1-SNAPSHOT diff --git a/rm-automation/rm-automation-community-rest-api/pom.xml b/rm-automation/rm-automation-community-rest-api/pom.xml index fff359518c..5c8fb293e6 100644 --- a/rm-automation/rm-automation-community-rest-api/pom.xml +++ b/rm-automation/rm-automation-community-rest-api/pom.xml @@ -8,7 +8,7 @@ org.alfresco alfresco-governance-services-automation - 3.4.1-A4 + 3.4.1-SNAPSHOT diff --git a/rm-community/pom.xml b/rm-community/pom.xml index 540ae3f9bd..cc0be9ba64 100644 --- a/rm-community/pom.xml +++ b/rm-community/pom.xml @@ -8,7 +8,7 @@ org.alfresco alfresco-governance-services - 3.4.1-A4 + 3.4.1-SNAPSHOT diff --git a/rm-community/rm-community-repo/pom.xml b/rm-community/rm-community-repo/pom.xml index 3845c957e3..fd227719b3 100644 --- a/rm-community/rm-community-repo/pom.xml +++ b/rm-community/rm-community-repo/pom.xml @@ -9,7 +9,7 @@ org.alfresco alfresco-governance-services-community - 3.4.1-A4 + 3.4.1-SNAPSHOT diff --git a/rm-community/rm-community-rest-api-explorer/pom.xml b/rm-community/rm-community-rest-api-explorer/pom.xml index 968fc3dc6b..8e8b8ef613 100644 --- a/rm-community/rm-community-rest-api-explorer/pom.xml +++ b/rm-community/rm-community-rest-api-explorer/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-governance-services-community - 3.4.1-A4 + 3.4.1-SNAPSHOT From 1d0524ef2e986368d38643b0b8db041dd3113e64 Mon Sep 17 00:00:00 2001 From: Claudia Agache Date: Tue, 24 Nov 2020 17:16:34 +0200 Subject: [PATCH 13/22] [enterprise release 3.4.1-A5 3.4.1-SNAPSHOT] [skip tests] --- scripts/release.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/release.sh b/scripts/release.sh index 6e1a7256e8..1bda536f45 100755 --- a/scripts/release.sh +++ b/scripts/release.sh @@ -36,5 +36,5 @@ mvn --batch-mode \ -DreleaseVersion=${RELEASE_VERSION} \ -DdevelopmentVersion=${DEVELOPMENT_VERSION} \ -DscmCommentPrefix="[maven-release-plugin][skip ci] " \ - "-Darguments=-DskipTests -D${release_type} -DuseReleaseProfile=false -P${deployment_repository},release-${release_type}" \ + "-Darguments=-DskipTests -Dmaven.source.skip=true -D${release_type} -DuseReleaseProfile=false -P${deployment_repository},release-${release_type}" \ release:clean release:prepare release:perform From ce271ab9b6dfbcbf0584576bbaad5238bdb8e690 Mon Sep 17 00:00:00 2001 From: Travis CI User Date: Tue, 24 Nov 2020 16:22:09 +0000 Subject: [PATCH 14/22] [maven-release-plugin][skip ci] prepare release V3.4.1-A5 --- pom.xml | 4 ++-- rm-automation/pom.xml | 2 +- rm-automation/rm-automation-community-rest-api/pom.xml | 2 +- rm-community/pom.xml | 2 +- rm-community/rm-community-repo/pom.xml | 2 +- rm-community/rm-community-rest-api-explorer/pom.xml | 2 +- 6 files changed, 7 insertions(+), 7 deletions(-) diff --git a/pom.xml b/pom.xml index da542adffa..e8c63fde9b 100644 --- a/pom.xml +++ b/pom.xml @@ -4,7 +4,7 @@ org.alfresco alfresco-governance-services pom - 3.4.1-SNAPSHOT + 3.4.1-A5 Alfresco Governance Services http://www.alfresco.org/ @@ -18,7 +18,7 @@ scm:git:https://github.com/Alfresco/governance-services.git scm:git:https://github.com/Alfresco/governance-services.git https://github.com/Alfresco/governance-services - V3.4.0 + V3.4.1-A5 diff --git a/rm-automation/pom.xml b/rm-automation/pom.xml index 07aa4d97e9..cbba945907 100644 --- a/rm-automation/pom.xml +++ b/rm-automation/pom.xml @@ -8,7 +8,7 @@ org.alfresco alfresco-governance-services - 3.4.1-SNAPSHOT + 3.4.1-A5 diff --git a/rm-automation/rm-automation-community-rest-api/pom.xml b/rm-automation/rm-automation-community-rest-api/pom.xml index 5c8fb293e6..102c9b62ab 100644 --- a/rm-automation/rm-automation-community-rest-api/pom.xml +++ b/rm-automation/rm-automation-community-rest-api/pom.xml @@ -8,7 +8,7 @@ org.alfresco alfresco-governance-services-automation - 3.4.1-SNAPSHOT + 3.4.1-A5 diff --git a/rm-community/pom.xml b/rm-community/pom.xml index cc0be9ba64..37dededbbc 100644 --- a/rm-community/pom.xml +++ b/rm-community/pom.xml @@ -8,7 +8,7 @@ org.alfresco alfresco-governance-services - 3.4.1-SNAPSHOT + 3.4.1-A5 diff --git a/rm-community/rm-community-repo/pom.xml b/rm-community/rm-community-repo/pom.xml index fd227719b3..be34b450d1 100644 --- a/rm-community/rm-community-repo/pom.xml +++ b/rm-community/rm-community-repo/pom.xml @@ -9,7 +9,7 @@ org.alfresco alfresco-governance-services-community - 3.4.1-SNAPSHOT + 3.4.1-A5 diff --git a/rm-community/rm-community-rest-api-explorer/pom.xml b/rm-community/rm-community-rest-api-explorer/pom.xml index 8e8b8ef613..4967a9141d 100644 --- a/rm-community/rm-community-rest-api-explorer/pom.xml +++ b/rm-community/rm-community-rest-api-explorer/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-governance-services-community - 3.4.1-SNAPSHOT + 3.4.1-A5 From e5b301fe3608c9b6de0500249e3d021220b4ed8e Mon Sep 17 00:00:00 2001 From: Travis CI User Date: Tue, 24 Nov 2020 16:22:18 +0000 Subject: [PATCH 15/22] [maven-release-plugin][skip ci] prepare for next development iteration --- pom.xml | 4 ++-- rm-automation/pom.xml | 2 +- rm-automation/rm-automation-community-rest-api/pom.xml | 2 +- rm-community/pom.xml | 2 +- rm-community/rm-community-repo/pom.xml | 2 +- rm-community/rm-community-rest-api-explorer/pom.xml | 2 +- 6 files changed, 7 insertions(+), 7 deletions(-) diff --git a/pom.xml b/pom.xml index e8c63fde9b..da542adffa 100644 --- a/pom.xml +++ b/pom.xml @@ -4,7 +4,7 @@ org.alfresco alfresco-governance-services pom - 3.4.1-A5 + 3.4.1-SNAPSHOT Alfresco Governance Services http://www.alfresco.org/ @@ -18,7 +18,7 @@ scm:git:https://github.com/Alfresco/governance-services.git scm:git:https://github.com/Alfresco/governance-services.git https://github.com/Alfresco/governance-services - V3.4.1-A5 + V3.4.0 diff --git a/rm-automation/pom.xml b/rm-automation/pom.xml index cbba945907..07aa4d97e9 100644 --- a/rm-automation/pom.xml +++ b/rm-automation/pom.xml @@ -8,7 +8,7 @@ org.alfresco alfresco-governance-services - 3.4.1-A5 + 3.4.1-SNAPSHOT diff --git a/rm-automation/rm-automation-community-rest-api/pom.xml b/rm-automation/rm-automation-community-rest-api/pom.xml index 102c9b62ab..5c8fb293e6 100644 --- a/rm-automation/rm-automation-community-rest-api/pom.xml +++ b/rm-automation/rm-automation-community-rest-api/pom.xml @@ -8,7 +8,7 @@ org.alfresco alfresco-governance-services-automation - 3.4.1-A5 + 3.4.1-SNAPSHOT diff --git a/rm-community/pom.xml b/rm-community/pom.xml index 37dededbbc..cc0be9ba64 100644 --- a/rm-community/pom.xml +++ b/rm-community/pom.xml @@ -8,7 +8,7 @@ org.alfresco alfresco-governance-services - 3.4.1-A5 + 3.4.1-SNAPSHOT diff --git a/rm-community/rm-community-repo/pom.xml b/rm-community/rm-community-repo/pom.xml index be34b450d1..fd227719b3 100644 --- a/rm-community/rm-community-repo/pom.xml +++ b/rm-community/rm-community-repo/pom.xml @@ -9,7 +9,7 @@ org.alfresco alfresco-governance-services-community - 3.4.1-A5 + 3.4.1-SNAPSHOT diff --git a/rm-community/rm-community-rest-api-explorer/pom.xml b/rm-community/rm-community-rest-api-explorer/pom.xml index 4967a9141d..8e8b8ef613 100644 --- a/rm-community/rm-community-rest-api-explorer/pom.xml +++ b/rm-community/rm-community-rest-api-explorer/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-governance-services-community - 3.4.1-A5 + 3.4.1-SNAPSHOT From 89f3e0545c9b715b45dfe96a090172121d042ede Mon Sep 17 00:00:00 2001 From: ehardon Date: Wed, 25 Nov 2020 10:01:51 +0200 Subject: [PATCH 16/22] [enterprise release 3.4.1-A6 3.4.1-SNAPSHOT] [skip tests] --- scripts/release.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/scripts/release.sh b/scripts/release.sh index 1bda536f45..84ef791d7d 100755 --- a/scripts/release.sh +++ b/scripts/release.sh @@ -36,5 +36,6 @@ mvn --batch-mode \ -DreleaseVersion=${RELEASE_VERSION} \ -DdevelopmentVersion=${DEVELOPMENT_VERSION} \ -DscmCommentPrefix="[maven-release-plugin][skip ci] " \ - "-Darguments=-DskipTests -Dmaven.source.skip=true -D${release_type} -DuseReleaseProfile=false -P${deployment_repository},release-${release_type}" \ + -DskipTests -D${release_type} -DuseReleaseProfile=false \ + -P${release_type}-release -P${deployment_repository} \ release:clean release:prepare release:perform From a579e7d36170dd90d8b8a61b22aa135792e96a8e Mon Sep 17 00:00:00 2001 From: Travis CI User Date: Wed, 25 Nov 2020 08:57:19 +0000 Subject: [PATCH 17/22] [maven-release-plugin][skip ci] prepare release V3.4.1-A6 --- pom.xml | 4 ++-- rm-automation/pom.xml | 2 +- rm-automation/rm-automation-community-rest-api/pom.xml | 2 +- rm-community/pom.xml | 2 +- rm-community/rm-community-repo/pom.xml | 2 +- rm-community/rm-community-rest-api-explorer/pom.xml | 2 +- 6 files changed, 7 insertions(+), 7 deletions(-) diff --git a/pom.xml b/pom.xml index da542adffa..f7261501c4 100644 --- a/pom.xml +++ b/pom.xml @@ -4,7 +4,7 @@ org.alfresco alfresco-governance-services pom - 3.4.1-SNAPSHOT + 3.4.1-A6 Alfresco Governance Services http://www.alfresco.org/ @@ -18,7 +18,7 @@ scm:git:https://github.com/Alfresco/governance-services.git scm:git:https://github.com/Alfresco/governance-services.git https://github.com/Alfresco/governance-services - V3.4.0 + V3.4.1-A6 diff --git a/rm-automation/pom.xml b/rm-automation/pom.xml index 07aa4d97e9..c3d2c97b44 100644 --- a/rm-automation/pom.xml +++ b/rm-automation/pom.xml @@ -8,7 +8,7 @@ org.alfresco alfresco-governance-services - 3.4.1-SNAPSHOT + 3.4.1-A6 diff --git a/rm-automation/rm-automation-community-rest-api/pom.xml b/rm-automation/rm-automation-community-rest-api/pom.xml index 5c8fb293e6..3a2433026c 100644 --- a/rm-automation/rm-automation-community-rest-api/pom.xml +++ b/rm-automation/rm-automation-community-rest-api/pom.xml @@ -8,7 +8,7 @@ org.alfresco alfresco-governance-services-automation - 3.4.1-SNAPSHOT + 3.4.1-A6 diff --git a/rm-community/pom.xml b/rm-community/pom.xml index cc0be9ba64..18645bc863 100644 --- a/rm-community/pom.xml +++ b/rm-community/pom.xml @@ -8,7 +8,7 @@ org.alfresco alfresco-governance-services - 3.4.1-SNAPSHOT + 3.4.1-A6 diff --git a/rm-community/rm-community-repo/pom.xml b/rm-community/rm-community-repo/pom.xml index fd227719b3..d941fe25bc 100644 --- a/rm-community/rm-community-repo/pom.xml +++ b/rm-community/rm-community-repo/pom.xml @@ -9,7 +9,7 @@ org.alfresco alfresco-governance-services-community - 3.4.1-SNAPSHOT + 3.4.1-A6 diff --git a/rm-community/rm-community-rest-api-explorer/pom.xml b/rm-community/rm-community-rest-api-explorer/pom.xml index 8e8b8ef613..9dd4226420 100644 --- a/rm-community/rm-community-rest-api-explorer/pom.xml +++ b/rm-community/rm-community-rest-api-explorer/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-governance-services-community - 3.4.1-SNAPSHOT + 3.4.1-A6 From 89f5df4e46376cce98e04ca8318b8dc958694242 Mon Sep 17 00:00:00 2001 From: Travis CI User Date: Wed, 25 Nov 2020 08:57:27 +0000 Subject: [PATCH 18/22] [maven-release-plugin][skip ci] prepare for next development iteration --- pom.xml | 4 ++-- rm-automation/pom.xml | 2 +- rm-automation/rm-automation-community-rest-api/pom.xml | 2 +- rm-community/pom.xml | 2 +- rm-community/rm-community-repo/pom.xml | 2 +- rm-community/rm-community-rest-api-explorer/pom.xml | 2 +- 6 files changed, 7 insertions(+), 7 deletions(-) diff --git a/pom.xml b/pom.xml index f7261501c4..da542adffa 100644 --- a/pom.xml +++ b/pom.xml @@ -4,7 +4,7 @@ org.alfresco alfresco-governance-services pom - 3.4.1-A6 + 3.4.1-SNAPSHOT Alfresco Governance Services http://www.alfresco.org/ @@ -18,7 +18,7 @@ scm:git:https://github.com/Alfresco/governance-services.git scm:git:https://github.com/Alfresco/governance-services.git https://github.com/Alfresco/governance-services - V3.4.1-A6 + V3.4.0 diff --git a/rm-automation/pom.xml b/rm-automation/pom.xml index c3d2c97b44..07aa4d97e9 100644 --- a/rm-automation/pom.xml +++ b/rm-automation/pom.xml @@ -8,7 +8,7 @@ org.alfresco alfresco-governance-services - 3.4.1-A6 + 3.4.1-SNAPSHOT diff --git a/rm-automation/rm-automation-community-rest-api/pom.xml b/rm-automation/rm-automation-community-rest-api/pom.xml index 3a2433026c..5c8fb293e6 100644 --- a/rm-automation/rm-automation-community-rest-api/pom.xml +++ b/rm-automation/rm-automation-community-rest-api/pom.xml @@ -8,7 +8,7 @@ org.alfresco alfresco-governance-services-automation - 3.4.1-A6 + 3.4.1-SNAPSHOT diff --git a/rm-community/pom.xml b/rm-community/pom.xml index 18645bc863..cc0be9ba64 100644 --- a/rm-community/pom.xml +++ b/rm-community/pom.xml @@ -8,7 +8,7 @@ org.alfresco alfresco-governance-services - 3.4.1-A6 + 3.4.1-SNAPSHOT diff --git a/rm-community/rm-community-repo/pom.xml b/rm-community/rm-community-repo/pom.xml index d941fe25bc..fd227719b3 100644 --- a/rm-community/rm-community-repo/pom.xml +++ b/rm-community/rm-community-repo/pom.xml @@ -9,7 +9,7 @@ org.alfresco alfresco-governance-services-community - 3.4.1-A6 + 3.4.1-SNAPSHOT diff --git a/rm-community/rm-community-rest-api-explorer/pom.xml b/rm-community/rm-community-rest-api-explorer/pom.xml index 9dd4226420..8e8b8ef613 100644 --- a/rm-community/rm-community-rest-api-explorer/pom.xml +++ b/rm-community/rm-community-rest-api-explorer/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-governance-services-community - 3.4.1-A6 + 3.4.1-SNAPSHOT From 7164f269efb45f2ecc4c8d537276db3eea838e5f Mon Sep 17 00:00:00 2001 From: ehardon Date: Wed, 25 Nov 2020 12:10:58 +0200 Subject: [PATCH 19/22] [enterprise release 3.4.1-A7 3.4.1-SNAPSHOT] [skip tests] --- scripts/release.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/release.sh b/scripts/release.sh index 84ef791d7d..7c128afef5 100755 --- a/scripts/release.sh +++ b/scripts/release.sh @@ -36,6 +36,6 @@ mvn --batch-mode \ -DreleaseVersion=${RELEASE_VERSION} \ -DdevelopmentVersion=${DEVELOPMENT_VERSION} \ -DscmCommentPrefix="[maven-release-plugin][skip ci] " \ - -DskipTests -D${release_type} -DuseReleaseProfile=false \ - -P${release_type}-release -P${deployment_repository} \ + -DuseReleaseProfile=false \ + "-Darguments=-DskipTests -D${release_type} -P${deployment_repository},release-${release_type}" \ release:clean release:prepare release:perform From c0d77b0af9a4d6bdd08d726a1fd2f6aad8ccf1c1 Mon Sep 17 00:00:00 2001 From: ehardon Date: Wed, 25 Nov 2020 12:30:19 +0200 Subject: [PATCH 20/22] [enterprise release 3.4.1-A7 3.4.1-SNAPSHOT] [skip tests] From 2ccbb47b26b4e96a192e8cf0e3d56a54c1bed275 Mon Sep 17 00:00:00 2001 From: Travis CI User Date: Wed, 25 Nov 2020 11:27:05 +0000 Subject: [PATCH 21/22] [maven-release-plugin][skip ci] prepare release V3.4.1-A7 --- pom.xml | 4 ++-- rm-automation/pom.xml | 2 +- rm-automation/rm-automation-community-rest-api/pom.xml | 2 +- rm-community/pom.xml | 2 +- rm-community/rm-community-repo/pom.xml | 2 +- rm-community/rm-community-rest-api-explorer/pom.xml | 2 +- 6 files changed, 7 insertions(+), 7 deletions(-) diff --git a/pom.xml b/pom.xml index da542adffa..fc0a779b53 100644 --- a/pom.xml +++ b/pom.xml @@ -4,7 +4,7 @@ org.alfresco alfresco-governance-services pom - 3.4.1-SNAPSHOT + 3.4.1-A7 Alfresco Governance Services http://www.alfresco.org/ @@ -18,7 +18,7 @@ scm:git:https://github.com/Alfresco/governance-services.git scm:git:https://github.com/Alfresco/governance-services.git https://github.com/Alfresco/governance-services - V3.4.0 + V3.4.1-A7 diff --git a/rm-automation/pom.xml b/rm-automation/pom.xml index 07aa4d97e9..1ab48ed654 100644 --- a/rm-automation/pom.xml +++ b/rm-automation/pom.xml @@ -8,7 +8,7 @@ org.alfresco alfresco-governance-services - 3.4.1-SNAPSHOT + 3.4.1-A7 diff --git a/rm-automation/rm-automation-community-rest-api/pom.xml b/rm-automation/rm-automation-community-rest-api/pom.xml index 5c8fb293e6..8b52bd64b4 100644 --- a/rm-automation/rm-automation-community-rest-api/pom.xml +++ b/rm-automation/rm-automation-community-rest-api/pom.xml @@ -8,7 +8,7 @@ org.alfresco alfresco-governance-services-automation - 3.4.1-SNAPSHOT + 3.4.1-A7 diff --git a/rm-community/pom.xml b/rm-community/pom.xml index cc0be9ba64..be72089cfd 100644 --- a/rm-community/pom.xml +++ b/rm-community/pom.xml @@ -8,7 +8,7 @@ org.alfresco alfresco-governance-services - 3.4.1-SNAPSHOT + 3.4.1-A7 diff --git a/rm-community/rm-community-repo/pom.xml b/rm-community/rm-community-repo/pom.xml index fd227719b3..6c1aece41f 100644 --- a/rm-community/rm-community-repo/pom.xml +++ b/rm-community/rm-community-repo/pom.xml @@ -9,7 +9,7 @@ org.alfresco alfresco-governance-services-community - 3.4.1-SNAPSHOT + 3.4.1-A7 diff --git a/rm-community/rm-community-rest-api-explorer/pom.xml b/rm-community/rm-community-rest-api-explorer/pom.xml index 8e8b8ef613..fbace24730 100644 --- a/rm-community/rm-community-rest-api-explorer/pom.xml +++ b/rm-community/rm-community-rest-api-explorer/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-governance-services-community - 3.4.1-SNAPSHOT + 3.4.1-A7 From f15413f73ce1302a4d43df02add01c0471f38ebd Mon Sep 17 00:00:00 2001 From: Travis CI User Date: Wed, 25 Nov 2020 11:27:13 +0000 Subject: [PATCH 22/22] [maven-release-plugin][skip ci] prepare for next development iteration --- pom.xml | 4 ++-- rm-automation/pom.xml | 2 +- rm-automation/rm-automation-community-rest-api/pom.xml | 2 +- rm-community/pom.xml | 2 +- rm-community/rm-community-repo/pom.xml | 2 +- rm-community/rm-community-rest-api-explorer/pom.xml | 2 +- 6 files changed, 7 insertions(+), 7 deletions(-) diff --git a/pom.xml b/pom.xml index fc0a779b53..da542adffa 100644 --- a/pom.xml +++ b/pom.xml @@ -4,7 +4,7 @@ org.alfresco alfresco-governance-services pom - 3.4.1-A7 + 3.4.1-SNAPSHOT Alfresco Governance Services http://www.alfresco.org/ @@ -18,7 +18,7 @@ scm:git:https://github.com/Alfresco/governance-services.git scm:git:https://github.com/Alfresco/governance-services.git https://github.com/Alfresco/governance-services - V3.4.1-A7 + V3.4.0 diff --git a/rm-automation/pom.xml b/rm-automation/pom.xml index 1ab48ed654..07aa4d97e9 100644 --- a/rm-automation/pom.xml +++ b/rm-automation/pom.xml @@ -8,7 +8,7 @@ org.alfresco alfresco-governance-services - 3.4.1-A7 + 3.4.1-SNAPSHOT diff --git a/rm-automation/rm-automation-community-rest-api/pom.xml b/rm-automation/rm-automation-community-rest-api/pom.xml index 8b52bd64b4..5c8fb293e6 100644 --- a/rm-automation/rm-automation-community-rest-api/pom.xml +++ b/rm-automation/rm-automation-community-rest-api/pom.xml @@ -8,7 +8,7 @@ org.alfresco alfresco-governance-services-automation - 3.4.1-A7 + 3.4.1-SNAPSHOT diff --git a/rm-community/pom.xml b/rm-community/pom.xml index be72089cfd..cc0be9ba64 100644 --- a/rm-community/pom.xml +++ b/rm-community/pom.xml @@ -8,7 +8,7 @@ org.alfresco alfresco-governance-services - 3.4.1-A7 + 3.4.1-SNAPSHOT diff --git a/rm-community/rm-community-repo/pom.xml b/rm-community/rm-community-repo/pom.xml index 6c1aece41f..fd227719b3 100644 --- a/rm-community/rm-community-repo/pom.xml +++ b/rm-community/rm-community-repo/pom.xml @@ -9,7 +9,7 @@ org.alfresco alfresco-governance-services-community - 3.4.1-A7 + 3.4.1-SNAPSHOT diff --git a/rm-community/rm-community-rest-api-explorer/pom.xml b/rm-community/rm-community-rest-api-explorer/pom.xml index fbace24730..8e8b8ef613 100644 --- a/rm-community/rm-community-rest-api-explorer/pom.xml +++ b/rm-community/rm-community-rest-api-explorer/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-governance-services-community - 3.4.1-A7 + 3.4.1-SNAPSHOT