From ff81afe1251db4a61733ba6aba4f2826f468e6cd Mon Sep 17 00:00:00 2001 From: evasques Date: Fri, 5 Jun 2020 15:18:15 +0100 Subject: [PATCH 01/15] MNT-21585 - Having EVERYONE in original ACL causes IPR duplication (#1144) * MNT-21585 - Having EVERYONE in original authorities causes IPR duplication * Update License Headers * prevent NPE when authorities is null and refactored findIPRGroup method --- .../security/ExtendedSecurityServiceImpl.java | 14 ++++++++++---- 1 file changed, 10 insertions(+), 4 deletions(-) diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/security/ExtendedSecurityServiceImpl.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/security/ExtendedSecurityServiceImpl.java index 1e8ab62b09..0f6205520b 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/security/ExtendedSecurityServiceImpl.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/security/ExtendedSecurityServiceImpl.java @@ -407,13 +407,12 @@ public class ExtendedSecurityServiceImpl extends ServiceBaseImpl // if exists and matches we have found our group if (isIPRGroupTrueMatch(group, authorities)) { - iprGroup = group; - break; + return new Pair(group, nextGroupIndex); } } // determine if there are any more pages to inspect - hasMoreItems = results.hasMoreItems(); + hasMoreItems = hasMoreItems ? results.hasMoreItems() : false; pageCount ++; } @@ -429,8 +428,15 @@ public class ExtendedSecurityServiceImpl extends ServiceBaseImpl */ private boolean isIPRGroupTrueMatch(String group, Set authorities) { + //Remove GROUP_EVERYONE for proper comparison as GROUP_EVERYONE is never included in an IPR group + Set plainAuthorities = new HashSet(); + if (authorities != null) + { + plainAuthorities.addAll(authorities); + plainAuthorities.remove(PermissionService.ALL_AUTHORITIES); + } Set contained = authorityService.getContainedAuthorities(null, group, true); - return contained.equals(authorities); + return contained.equals(plainAuthorities); } /** From c6a9ec43f54fa0fe19f5b462bedc8dfd01814e20 Mon Sep 17 00:00:00 2001 From: alfresco-build Date: Fri, 14 Aug 2020 12:04:24 +0100 Subject: [PATCH 02/15] [maven-release-plugin] prepare release V3.2.0.2 --- 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 b9af9a449f..d82aaa969d 100644 --- a/pom.xml +++ b/pom.xml @@ -4,7 +4,7 @@ org.alfresco alfresco-governance-services pom - 3.2.0.2-SNAPSHOT + 3.2.0.2 Alfresco Governance Services http://www.alfresco.org/ @@ -18,7 +18,7 @@ scm:git:ssh://git@github.com/Alfresco/governance-services.git scm:git:ssh://git@github.com/Alfresco/governance-services.git scm:git:ssh://git@github.com/Alfresco/governance-services.git - HEAD + V3.2.0.2 diff --git a/rm-automation/pom.xml b/rm-automation/pom.xml index 1ffd9789a0..1705cce157 100644 --- a/rm-automation/pom.xml +++ b/rm-automation/pom.xml @@ -8,7 +8,7 @@ org.alfresco alfresco-governance-services - 3.2.0.2-SNAPSHOT + 3.2.0.2 diff --git a/rm-automation/rm-automation-community-rest-api/pom.xml b/rm-automation/rm-automation-community-rest-api/pom.xml index 1d8cea0464..849c8571f3 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.2.0.2-SNAPSHOT + 3.2.0.2 diff --git a/rm-community/pom.xml b/rm-community/pom.xml index 6d9ec36d7e..e7f4fda092 100644 --- a/rm-community/pom.xml +++ b/rm-community/pom.xml @@ -8,7 +8,7 @@ org.alfresco alfresco-governance-services - 3.2.0.2-SNAPSHOT + 3.2.0.2 diff --git a/rm-community/rm-community-repo/pom.xml b/rm-community/rm-community-repo/pom.xml index 8f6e7e2c90..dad6c42dfd 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.2.0.2-SNAPSHOT + 3.2.0.2 diff --git a/rm-community/rm-community-rest-api-explorer/pom.xml b/rm-community/rm-community-rest-api-explorer/pom.xml index bbdc8548b1..fd69cf85d1 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.2.0.2-SNAPSHOT + 3.2.0.2 From 5b080cf3087ea72eada4a270c1a160ae7bda8c1c Mon Sep 17 00:00:00 2001 From: alfresco-build Date: Fri, 14 Aug 2020 12:04:35 +0100 Subject: [PATCH 03/15] [maven-release-plugin] 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 d82aaa969d..c37987459f 100644 --- a/pom.xml +++ b/pom.xml @@ -4,7 +4,7 @@ org.alfresco alfresco-governance-services pom - 3.2.0.2 + 3.2.0.3-SNAPSHOT Alfresco Governance Services http://www.alfresco.org/ @@ -18,7 +18,7 @@ scm:git:ssh://git@github.com/Alfresco/governance-services.git scm:git:ssh://git@github.com/Alfresco/governance-services.git scm:git:ssh://git@github.com/Alfresco/governance-services.git - V3.2.0.2 + HEAD diff --git a/rm-automation/pom.xml b/rm-automation/pom.xml index 1705cce157..bea770c3c3 100644 --- a/rm-automation/pom.xml +++ b/rm-automation/pom.xml @@ -8,7 +8,7 @@ org.alfresco alfresco-governance-services - 3.2.0.2 + 3.2.0.3-SNAPSHOT diff --git a/rm-automation/rm-automation-community-rest-api/pom.xml b/rm-automation/rm-automation-community-rest-api/pom.xml index 849c8571f3..995732a657 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.2.0.2 + 3.2.0.3-SNAPSHOT diff --git a/rm-community/pom.xml b/rm-community/pom.xml index e7f4fda092..ede1e0d220 100644 --- a/rm-community/pom.xml +++ b/rm-community/pom.xml @@ -8,7 +8,7 @@ org.alfresco alfresco-governance-services - 3.2.0.2 + 3.2.0.3-SNAPSHOT diff --git a/rm-community/rm-community-repo/pom.xml b/rm-community/rm-community-repo/pom.xml index dad6c42dfd..719c953f34 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.2.0.2 + 3.2.0.3-SNAPSHOT diff --git a/rm-community/rm-community-rest-api-explorer/pom.xml b/rm-community/rm-community-rest-api-explorer/pom.xml index fd69cf85d1..07aa201f95 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.2.0.2 + 3.2.0.3-SNAPSHOT From 7b396dc65246e5ec0455cf9b5fce180de5087c65 Mon Sep 17 00:00:00 2001 From: alfresco-build Date: Wed, 19 Aug 2020 11:32:43 +0100 Subject: [PATCH 04/15] [maven-release-plugin] prepare release V3.2.0.3 --- 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 c37987459f..5c6ef0f24e 100644 --- a/pom.xml +++ b/pom.xml @@ -4,7 +4,7 @@ org.alfresco alfresco-governance-services pom - 3.2.0.3-SNAPSHOT + 3.2.0.3 Alfresco Governance Services http://www.alfresco.org/ @@ -18,7 +18,7 @@ scm:git:ssh://git@github.com/Alfresco/governance-services.git scm:git:ssh://git@github.com/Alfresco/governance-services.git scm:git:ssh://git@github.com/Alfresco/governance-services.git - HEAD + V3.2.0.3 diff --git a/rm-automation/pom.xml b/rm-automation/pom.xml index bea770c3c3..59a23e3508 100644 --- a/rm-automation/pom.xml +++ b/rm-automation/pom.xml @@ -8,7 +8,7 @@ org.alfresco alfresco-governance-services - 3.2.0.3-SNAPSHOT + 3.2.0.3 diff --git a/rm-automation/rm-automation-community-rest-api/pom.xml b/rm-automation/rm-automation-community-rest-api/pom.xml index 995732a657..a41fa3bd27 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.2.0.3-SNAPSHOT + 3.2.0.3 diff --git a/rm-community/pom.xml b/rm-community/pom.xml index ede1e0d220..5105401ee3 100644 --- a/rm-community/pom.xml +++ b/rm-community/pom.xml @@ -8,7 +8,7 @@ org.alfresco alfresco-governance-services - 3.2.0.3-SNAPSHOT + 3.2.0.3 diff --git a/rm-community/rm-community-repo/pom.xml b/rm-community/rm-community-repo/pom.xml index 719c953f34..a64b9c8e78 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.2.0.3-SNAPSHOT + 3.2.0.3 diff --git a/rm-community/rm-community-rest-api-explorer/pom.xml b/rm-community/rm-community-rest-api-explorer/pom.xml index 07aa201f95..e6b621f538 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.2.0.3-SNAPSHOT + 3.2.0.3 From fbdc2799943eaff9e58c7352b035d1abcee712f3 Mon Sep 17 00:00:00 2001 From: alfresco-build Date: Wed, 19 Aug 2020 11:32:54 +0100 Subject: [PATCH 05/15] [maven-release-plugin] 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 5c6ef0f24e..4db33260b4 100644 --- a/pom.xml +++ b/pom.xml @@ -4,7 +4,7 @@ org.alfresco alfresco-governance-services pom - 3.2.0.3 + 3.2.0.4-SNAPSHOT Alfresco Governance Services http://www.alfresco.org/ @@ -18,7 +18,7 @@ scm:git:ssh://git@github.com/Alfresco/governance-services.git scm:git:ssh://git@github.com/Alfresco/governance-services.git scm:git:ssh://git@github.com/Alfresco/governance-services.git - V3.2.0.3 + HEAD diff --git a/rm-automation/pom.xml b/rm-automation/pom.xml index 59a23e3508..5c07ec1c2b 100644 --- a/rm-automation/pom.xml +++ b/rm-automation/pom.xml @@ -8,7 +8,7 @@ org.alfresco alfresco-governance-services - 3.2.0.3 + 3.2.0.4-SNAPSHOT diff --git a/rm-automation/rm-automation-community-rest-api/pom.xml b/rm-automation/rm-automation-community-rest-api/pom.xml index a41fa3bd27..515a09c6b0 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.2.0.3 + 3.2.0.4-SNAPSHOT diff --git a/rm-community/pom.xml b/rm-community/pom.xml index 5105401ee3..bd3de3b7a6 100644 --- a/rm-community/pom.xml +++ b/rm-community/pom.xml @@ -8,7 +8,7 @@ org.alfresco alfresco-governance-services - 3.2.0.3 + 3.2.0.4-SNAPSHOT diff --git a/rm-community/rm-community-repo/pom.xml b/rm-community/rm-community-repo/pom.xml index a64b9c8e78..351a4a2599 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.2.0.3 + 3.2.0.4-SNAPSHOT diff --git a/rm-community/rm-community-rest-api-explorer/pom.xml b/rm-community/rm-community-rest-api-explorer/pom.xml index e6b621f538..3397946426 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.2.0.3 + 3.2.0.4-SNAPSHOT From 99aaee239e908fcf161a9255f8c375ca19767911 Mon Sep 17 00:00:00 2001 From: alfresco-build Date: Wed, 19 Aug 2020 13:10:47 +0100 Subject: [PATCH 06/15] [maven-release-plugin] prepare release V3.2.0.4 --- 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 4db33260b4..9d33121f1d 100644 --- a/pom.xml +++ b/pom.xml @@ -4,7 +4,7 @@ org.alfresco alfresco-governance-services pom - 3.2.0.4-SNAPSHOT + 3.2.0.4 Alfresco Governance Services http://www.alfresco.org/ @@ -18,7 +18,7 @@ scm:git:ssh://git@github.com/Alfresco/governance-services.git scm:git:ssh://git@github.com/Alfresco/governance-services.git scm:git:ssh://git@github.com/Alfresco/governance-services.git - HEAD + V3.2.0.4 diff --git a/rm-automation/pom.xml b/rm-automation/pom.xml index 5c07ec1c2b..8ae0c1bc12 100644 --- a/rm-automation/pom.xml +++ b/rm-automation/pom.xml @@ -8,7 +8,7 @@ org.alfresco alfresco-governance-services - 3.2.0.4-SNAPSHOT + 3.2.0.4 diff --git a/rm-automation/rm-automation-community-rest-api/pom.xml b/rm-automation/rm-automation-community-rest-api/pom.xml index 515a09c6b0..f79056daf2 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.2.0.4-SNAPSHOT + 3.2.0.4 diff --git a/rm-community/pom.xml b/rm-community/pom.xml index bd3de3b7a6..234b420168 100644 --- a/rm-community/pom.xml +++ b/rm-community/pom.xml @@ -8,7 +8,7 @@ org.alfresco alfresco-governance-services - 3.2.0.4-SNAPSHOT + 3.2.0.4 diff --git a/rm-community/rm-community-repo/pom.xml b/rm-community/rm-community-repo/pom.xml index 351a4a2599..1a06c02e9e 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.2.0.4-SNAPSHOT + 3.2.0.4 diff --git a/rm-community/rm-community-rest-api-explorer/pom.xml b/rm-community/rm-community-rest-api-explorer/pom.xml index 3397946426..935d3f2c57 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.2.0.4-SNAPSHOT + 3.2.0.4 From d6c3e3c0a66a27761136f7ee61ea06b887a994da Mon Sep 17 00:00:00 2001 From: alfresco-build Date: Wed, 19 Aug 2020 13:10:59 +0100 Subject: [PATCH 07/15] [maven-release-plugin] 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 9d33121f1d..225ebc625d 100644 --- a/pom.xml +++ b/pom.xml @@ -4,7 +4,7 @@ org.alfresco alfresco-governance-services pom - 3.2.0.4 + 3.2.0.5-SNAPSHOT Alfresco Governance Services http://www.alfresco.org/ @@ -18,7 +18,7 @@ scm:git:ssh://git@github.com/Alfresco/governance-services.git scm:git:ssh://git@github.com/Alfresco/governance-services.git scm:git:ssh://git@github.com/Alfresco/governance-services.git - V3.2.0.4 + HEAD diff --git a/rm-automation/pom.xml b/rm-automation/pom.xml index 8ae0c1bc12..01cf38e05f 100644 --- a/rm-automation/pom.xml +++ b/rm-automation/pom.xml @@ -8,7 +8,7 @@ org.alfresco alfresco-governance-services - 3.2.0.4 + 3.2.0.5-SNAPSHOT diff --git a/rm-automation/rm-automation-community-rest-api/pom.xml b/rm-automation/rm-automation-community-rest-api/pom.xml index f79056daf2..c145711126 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.2.0.4 + 3.2.0.5-SNAPSHOT diff --git a/rm-community/pom.xml b/rm-community/pom.xml index 234b420168..be520af7f6 100644 --- a/rm-community/pom.xml +++ b/rm-community/pom.xml @@ -8,7 +8,7 @@ org.alfresco alfresco-governance-services - 3.2.0.4 + 3.2.0.5-SNAPSHOT diff --git a/rm-community/rm-community-repo/pom.xml b/rm-community/rm-community-repo/pom.xml index 1a06c02e9e..5c933ea184 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.2.0.4 + 3.2.0.5-SNAPSHOT diff --git a/rm-community/rm-community-rest-api-explorer/pom.xml b/rm-community/rm-community-rest-api-explorer/pom.xml index 935d3f2c57..1ebe9e92b3 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.2.0.4 + 3.2.0.5-SNAPSHOT From 5880d20b9b9b70df3a3b5971930559880d6787a5 Mon Sep 17 00:00:00 2001 From: alfresco-build Date: Wed, 19 Aug 2020 14:00:04 +0000 Subject: [PATCH 08/15] [maven-release-plugin] prepare release V3.2.0.5 --- 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 225ebc625d..2b0116895f 100644 --- a/pom.xml +++ b/pom.xml @@ -4,7 +4,7 @@ org.alfresco alfresco-governance-services pom - 3.2.0.5-SNAPSHOT + 3.2.0.5 Alfresco Governance Services http://www.alfresco.org/ @@ -18,7 +18,7 @@ scm:git:ssh://git@github.com/Alfresco/governance-services.git scm:git:ssh://git@github.com/Alfresco/governance-services.git scm:git:ssh://git@github.com/Alfresco/governance-services.git - HEAD + V3.2.0.5 diff --git a/rm-automation/pom.xml b/rm-automation/pom.xml index 01cf38e05f..44f9a17618 100644 --- a/rm-automation/pom.xml +++ b/rm-automation/pom.xml @@ -8,7 +8,7 @@ org.alfresco alfresco-governance-services - 3.2.0.5-SNAPSHOT + 3.2.0.5 diff --git a/rm-automation/rm-automation-community-rest-api/pom.xml b/rm-automation/rm-automation-community-rest-api/pom.xml index c145711126..729fdff043 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.2.0.5-SNAPSHOT + 3.2.0.5 diff --git a/rm-community/pom.xml b/rm-community/pom.xml index be520af7f6..ee4b7c8789 100644 --- a/rm-community/pom.xml +++ b/rm-community/pom.xml @@ -8,7 +8,7 @@ org.alfresco alfresco-governance-services - 3.2.0.5-SNAPSHOT + 3.2.0.5 diff --git a/rm-community/rm-community-repo/pom.xml b/rm-community/rm-community-repo/pom.xml index 5c933ea184..d98c93faf2 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.2.0.5-SNAPSHOT + 3.2.0.5 diff --git a/rm-community/rm-community-rest-api-explorer/pom.xml b/rm-community/rm-community-rest-api-explorer/pom.xml index 1ebe9e92b3..844b4f695b 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.2.0.5-SNAPSHOT + 3.2.0.5 From c2bff978f15df9d1613fd1f347e7d06d6bd5ba13 Mon Sep 17 00:00:00 2001 From: alfresco-build Date: Wed, 19 Aug 2020 14:00:19 +0000 Subject: [PATCH 09/15] [maven-release-plugin] 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 2b0116895f..5aa258dbe0 100644 --- a/pom.xml +++ b/pom.xml @@ -4,7 +4,7 @@ org.alfresco alfresco-governance-services pom - 3.2.0.5 + 3.2.0.6-SNAPSHOT Alfresco Governance Services http://www.alfresco.org/ @@ -18,7 +18,7 @@ scm:git:ssh://git@github.com/Alfresco/governance-services.git scm:git:ssh://git@github.com/Alfresco/governance-services.git scm:git:ssh://git@github.com/Alfresco/governance-services.git - V3.2.0.5 + HEAD diff --git a/rm-automation/pom.xml b/rm-automation/pom.xml index 44f9a17618..a7a6445cdf 100644 --- a/rm-automation/pom.xml +++ b/rm-automation/pom.xml @@ -8,7 +8,7 @@ org.alfresco alfresco-governance-services - 3.2.0.5 + 3.2.0.6-SNAPSHOT diff --git a/rm-automation/rm-automation-community-rest-api/pom.xml b/rm-automation/rm-automation-community-rest-api/pom.xml index 729fdff043..35296eee8b 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.2.0.5 + 3.2.0.6-SNAPSHOT diff --git a/rm-community/pom.xml b/rm-community/pom.xml index ee4b7c8789..986b147aae 100644 --- a/rm-community/pom.xml +++ b/rm-community/pom.xml @@ -8,7 +8,7 @@ org.alfresco alfresco-governance-services - 3.2.0.5 + 3.2.0.6-SNAPSHOT diff --git a/rm-community/rm-community-repo/pom.xml b/rm-community/rm-community-repo/pom.xml index d98c93faf2..8cfc601131 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.2.0.5 + 3.2.0.6-SNAPSHOT diff --git a/rm-community/rm-community-rest-api-explorer/pom.xml b/rm-community/rm-community-rest-api-explorer/pom.xml index 844b4f695b..a03accc61b 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.2.0.5 + 3.2.0.6-SNAPSHOT From 89b09f3d67e8fac478d5bf6aba9643ca0052bd64 Mon Sep 17 00:00:00 2001 From: alfresco-build Date: Thu, 20 Aug 2020 07:31:54 +0000 Subject: [PATCH 10/15] [maven-release-plugin] prepare release V3.2.0.6 --- 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 5aa258dbe0..507831e668 100644 --- a/pom.xml +++ b/pom.xml @@ -4,7 +4,7 @@ org.alfresco alfresco-governance-services pom - 3.2.0.6-SNAPSHOT + 3.2.0.6 Alfresco Governance Services http://www.alfresco.org/ @@ -18,7 +18,7 @@ scm:git:ssh://git@github.com/Alfresco/governance-services.git scm:git:ssh://git@github.com/Alfresco/governance-services.git scm:git:ssh://git@github.com/Alfresco/governance-services.git - HEAD + V3.2.0.6 diff --git a/rm-automation/pom.xml b/rm-automation/pom.xml index a7a6445cdf..2349c79aae 100644 --- a/rm-automation/pom.xml +++ b/rm-automation/pom.xml @@ -8,7 +8,7 @@ org.alfresco alfresco-governance-services - 3.2.0.6-SNAPSHOT + 3.2.0.6 diff --git a/rm-automation/rm-automation-community-rest-api/pom.xml b/rm-automation/rm-automation-community-rest-api/pom.xml index 35296eee8b..47b66544c8 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.2.0.6-SNAPSHOT + 3.2.0.6 diff --git a/rm-community/pom.xml b/rm-community/pom.xml index 986b147aae..e732bf1f25 100644 --- a/rm-community/pom.xml +++ b/rm-community/pom.xml @@ -8,7 +8,7 @@ org.alfresco alfresco-governance-services - 3.2.0.6-SNAPSHOT + 3.2.0.6 diff --git a/rm-community/rm-community-repo/pom.xml b/rm-community/rm-community-repo/pom.xml index 8cfc601131..ca1700afd3 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.2.0.6-SNAPSHOT + 3.2.0.6 diff --git a/rm-community/rm-community-rest-api-explorer/pom.xml b/rm-community/rm-community-rest-api-explorer/pom.xml index a03accc61b..0677587fd3 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.2.0.6-SNAPSHOT + 3.2.0.6 From b73b9d2b5fde682663a4e971c8674ac68fee78e8 Mon Sep 17 00:00:00 2001 From: alfresco-build Date: Thu, 20 Aug 2020 07:32:04 +0000 Subject: [PATCH 11/15] [maven-release-plugin] 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 507831e668..fc05e50116 100644 --- a/pom.xml +++ b/pom.xml @@ -4,7 +4,7 @@ org.alfresco alfresco-governance-services pom - 3.2.0.6 + 3.2.0.7-SNAPSHOT Alfresco Governance Services http://www.alfresco.org/ @@ -18,7 +18,7 @@ scm:git:ssh://git@github.com/Alfresco/governance-services.git scm:git:ssh://git@github.com/Alfresco/governance-services.git scm:git:ssh://git@github.com/Alfresco/governance-services.git - V3.2.0.6 + HEAD diff --git a/rm-automation/pom.xml b/rm-automation/pom.xml index 2349c79aae..0a94605290 100644 --- a/rm-automation/pom.xml +++ b/rm-automation/pom.xml @@ -8,7 +8,7 @@ org.alfresco alfresco-governance-services - 3.2.0.6 + 3.2.0.7-SNAPSHOT diff --git a/rm-automation/rm-automation-community-rest-api/pom.xml b/rm-automation/rm-automation-community-rest-api/pom.xml index 47b66544c8..83779b74ae 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.2.0.6 + 3.2.0.7-SNAPSHOT diff --git a/rm-community/pom.xml b/rm-community/pom.xml index e732bf1f25..b912922356 100644 --- a/rm-community/pom.xml +++ b/rm-community/pom.xml @@ -8,7 +8,7 @@ org.alfresco alfresco-governance-services - 3.2.0.6 + 3.2.0.7-SNAPSHOT diff --git a/rm-community/rm-community-repo/pom.xml b/rm-community/rm-community-repo/pom.xml index ca1700afd3..d3ec28977c 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.2.0.6 + 3.2.0.7-SNAPSHOT diff --git a/rm-community/rm-community-rest-api-explorer/pom.xml b/rm-community/rm-community-rest-api-explorer/pom.xml index 0677587fd3..d13af1b33a 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.2.0.6 + 3.2.0.7-SNAPSHOT From 2f75e8f7a703b6afd568dae0768c60e6071d245a Mon Sep 17 00:00:00 2001 From: alfresco-build Date: Thu, 20 Aug 2020 09:50:58 +0000 Subject: [PATCH 12/15] [maven-release-plugin] prepare release V3.2.0.7 --- 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 fc05e50116..b5e0a9a94e 100644 --- a/pom.xml +++ b/pom.xml @@ -4,7 +4,7 @@ org.alfresco alfresco-governance-services pom - 3.2.0.7-SNAPSHOT + 3.2.0.7 Alfresco Governance Services http://www.alfresco.org/ @@ -18,7 +18,7 @@ scm:git:ssh://git@github.com/Alfresco/governance-services.git scm:git:ssh://git@github.com/Alfresco/governance-services.git scm:git:ssh://git@github.com/Alfresco/governance-services.git - HEAD + V3.2.0.7 diff --git a/rm-automation/pom.xml b/rm-automation/pom.xml index 0a94605290..1aa32acb01 100644 --- a/rm-automation/pom.xml +++ b/rm-automation/pom.xml @@ -8,7 +8,7 @@ org.alfresco alfresco-governance-services - 3.2.0.7-SNAPSHOT + 3.2.0.7 diff --git a/rm-automation/rm-automation-community-rest-api/pom.xml b/rm-automation/rm-automation-community-rest-api/pom.xml index 83779b74ae..0ef22fe915 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.2.0.7-SNAPSHOT + 3.2.0.7 diff --git a/rm-community/pom.xml b/rm-community/pom.xml index b912922356..9c5bdfcd8f 100644 --- a/rm-community/pom.xml +++ b/rm-community/pom.xml @@ -8,7 +8,7 @@ org.alfresco alfresco-governance-services - 3.2.0.7-SNAPSHOT + 3.2.0.7 diff --git a/rm-community/rm-community-repo/pom.xml b/rm-community/rm-community-repo/pom.xml index d3ec28977c..517d904623 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.2.0.7-SNAPSHOT + 3.2.0.7 diff --git a/rm-community/rm-community-rest-api-explorer/pom.xml b/rm-community/rm-community-rest-api-explorer/pom.xml index d13af1b33a..0d1302ed56 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.2.0.7-SNAPSHOT + 3.2.0.7 From add04e2d5eed27e5236e7a5428217119b372e47b Mon Sep 17 00:00:00 2001 From: alfresco-build Date: Thu, 20 Aug 2020 09:51:08 +0000 Subject: [PATCH 13/15] [maven-release-plugin] 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 b5e0a9a94e..385a839417 100644 --- a/pom.xml +++ b/pom.xml @@ -4,7 +4,7 @@ org.alfresco alfresco-governance-services pom - 3.2.0.7 + 3.2.0.8-SNAPSHOT Alfresco Governance Services http://www.alfresco.org/ @@ -18,7 +18,7 @@ scm:git:ssh://git@github.com/Alfresco/governance-services.git scm:git:ssh://git@github.com/Alfresco/governance-services.git scm:git:ssh://git@github.com/Alfresco/governance-services.git - V3.2.0.7 + HEAD diff --git a/rm-automation/pom.xml b/rm-automation/pom.xml index 1aa32acb01..0946c93e50 100644 --- a/rm-automation/pom.xml +++ b/rm-automation/pom.xml @@ -8,7 +8,7 @@ org.alfresco alfresco-governance-services - 3.2.0.7 + 3.2.0.8-SNAPSHOT diff --git a/rm-automation/rm-automation-community-rest-api/pom.xml b/rm-automation/rm-automation-community-rest-api/pom.xml index 0ef22fe915..093da06b59 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.2.0.7 + 3.2.0.8-SNAPSHOT diff --git a/rm-community/pom.xml b/rm-community/pom.xml index 9c5bdfcd8f..e3530c7150 100644 --- a/rm-community/pom.xml +++ b/rm-community/pom.xml @@ -8,7 +8,7 @@ org.alfresco alfresco-governance-services - 3.2.0.7 + 3.2.0.8-SNAPSHOT diff --git a/rm-community/rm-community-repo/pom.xml b/rm-community/rm-community-repo/pom.xml index 517d904623..a86e71719d 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.2.0.7 + 3.2.0.8-SNAPSHOT diff --git a/rm-community/rm-community-rest-api-explorer/pom.xml b/rm-community/rm-community-rest-api-explorer/pom.xml index 0d1302ed56..631f92c75b 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.2.0.7 + 3.2.0.8-SNAPSHOT From 14079cfe1b190e3b39f17817f17e0e8da5a23ecd Mon Sep 17 00:00:00 2001 From: alfresco-build Date: Thu, 20 Aug 2020 11:55:09 +0100 Subject: [PATCH 14/15] [maven-release-plugin] prepare release V3.2.0.8 --- 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 385a839417..6ef853ca29 100644 --- a/pom.xml +++ b/pom.xml @@ -4,7 +4,7 @@ org.alfresco alfresco-governance-services pom - 3.2.0.8-SNAPSHOT + 3.2.0.8 Alfresco Governance Services http://www.alfresco.org/ @@ -18,7 +18,7 @@ scm:git:ssh://git@github.com/Alfresco/governance-services.git scm:git:ssh://git@github.com/Alfresco/governance-services.git scm:git:ssh://git@github.com/Alfresco/governance-services.git - HEAD + V3.2.0.8 diff --git a/rm-automation/pom.xml b/rm-automation/pom.xml index 0946c93e50..3b56c326bb 100644 --- a/rm-automation/pom.xml +++ b/rm-automation/pom.xml @@ -8,7 +8,7 @@ org.alfresco alfresco-governance-services - 3.2.0.8-SNAPSHOT + 3.2.0.8 diff --git a/rm-automation/rm-automation-community-rest-api/pom.xml b/rm-automation/rm-automation-community-rest-api/pom.xml index 093da06b59..f213a688d0 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.2.0.8-SNAPSHOT + 3.2.0.8 diff --git a/rm-community/pom.xml b/rm-community/pom.xml index e3530c7150..1b175c58dc 100644 --- a/rm-community/pom.xml +++ b/rm-community/pom.xml @@ -8,7 +8,7 @@ org.alfresco alfresco-governance-services - 3.2.0.8-SNAPSHOT + 3.2.0.8 diff --git a/rm-community/rm-community-repo/pom.xml b/rm-community/rm-community-repo/pom.xml index a86e71719d..c6037aa4eb 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.2.0.8-SNAPSHOT + 3.2.0.8 diff --git a/rm-community/rm-community-rest-api-explorer/pom.xml b/rm-community/rm-community-rest-api-explorer/pom.xml index 631f92c75b..f69e0cc610 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.2.0.8-SNAPSHOT + 3.2.0.8 From e877061e6f840d80a37b2468f0f03c7a5a95dc02 Mon Sep 17 00:00:00 2001 From: alfresco-build Date: Thu, 20 Aug 2020 11:55:25 +0100 Subject: [PATCH 15/15] [maven-release-plugin] 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 6ef853ca29..84e0678a2a 100644 --- a/pom.xml +++ b/pom.xml @@ -4,7 +4,7 @@ org.alfresco alfresco-governance-services pom - 3.2.0.8 + 3.2.0.9-SNAPSHOT Alfresco Governance Services http://www.alfresco.org/ @@ -18,7 +18,7 @@ scm:git:ssh://git@github.com/Alfresco/governance-services.git scm:git:ssh://git@github.com/Alfresco/governance-services.git scm:git:ssh://git@github.com/Alfresco/governance-services.git - V3.2.0.8 + HEAD diff --git a/rm-automation/pom.xml b/rm-automation/pom.xml index 3b56c326bb..db98abcbf6 100644 --- a/rm-automation/pom.xml +++ b/rm-automation/pom.xml @@ -8,7 +8,7 @@ org.alfresco alfresco-governance-services - 3.2.0.8 + 3.2.0.9-SNAPSHOT diff --git a/rm-automation/rm-automation-community-rest-api/pom.xml b/rm-automation/rm-automation-community-rest-api/pom.xml index f213a688d0..18173a7c42 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.2.0.8 + 3.2.0.9-SNAPSHOT diff --git a/rm-community/pom.xml b/rm-community/pom.xml index 1b175c58dc..db9a430ef7 100644 --- a/rm-community/pom.xml +++ b/rm-community/pom.xml @@ -8,7 +8,7 @@ org.alfresco alfresco-governance-services - 3.2.0.8 + 3.2.0.9-SNAPSHOT diff --git a/rm-community/rm-community-repo/pom.xml b/rm-community/rm-community-repo/pom.xml index c6037aa4eb..b56ad58164 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.2.0.8 + 3.2.0.9-SNAPSHOT diff --git a/rm-community/rm-community-rest-api-explorer/pom.xml b/rm-community/rm-community-rest-api-explorer/pom.xml index f69e0cc610..0446ad2dbb 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.2.0.8 + 3.2.0.9-SNAPSHOT