From 958f3760f50caee9ebafb9bed7611355cdcb7d7d 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 6b2fb30fa67c12388bdedf7b2eec9bed77c14e76 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 5e76e51e9b879d06500bb5a0ec86cf5bbe0a9f27 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 07d3103d61da801d0d83a4a682307d6b0fbde565 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 a84cf1e8b9a5c652c0b11c0b849af0c1bfd38104 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 822e872682125a9d2fd587798bf0b1b798c1f3ff 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 0449ce11e03d0fde0bc9ebdae72612c4a10fd7f7 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 afc8fa93c7ba5fa472f94c543b820128d885ba22 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 0850eb8b470d61db44e3862baa28440e494c5253 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 ac97f23eb572bac823bf5fa1404abd2834d6eb5b 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 d5468690610fde44451b7a2d65a17c84c8e04435 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 b1f93cef1c8a8b609c22bdae8cd2a2e1cf04346a 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 9a6efdbba7507c28a877859f504022331c57cf5c 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 d29bad9a414adad66607d9e99393858702bdd485 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 d650fe1b9f5cd957b37612a2d5868508d6f7dbf6 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 be11d12f0195246a088856b1896d9ab38ed7cd07 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 d5819aee1d6dba24b0b27be338cdb8fe9f29798e 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 676277f7788e916f395c7f9956e703d12e2997da 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 3aa6fca0125a62f04dea5de3855acabc9d7ac7c6 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 1dce368eaee3c9c53d025f1a7a8895994582b2fe 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 f4ebc8519b1735d38882a2663ca8469853b6028d 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 8194cd30b808e244c9b9335ef93c537d7842ec0e 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