From 733e232e42b98e5c31531a3779e2a2f1e5e6fd59 Mon Sep 17 00:00:00 2001 From: Damian Ujma <92095156+damianujma@users.noreply.github.com> Date: Thu, 30 Jan 2025 11:07:57 +0100 Subject: [PATCH 01/23] ACS-9178 Add REST API for deauthorizing (#3169) * ACS-9178 Set peopleEntityResource bean id * ACS-9178 Add the 'deauthorizeUser' operation * ACS-9178 Add 'deauthorizeUser' to Rest API * ACS-9178 Add test * ACS-9178 Fix PMD * ACS-9178 Fix deauthorize API tests --------- Co-authored-by: Gerard Olenski --- .../org/alfresco/rest/requests/People.java | 11 +- .../community/DeauthorizeSanityTests.java | 40 ++ .../rest/api/people/PeopleEntityResource.java | 482 +++++++++--------- .../alfresco/public-rest-context.xml | 2 +- 4 files changed, 299 insertions(+), 236 deletions(-) create mode 100644 packaging/tests/tas-restapi/src/test/java/org/alfresco/rest/people/deauthorization/community/DeauthorizeSanityTests.java diff --git a/packaging/tests/tas-restapi/src/main/java/org/alfresco/rest/requests/People.java b/packaging/tests/tas-restapi/src/main/java/org/alfresco/rest/requests/People.java index f50ed9ca6b..f043d9514f 100644 --- a/packaging/tests/tas-restapi/src/main/java/org/alfresco/rest/requests/People.java +++ b/packaging/tests/tas-restapi/src/main/java/org/alfresco/rest/requests/People.java @@ -437,6 +437,15 @@ public class People extends ModelRequest restWrapper.processEmptyModel(request); } + /** + * Deauthorize a user + */ + public void deauthorizeUser() + { + RestRequest request = RestRequest.simpleRequest(HttpMethod.POST, "people/{personId}/deauthorize", this.person.getUsername(), restWrapper.getParameters()); + restWrapper.processEmptyModel(request); + } + /** * Update avatar image PUT call on 'people/{nodeId}/children */ @@ -514,4 +523,4 @@ public class People extends ModelRequest return people.getFavorites(); } } -} \ No newline at end of file +} diff --git a/packaging/tests/tas-restapi/src/test/java/org/alfresco/rest/people/deauthorization/community/DeauthorizeSanityTests.java b/packaging/tests/tas-restapi/src/test/java/org/alfresco/rest/people/deauthorization/community/DeauthorizeSanityTests.java new file mode 100644 index 0000000000..ccd24345ea --- /dev/null +++ b/packaging/tests/tas-restapi/src/test/java/org/alfresco/rest/people/deauthorization/community/DeauthorizeSanityTests.java @@ -0,0 +1,40 @@ +package org.alfresco.rest.people.deauthorization.community; + +import org.springframework.http.HttpStatus; +import org.testng.annotations.BeforeClass; +import org.testng.annotations.Test; + +import org.alfresco.rest.RestTest; +import org.alfresco.utility.model.TestGroup; +import org.alfresco.utility.model.UserModel; +import org.alfresco.utility.testrail.ExecutionType; +import org.alfresco.utility.testrail.annotation.TestRail; + +/** + * Verifies API behavior in community edition. Should be excluded in enterprise edition. + */ +@Test +public class DeauthorizeSanityTests extends RestTest +{ + private UserModel userModel; + private UserModel adminUser; + + @BeforeClass(alwaysRun = true) + public void dataPreparation() + { + adminUser = dataUser.getAdminUser(); + userModel = dataUser.createRandomTestUser(); + } + + @Test(groups = {TestGroup.REST_API, TestGroup.PEOPLE, TestGroup.SANITY}) + @TestRail(section = {TestGroup.REST_API, TestGroup.PEOPLE}, executionType = ExecutionType.SANITY, + description = "Check if de-authorization is not implemented in Community Edition") + public void deauthorizationIsNotImplementedInCommunityEdition() + { + restClient.authenticateUser(adminUser).withCoreAPI().usingUser(userModel).deauthorizeUser(); + restClient.assertStatusCodeIs(HttpStatus.NOT_IMPLEMENTED); + + restClient.authenticateUser(userModel).withCoreAPI().usingUser(userModel).deauthorizeUser(); + restClient.assertStatusCodeIs(HttpStatus.NOT_IMPLEMENTED); + } +} diff --git a/remote-api/src/main/java/org/alfresco/rest/api/people/PeopleEntityResource.java b/remote-api/src/main/java/org/alfresco/rest/api/people/PeopleEntityResource.java index e775642af7..cb2fb825f0 100644 --- a/remote-api/src/main/java/org/alfresco/rest/api/people/PeopleEntityResource.java +++ b/remote-api/src/main/java/org/alfresco/rest/api/people/PeopleEntityResource.java @@ -1,234 +1,248 @@ -/* - * #%L - * Alfresco Remote API - * %% - * Copyright (C) 2005 - 2023 Alfresco Software Limited - * %% - * This file is part of the Alfresco software. - * If the software was purchased under a paid Alfresco license, the terms of - * the paid license agreement will prevail. Otherwise, the software is - * provided under the following open source license terms: - * - * Alfresco is free software: you can redistribute it and/or modify - * it under the terms of the GNU Lesser General Public License as published by - * the Free Software Foundation, either version 3 of the License, or - * (at your option) any later version. - * - * Alfresco is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Lesser General Public License for more details. - * - * You should have received a copy of the GNU Lesser General Public License - * along with Alfresco. If not, see . - * #L% - */ -package org.alfresco.rest.api.people; - -import java.io.InputStream; -import java.util.ArrayList; -import java.util.List; - -import jakarta.servlet.http.HttpServletResponse; - -import org.alfresco.model.ContentModel; -import org.alfresco.rest.api.People; -import org.alfresco.rest.api.model.Client; -import org.alfresco.rest.api.model.PasswordReset; -import org.alfresco.rest.api.model.Person; -import org.alfresco.rest.framework.BinaryProperties; -import org.alfresco.rest.framework.Operation; -import org.alfresco.rest.framework.WebApiDescription; -import org.alfresco.rest.framework.WebApiNoAuth; -import org.alfresco.rest.framework.WebApiParam; -import org.alfresco.rest.framework.core.ResourceParameter; -import org.alfresco.rest.framework.core.exceptions.EntityNotFoundException; -import org.alfresco.rest.framework.core.exceptions.InvalidArgumentException; -import org.alfresco.rest.framework.resource.EntityResource; -import org.alfresco.rest.framework.resource.actions.interfaces.BinaryResourceAction; -import org.alfresco.rest.framework.resource.actions.interfaces.EntityResourceAction; -import org.alfresco.rest.framework.resource.content.BasicContentInfo; -import org.alfresco.rest.framework.resource.content.BinaryResource; -import org.alfresco.rest.framework.resource.parameters.CollectionWithPagingInfo; -import org.alfresco.rest.framework.resource.parameters.Parameters; -import org.alfresco.rest.framework.webscripts.WithResponse; -import org.alfresco.util.PropertyCheck; -import org.apache.commons.logging.Log; -import org.apache.commons.logging.LogFactory; -import org.springframework.beans.factory.InitializingBean; - -/** - * An implementation of an Entity Resource for a Person - * - * @author sglover - * @author Gethin James - */ -@EntityResource(name="people", title = "People") -public class PeopleEntityResource implements EntityResourceAction.ReadById, EntityResourceAction.Create, - EntityResourceAction.Update,EntityResourceAction.Read, - - BinaryResourceAction.Read, BinaryResourceAction.Update, BinaryResourceAction.Delete, InitializingBean -{ - private static Log logger = LogFactory.getLog(PeopleEntityResource.class); - - private People people; - - public void setPeople(People people) - { - this.people = people; - } - - @Override - public void afterPropertiesSet() - { - PropertyCheck.mandatory(this, "people", people); - } - - /** - * Get a person by userName. - * - * @see org.alfresco.rest.framework.resource.actions.interfaces.EntityResourceAction.ReadById#readById(String, org.alfresco.rest.framework.resource.parameters.Parameters) - */ - @Override - @WebApiDescription(title = "Get Person Information", description = "Get information for the person with id 'personId'") - @WebApiParam(name = "personId", title = "The person's username") - public Person readById(String personId, Parameters parameters) - { - Person person = people.getPerson(personId); - return person; - } - - @Override - @WebApiDescription(title="Create person", description="Create a person") - @WebApiParam(name="persons", title="A single person", description="A single person, multiple people are not supported.", - kind= ResourceParameter.KIND.HTTP_BODY_OBJECT, allowMultiple=false, required = true) - public List create(List persons, Parameters parameters) - { - Person p = persons.get(0); - - validateDerivedFieldsExistence(p); - - List result = new ArrayList<>(1); - result.add(people.create(p)); - return result; - } - - @Override - @WebApiDescription(title="Update person", description="Update the given person's details") - public Person update(String personId, Person person, Parameters parameters) - { - if (person.wasSet(ContentModel.PROP_USERNAME)) - { - // REPO-1537 - throw new InvalidArgumentException("Unsupported field: id"); - } - - validateDerivedFieldsExistence(person); - - return people.update(personId, person); - } - - /** - * Explicitly test for the presence of system-maintained (derived) fields that are settable on Person (see also REPO-110). - * - * @param person - */ - private void validateDerivedFieldsExistence(Person person) - { - if (person.wasSet(ContentModel.PROP_USER_STATUS_TIME)) - { - throw new InvalidArgumentException("Unsupported field: statusUpdatedAt"); - } - - if (person.wasSet(Person.PROP_PERSON_AVATAR_ID)) - { - throw new InvalidArgumentException("Unsupported field: avatarId"); - } - - if (person.wasSet(ContentModel.PROP_SIZE_QUOTA)) - { - throw new InvalidArgumentException("Unsupported field: quota"); - } - - if (person.wasSet(ContentModel.PROP_SIZE_CURRENT)) - { - throw new InvalidArgumentException("Unsupported field: quotaUsed"); - } - } - - @Override - @WebApiDescription(title = "Get List of People", description = "Get List of People") - public CollectionWithPagingInfo readAll(Parameters params) - { - return people.getPeople(params); - } - - @Deprecated - @Operation("request-password-reset") - @WebApiDescription(title = "Request Password Reset", description = "Request password reset", - successStatus = HttpServletResponse.SC_ACCEPTED) - @WebApiNoAuth - public void requestPasswordReset(String personId, Client client, Parameters parameters, WithResponse withResponse) - { - people.requestPasswordReset(personId, client.getClient()); - } - - @Deprecated - @Operation("reset-password") - @WebApiDescription(title = "Reset Password", description = "Performs password reset", successStatus = HttpServletResponse.SC_ACCEPTED) - @WebApiNoAuth - public void resetPassword(String personId, PasswordReset passwordReset, Parameters parameters, WithResponse withResponse) - { - people.resetPassword(personId, passwordReset); - } - - /** - * Download avatar image content - * - * @param personId - * @param parameters {@link Parameters} - * @return - * @throws EntityNotFoundException - */ - @Override - @WebApiDescription(title = "Download avatar", description = "Download avatar") - @BinaryProperties({"avatar"}) - public BinaryResource readProperty(String personId, Parameters parameters) throws EntityNotFoundException - { - return people.downloadAvatarContent(personId, parameters); - } - - /** - * Upload avatar image content - * - * @param personId - * @param contentInfo Basic information about the content stream - * @param stream An inputstream - * @param parameters - * @return - */ - @Override - @WebApiDescription(title = "Upload avatar", description = "Upload avatar") - @BinaryProperties({"avatar"}) - public Person updateProperty(String personId, BasicContentInfo contentInfo, InputStream stream, Parameters parameters) - { - return people.uploadAvatarContent(personId, contentInfo, stream, parameters); - } - - /** - * Delete avatar image content - * - * @param personId - * @param parameters - * @return - */ - @Override - @WebApiDescription(title = "Delete avatar image", description = "Delete avatar image") - @BinaryProperties({ "avatar" }) - public void deleteProperty(String personId, Parameters parameters) - { - people.deleteAvatarContent(personId); - } - - -} \ No newline at end of file +/* + * #%L + * Alfresco Remote API + * %% + * Copyright (C) 2005 - 2025 Alfresco Software Limited + * %% + * This file is part of the Alfresco software. + * If the software was purchased under a paid Alfresco license, the terms of + * the paid license agreement will prevail. Otherwise, the software is + * provided under the following open source license terms: + * + * Alfresco is free software: you can redistribute it and/or modify + * it under the terms of the GNU Lesser General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * Alfresco is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public License + * along with Alfresco. If not, see . + * #L% + */ +package org.alfresco.rest.api.people; + +import java.io.InputStream; +import java.util.ArrayList; +import java.util.List; +import jakarta.servlet.http.HttpServletResponse; + +import org.springframework.beans.factory.InitializingBean; + +import org.alfresco.model.ContentModel; +import org.alfresco.rest.api.People; +import org.alfresco.rest.api.model.Client; +import org.alfresco.rest.api.model.PasswordReset; +import org.alfresco.rest.api.model.Person; +import org.alfresco.rest.framework.BinaryProperties; +import org.alfresco.rest.framework.Operation; +import org.alfresco.rest.framework.WebApiDescription; +import org.alfresco.rest.framework.WebApiNoAuth; +import org.alfresco.rest.framework.WebApiParam; +import org.alfresco.rest.framework.core.ResourceParameter; +import org.alfresco.rest.framework.core.exceptions.EntityNotFoundException; +import org.alfresco.rest.framework.core.exceptions.InvalidArgumentException; +import org.alfresco.rest.framework.resource.EntityResource; +import org.alfresco.rest.framework.resource.actions.interfaces.BinaryResourceAction; +import org.alfresco.rest.framework.resource.actions.interfaces.EntityResourceAction; +import org.alfresco.rest.framework.resource.content.BasicContentInfo; +import org.alfresco.rest.framework.resource.content.BinaryResource; +import org.alfresco.rest.framework.resource.parameters.CollectionWithPagingInfo; +import org.alfresco.rest.framework.resource.parameters.Parameters; +import org.alfresco.rest.framework.webscripts.WithResponse; +import org.alfresco.util.PropertyCheck; + +/** + * An implementation of an Entity Resource for a Person + * + * @author sglover + * @author Gethin James + */ +@EntityResource(name = "people", title = "People") +public class PeopleEntityResource implements EntityResourceAction.ReadById, EntityResourceAction.Create, + EntityResourceAction.Update, EntityResourceAction.Read, + + BinaryResourceAction.Read, BinaryResourceAction.Update, BinaryResourceAction.Delete, InitializingBean +{ + private People people; + + public void setPeople(People people) + { + this.people = people; + } + + @Override + public void afterPropertiesSet() + { + PropertyCheck.mandatory(this, "people", people); + } + + /** + * Get a person by userName. + * + * @see org.alfresco.rest.framework.resource.actions.interfaces.EntityResourceAction.ReadById#readById(String, org.alfresco.rest.framework.resource.parameters.Parameters) + */ + @Override + @WebApiDescription(title = "Get Person Information", description = "Get information for the person with id 'personId'") + @WebApiParam(name = "personId", title = "The person's username") + public Person readById(String personId, Parameters parameters) + { + Person person = people.getPerson(personId); + return person; + } + + @Override + @WebApiDescription(title = "Create person", description = "Create a person") + @WebApiParam(name = "persons", title = "A single person", description = "A single person, multiple people are not supported.", + kind = ResourceParameter.KIND.HTTP_BODY_OBJECT, allowMultiple = false, required = true) + public List create(List persons, Parameters parameters) + { + Person p = persons.get(0); + + validateDerivedFieldsExistence(p); + + List result = new ArrayList<>(1); + result.add(people.create(p)); + return result; + } + + @Override + @WebApiDescription(title = "Update person", description = "Update the given person's details") + public Person update(String personId, Person person, Parameters parameters) + { + if (person.wasSet(ContentModel.PROP_USERNAME)) + { + // REPO-1537 + throw new InvalidArgumentException("Unsupported field: id"); + } + + validateDerivedFieldsExistence(person); + + return people.update(personId, person); + } + + /** + * Explicitly test for the presence of system-maintained (derived) fields that are settable on Person (see also REPO-110). + * + * @param person + */ + private void validateDerivedFieldsExistence(Person person) + { + if (person.wasSet(ContentModel.PROP_USER_STATUS_TIME)) + { + throw new InvalidArgumentException("Unsupported field: statusUpdatedAt"); + } + + if (person.wasSet(Person.PROP_PERSON_AVATAR_ID)) + { + throw new InvalidArgumentException("Unsupported field: avatarId"); + } + + if (person.wasSet(ContentModel.PROP_SIZE_QUOTA)) + { + throw new InvalidArgumentException("Unsupported field: quota"); + } + + if (person.wasSet(ContentModel.PROP_SIZE_CURRENT)) + { + throw new InvalidArgumentException("Unsupported field: quotaUsed"); + } + } + + @Override + @WebApiDescription(title = "Get List of People", description = "Get List of People") + public CollectionWithPagingInfo readAll(Parameters params) + { + return people.getPeople(params); + } + + @Deprecated + @Operation("request-password-reset") + @WebApiDescription(title = "Request Password Reset", description = "Request password reset", + successStatus = HttpServletResponse.SC_ACCEPTED) + @WebApiNoAuth + public void requestPasswordReset(String personId, Client client, Parameters parameters, WithResponse withResponse) + { + people.requestPasswordReset(personId, client.getClient()); + } + + @Deprecated + @Operation("reset-password") + @WebApiDescription(title = "Reset Password", description = "Performs password reset", successStatus = HttpServletResponse.SC_ACCEPTED) + @WebApiNoAuth + public void resetPassword(String personId, PasswordReset passwordReset, Parameters parameters, WithResponse withResponse) + { + people.resetPassword(personId, passwordReset); + } + + /** + * Download avatar image content + * + * @param personId + * @param parameters + * {@link Parameters} + * @return + * @throws EntityNotFoundException + */ + @Override + @WebApiDescription(title = "Download avatar", description = "Download avatar") + @BinaryProperties({"avatar"}) + public BinaryResource readProperty(String personId, Parameters parameters) throws EntityNotFoundException + { + return people.downloadAvatarContent(personId, parameters); + } + + /** + * Upload avatar image content + * + * @param personId + * @param contentInfo + * Basic information about the content stream + * @param stream + * An inputstream + * @param parameters + * @return + */ + @Override + @WebApiDescription(title = "Upload avatar", description = "Upload avatar") + @BinaryProperties({"avatar"}) + public Person updateProperty(String personId, BasicContentInfo contentInfo, InputStream stream, Parameters parameters) + { + return people.uploadAvatarContent(personId, contentInfo, stream, parameters); + } + + /** + * Delete avatar image content + * + * @param personId + * @param parameters + * @return + */ + @Override + @WebApiDescription(title = "Delete avatar image", description = "Delete avatar image") + @BinaryProperties({"avatar"}) + public void deleteProperty(String personId, Parameters parameters) + { + people.deleteAvatarContent(personId); + } + + /** + * De-authorize user + * + * Not currently supported in community edition. + * + * @param personId + * @param body + * @param parameters + * @param withResponse + */ + @Operation("deauthorize") + @WebApiDescription(title = "De-authorize user", description = "Performs user de-authorization", successStatus = HttpServletResponse.SC_NOT_IMPLEMENTED) + public void deauthorizeUser(String personId, Void body, Parameters parameters, WithResponse withResponse) + { + // functionality is not implemented in community edition + } +} diff --git a/remote-api/src/main/resources/alfresco/public-rest-context.xml b/remote-api/src/main/resources/alfresco/public-rest-context.xml index c054b3b9de..511032322a 100644 --- a/remote-api/src/main/resources/alfresco/public-rest-context.xml +++ b/remote-api/src/main/resources/alfresco/public-rest-context.xml @@ -1116,7 +1116,7 @@ - + From cb92c78b3cafc4616aa42c2317b354211e5f2455 Mon Sep 17 00:00:00 2001 From: alfresco-build <8039454+alfresco-build@users.noreply.github.com> Date: Thu, 30 Jan 2025 11:00:46 +0000 Subject: [PATCH 02/23] [maven-release-plugin][skip ci] prepare release 25.1.0.41 --- amps/ags/pom.xml | 2 +- amps/ags/rm-automation/pom.xml | 2 +- .../rm-automation/rm-automation-community-rest-api/pom.xml | 2 +- amps/ags/rm-community/pom.xml | 2 +- amps/ags/rm-community/rm-community-repo/pom.xml | 2 +- amps/ags/rm-community/rm-community-rest-api-explorer/pom.xml | 2 +- amps/pom.xml | 2 +- amps/share-services/pom.xml | 2 +- core/pom.xml | 2 +- data-model/pom.xml | 2 +- mmt/pom.xml | 2 +- packaging/distribution/pom.xml | 2 +- packaging/docker-alfresco/pom.xml | 2 +- packaging/pom.xml | 2 +- packaging/tests/pom.xml | 2 +- packaging/tests/tas-cmis/pom.xml | 2 +- packaging/tests/tas-email/pom.xml | 2 +- packaging/tests/tas-integration/pom.xml | 2 +- packaging/tests/tas-restapi/pom.xml | 2 +- packaging/tests/tas-webdav/pom.xml | 2 +- packaging/war/pom.xml | 2 +- pom.xml | 4 ++-- remote-api/pom.xml | 2 +- repository/pom.xml | 2 +- 24 files changed, 25 insertions(+), 25 deletions(-) diff --git a/amps/ags/pom.xml b/amps/ags/pom.xml index fe81b69324..bf1fe3024d 100644 --- a/amps/ags/pom.xml +++ b/amps/ags/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-community-repo-amps - 25.1.0.41-SNAPSHOT + 25.1.0.41 diff --git a/amps/ags/rm-automation/pom.xml b/amps/ags/rm-automation/pom.xml index 931ef5ce00..3c0d78b054 100644 --- a/amps/ags/rm-automation/pom.xml +++ b/amps/ags/rm-automation/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-governance-services-community-parent - 25.1.0.41-SNAPSHOT + 25.1.0.41 diff --git a/amps/ags/rm-automation/rm-automation-community-rest-api/pom.xml b/amps/ags/rm-automation/rm-automation-community-rest-api/pom.xml index efc1be5744..63dc729004 100644 --- a/amps/ags/rm-automation/rm-automation-community-rest-api/pom.xml +++ b/amps/ags/rm-automation/rm-automation-community-rest-api/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-governance-services-automation-community-repo - 25.1.0.41-SNAPSHOT + 25.1.0.41 diff --git a/amps/ags/rm-community/pom.xml b/amps/ags/rm-community/pom.xml index 46ed9825b9..f784ff9e1c 100644 --- a/amps/ags/rm-community/pom.xml +++ b/amps/ags/rm-community/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-governance-services-community-parent - 25.1.0.41-SNAPSHOT + 25.1.0.41 diff --git a/amps/ags/rm-community/rm-community-repo/pom.xml b/amps/ags/rm-community/rm-community-repo/pom.xml index 28b66c2407..860d89f62b 100644 --- a/amps/ags/rm-community/rm-community-repo/pom.xml +++ b/amps/ags/rm-community/rm-community-repo/pom.xml @@ -8,7 +8,7 @@ org.alfresco alfresco-governance-services-community-repo-parent - 25.1.0.41-SNAPSHOT + 25.1.0.41 diff --git a/amps/ags/rm-community/rm-community-rest-api-explorer/pom.xml b/amps/ags/rm-community/rm-community-rest-api-explorer/pom.xml index 31641273e1..94f591c17e 100644 --- a/amps/ags/rm-community/rm-community-rest-api-explorer/pom.xml +++ b/amps/ags/rm-community/rm-community-rest-api-explorer/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-governance-services-community-repo-parent - 25.1.0.41-SNAPSHOT + 25.1.0.41 diff --git a/amps/pom.xml b/amps/pom.xml index f822d1b640..981df8079d 100644 --- a/amps/pom.xml +++ b/amps/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-community-repo - 25.1.0.41-SNAPSHOT + 25.1.0.41 diff --git a/amps/share-services/pom.xml b/amps/share-services/pom.xml index 8485c0d45c..84daac2b19 100644 --- a/amps/share-services/pom.xml +++ b/amps/share-services/pom.xml @@ -8,7 +8,7 @@ org.alfresco alfresco-community-repo-amps - 25.1.0.41-SNAPSHOT + 25.1.0.41 diff --git a/core/pom.xml b/core/pom.xml index b8bacc5fe3..ae655e7dbd 100644 --- a/core/pom.xml +++ b/core/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-community-repo - 25.1.0.41-SNAPSHOT + 25.1.0.41 diff --git a/data-model/pom.xml b/data-model/pom.xml index 656147dcb4..32499f9e4c 100644 --- a/data-model/pom.xml +++ b/data-model/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-community-repo - 25.1.0.41-SNAPSHOT + 25.1.0.41 diff --git a/mmt/pom.xml b/mmt/pom.xml index 04f071deb7..09677ec842 100644 --- a/mmt/pom.xml +++ b/mmt/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-community-repo - 25.1.0.41-SNAPSHOT + 25.1.0.41 diff --git a/packaging/distribution/pom.xml b/packaging/distribution/pom.xml index 32dff3a8fc..732379c7d2 100644 --- a/packaging/distribution/pom.xml +++ b/packaging/distribution/pom.xml @@ -9,6 +9,6 @@ org.alfresco alfresco-community-repo-packaging - 25.1.0.41-SNAPSHOT + 25.1.0.41 diff --git a/packaging/docker-alfresco/pom.xml b/packaging/docker-alfresco/pom.xml index 83b40de3a7..3017de7cbc 100644 --- a/packaging/docker-alfresco/pom.xml +++ b/packaging/docker-alfresco/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-community-repo-packaging - 25.1.0.41-SNAPSHOT + 25.1.0.41 diff --git a/packaging/pom.xml b/packaging/pom.xml index 571ce9b72b..d8191cdcf1 100644 --- a/packaging/pom.xml +++ b/packaging/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-community-repo - 25.1.0.41-SNAPSHOT + 25.1.0.41 diff --git a/packaging/tests/pom.xml b/packaging/tests/pom.xml index b7fb738a59..181d5d9b5f 100644 --- a/packaging/tests/pom.xml +++ b/packaging/tests/pom.xml @@ -6,7 +6,7 @@ org.alfresco alfresco-community-repo-packaging - 25.1.0.41-SNAPSHOT + 25.1.0.41 diff --git a/packaging/tests/tas-cmis/pom.xml b/packaging/tests/tas-cmis/pom.xml index e161459338..bf664bae1e 100644 --- a/packaging/tests/tas-cmis/pom.xml +++ b/packaging/tests/tas-cmis/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-community-repo-tests - 25.1.0.41-SNAPSHOT + 25.1.0.41 diff --git a/packaging/tests/tas-email/pom.xml b/packaging/tests/tas-email/pom.xml index e78d74fed2..6fe5e1c10f 100644 --- a/packaging/tests/tas-email/pom.xml +++ b/packaging/tests/tas-email/pom.xml @@ -9,7 +9,7 @@ org.alfresco alfresco-community-repo-tests - 25.1.0.41-SNAPSHOT + 25.1.0.41 diff --git a/packaging/tests/tas-integration/pom.xml b/packaging/tests/tas-integration/pom.xml index af53a44ae5..92eec95fc3 100644 --- a/packaging/tests/tas-integration/pom.xml +++ b/packaging/tests/tas-integration/pom.xml @@ -9,7 +9,7 @@ org.alfresco alfresco-community-repo-tests - 25.1.0.41-SNAPSHOT + 25.1.0.41 diff --git a/packaging/tests/tas-restapi/pom.xml b/packaging/tests/tas-restapi/pom.xml index 898481a6c7..d74b8774ed 100644 --- a/packaging/tests/tas-restapi/pom.xml +++ b/packaging/tests/tas-restapi/pom.xml @@ -8,7 +8,7 @@ org.alfresco alfresco-community-repo-tests - 25.1.0.41-SNAPSHOT + 25.1.0.41 diff --git a/packaging/tests/tas-webdav/pom.xml b/packaging/tests/tas-webdav/pom.xml index 2a48ec2123..66ae4fb2cf 100644 --- a/packaging/tests/tas-webdav/pom.xml +++ b/packaging/tests/tas-webdav/pom.xml @@ -9,7 +9,7 @@ org.alfresco alfresco-community-repo-tests - 25.1.0.41-SNAPSHOT + 25.1.0.41 diff --git a/packaging/war/pom.xml b/packaging/war/pom.xml index 1e7079e27f..6e6fb52d60 100644 --- a/packaging/war/pom.xml +++ b/packaging/war/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-community-repo-packaging - 25.1.0.41-SNAPSHOT + 25.1.0.41 diff --git a/pom.xml b/pom.xml index 94e82d00f3..1827fb7632 100644 --- a/pom.xml +++ b/pom.xml @@ -2,7 +2,7 @@ 4.0.0 alfresco-community-repo - 25.1.0.41-SNAPSHOT + 25.1.0.41 pom Alfresco Community Repo Parent @@ -155,7 +155,7 @@ scm:git:https://github.com/Alfresco/alfresco-community-repo.git scm:git:https://github.com/Alfresco/alfresco-community-repo.git https://github.com/Alfresco/alfresco-community-repo - HEAD + 25.1.0.41 diff --git a/remote-api/pom.xml b/remote-api/pom.xml index 0f4436d319..20a3a7f70b 100644 --- a/remote-api/pom.xml +++ b/remote-api/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-community-repo - 25.1.0.41-SNAPSHOT + 25.1.0.41 diff --git a/repository/pom.xml b/repository/pom.xml index 86dbc2c850..99c9ac4dac 100644 --- a/repository/pom.xml +++ b/repository/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-community-repo - 25.1.0.41-SNAPSHOT + 25.1.0.41 From 7d98849187d104a9c2f36a7574cf6a0b13e9b8ac Mon Sep 17 00:00:00 2001 From: alfresco-build <8039454+alfresco-build@users.noreply.github.com> Date: Thu, 30 Jan 2025 11:00:49 +0000 Subject: [PATCH 03/23] [maven-release-plugin][skip ci] prepare for next development iteration --- amps/ags/pom.xml | 2 +- amps/ags/rm-automation/pom.xml | 2 +- .../rm-automation/rm-automation-community-rest-api/pom.xml | 2 +- amps/ags/rm-community/pom.xml | 2 +- amps/ags/rm-community/rm-community-repo/pom.xml | 2 +- amps/ags/rm-community/rm-community-rest-api-explorer/pom.xml | 2 +- amps/pom.xml | 2 +- amps/share-services/pom.xml | 2 +- core/pom.xml | 2 +- data-model/pom.xml | 2 +- mmt/pom.xml | 2 +- packaging/distribution/pom.xml | 2 +- packaging/docker-alfresco/pom.xml | 2 +- packaging/pom.xml | 2 +- packaging/tests/pom.xml | 2 +- packaging/tests/tas-cmis/pom.xml | 2 +- packaging/tests/tas-email/pom.xml | 2 +- packaging/tests/tas-integration/pom.xml | 2 +- packaging/tests/tas-restapi/pom.xml | 2 +- packaging/tests/tas-webdav/pom.xml | 2 +- packaging/war/pom.xml | 2 +- pom.xml | 4 ++-- remote-api/pom.xml | 2 +- repository/pom.xml | 2 +- 24 files changed, 25 insertions(+), 25 deletions(-) diff --git a/amps/ags/pom.xml b/amps/ags/pom.xml index bf1fe3024d..5609edf72c 100644 --- a/amps/ags/pom.xml +++ b/amps/ags/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-community-repo-amps - 25.1.0.41 + 25.1.0.42-SNAPSHOT diff --git a/amps/ags/rm-automation/pom.xml b/amps/ags/rm-automation/pom.xml index 3c0d78b054..090dcf866d 100644 --- a/amps/ags/rm-automation/pom.xml +++ b/amps/ags/rm-automation/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-governance-services-community-parent - 25.1.0.41 + 25.1.0.42-SNAPSHOT diff --git a/amps/ags/rm-automation/rm-automation-community-rest-api/pom.xml b/amps/ags/rm-automation/rm-automation-community-rest-api/pom.xml index 63dc729004..ffb2116237 100644 --- a/amps/ags/rm-automation/rm-automation-community-rest-api/pom.xml +++ b/amps/ags/rm-automation/rm-automation-community-rest-api/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-governance-services-automation-community-repo - 25.1.0.41 + 25.1.0.42-SNAPSHOT diff --git a/amps/ags/rm-community/pom.xml b/amps/ags/rm-community/pom.xml index f784ff9e1c..056cf2f90d 100644 --- a/amps/ags/rm-community/pom.xml +++ b/amps/ags/rm-community/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-governance-services-community-parent - 25.1.0.41 + 25.1.0.42-SNAPSHOT diff --git a/amps/ags/rm-community/rm-community-repo/pom.xml b/amps/ags/rm-community/rm-community-repo/pom.xml index 860d89f62b..d323cbb4a3 100644 --- a/amps/ags/rm-community/rm-community-repo/pom.xml +++ b/amps/ags/rm-community/rm-community-repo/pom.xml @@ -8,7 +8,7 @@ org.alfresco alfresco-governance-services-community-repo-parent - 25.1.0.41 + 25.1.0.42-SNAPSHOT diff --git a/amps/ags/rm-community/rm-community-rest-api-explorer/pom.xml b/amps/ags/rm-community/rm-community-rest-api-explorer/pom.xml index 94f591c17e..b78b104d10 100644 --- a/amps/ags/rm-community/rm-community-rest-api-explorer/pom.xml +++ b/amps/ags/rm-community/rm-community-rest-api-explorer/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-governance-services-community-repo-parent - 25.1.0.41 + 25.1.0.42-SNAPSHOT diff --git a/amps/pom.xml b/amps/pom.xml index 981df8079d..b3a85c843a 100644 --- a/amps/pom.xml +++ b/amps/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-community-repo - 25.1.0.41 + 25.1.0.42-SNAPSHOT diff --git a/amps/share-services/pom.xml b/amps/share-services/pom.xml index 84daac2b19..e3997e8a93 100644 --- a/amps/share-services/pom.xml +++ b/amps/share-services/pom.xml @@ -8,7 +8,7 @@ org.alfresco alfresco-community-repo-amps - 25.1.0.41 + 25.1.0.42-SNAPSHOT diff --git a/core/pom.xml b/core/pom.xml index ae655e7dbd..67b1e48dbf 100644 --- a/core/pom.xml +++ b/core/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-community-repo - 25.1.0.41 + 25.1.0.42-SNAPSHOT diff --git a/data-model/pom.xml b/data-model/pom.xml index 32499f9e4c..398ea8cd13 100644 --- a/data-model/pom.xml +++ b/data-model/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-community-repo - 25.1.0.41 + 25.1.0.42-SNAPSHOT diff --git a/mmt/pom.xml b/mmt/pom.xml index 09677ec842..e39eb8c9de 100644 --- a/mmt/pom.xml +++ b/mmt/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-community-repo - 25.1.0.41 + 25.1.0.42-SNAPSHOT diff --git a/packaging/distribution/pom.xml b/packaging/distribution/pom.xml index 732379c7d2..1471d5df75 100644 --- a/packaging/distribution/pom.xml +++ b/packaging/distribution/pom.xml @@ -9,6 +9,6 @@ org.alfresco alfresco-community-repo-packaging - 25.1.0.41 + 25.1.0.42-SNAPSHOT diff --git a/packaging/docker-alfresco/pom.xml b/packaging/docker-alfresco/pom.xml index 3017de7cbc..31945a9626 100644 --- a/packaging/docker-alfresco/pom.xml +++ b/packaging/docker-alfresco/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-community-repo-packaging - 25.1.0.41 + 25.1.0.42-SNAPSHOT diff --git a/packaging/pom.xml b/packaging/pom.xml index d8191cdcf1..c0b4fba625 100644 --- a/packaging/pom.xml +++ b/packaging/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-community-repo - 25.1.0.41 + 25.1.0.42-SNAPSHOT diff --git a/packaging/tests/pom.xml b/packaging/tests/pom.xml index 181d5d9b5f..88ab402530 100644 --- a/packaging/tests/pom.xml +++ b/packaging/tests/pom.xml @@ -6,7 +6,7 @@ org.alfresco alfresco-community-repo-packaging - 25.1.0.41 + 25.1.0.42-SNAPSHOT diff --git a/packaging/tests/tas-cmis/pom.xml b/packaging/tests/tas-cmis/pom.xml index bf664bae1e..5aa4a7f539 100644 --- a/packaging/tests/tas-cmis/pom.xml +++ b/packaging/tests/tas-cmis/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-community-repo-tests - 25.1.0.41 + 25.1.0.42-SNAPSHOT diff --git a/packaging/tests/tas-email/pom.xml b/packaging/tests/tas-email/pom.xml index 6fe5e1c10f..32d149eba0 100644 --- a/packaging/tests/tas-email/pom.xml +++ b/packaging/tests/tas-email/pom.xml @@ -9,7 +9,7 @@ org.alfresco alfresco-community-repo-tests - 25.1.0.41 + 25.1.0.42-SNAPSHOT diff --git a/packaging/tests/tas-integration/pom.xml b/packaging/tests/tas-integration/pom.xml index 92eec95fc3..ab6358d46b 100644 --- a/packaging/tests/tas-integration/pom.xml +++ b/packaging/tests/tas-integration/pom.xml @@ -9,7 +9,7 @@ org.alfresco alfresco-community-repo-tests - 25.1.0.41 + 25.1.0.42-SNAPSHOT diff --git a/packaging/tests/tas-restapi/pom.xml b/packaging/tests/tas-restapi/pom.xml index d74b8774ed..2b7c967749 100644 --- a/packaging/tests/tas-restapi/pom.xml +++ b/packaging/tests/tas-restapi/pom.xml @@ -8,7 +8,7 @@ org.alfresco alfresco-community-repo-tests - 25.1.0.41 + 25.1.0.42-SNAPSHOT diff --git a/packaging/tests/tas-webdav/pom.xml b/packaging/tests/tas-webdav/pom.xml index 66ae4fb2cf..a28e0416fa 100644 --- a/packaging/tests/tas-webdav/pom.xml +++ b/packaging/tests/tas-webdav/pom.xml @@ -9,7 +9,7 @@ org.alfresco alfresco-community-repo-tests - 25.1.0.41 + 25.1.0.42-SNAPSHOT diff --git a/packaging/war/pom.xml b/packaging/war/pom.xml index 6e6fb52d60..c1bc7c005d 100644 --- a/packaging/war/pom.xml +++ b/packaging/war/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-community-repo-packaging - 25.1.0.41 + 25.1.0.42-SNAPSHOT diff --git a/pom.xml b/pom.xml index 1827fb7632..bb703689d9 100644 --- a/pom.xml +++ b/pom.xml @@ -2,7 +2,7 @@ 4.0.0 alfresco-community-repo - 25.1.0.41 + 25.1.0.42-SNAPSHOT pom Alfresco Community Repo Parent @@ -155,7 +155,7 @@ scm:git:https://github.com/Alfresco/alfresco-community-repo.git scm:git:https://github.com/Alfresco/alfresco-community-repo.git https://github.com/Alfresco/alfresco-community-repo - 25.1.0.41 + HEAD diff --git a/remote-api/pom.xml b/remote-api/pom.xml index 20a3a7f70b..50e49e1bd7 100644 --- a/remote-api/pom.xml +++ b/remote-api/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-community-repo - 25.1.0.41 + 25.1.0.42-SNAPSHOT diff --git a/repository/pom.xml b/repository/pom.xml index 99c9ac4dac..9bfb1f3b25 100644 --- a/repository/pom.xml +++ b/repository/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-community-repo - 25.1.0.41 + 25.1.0.42-SNAPSHOT From 1a17f7a0cf794214e827cb2c850e40412acb49e7 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 30 Jan 2025 16:53:52 +0100 Subject: [PATCH 04/23] Bump com.google.code.gson:gson from 2.11.0 to 2.12.0 (#3171) Bumps [com.google.code.gson:gson](https://github.com/google/gson) from 2.11.0 to 2.12.0. - [Release notes](https://github.com/google/gson/releases) - [Changelog](https://github.com/google/gson/blob/main/CHANGELOG.md) - [Commits](https://github.com/google/gson/compare/gson-parent-2.11.0...gson-parent-2.12.0) --- updated-dependencies: - dependency-name: com.google.code.gson:gson dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index bb703689d9..9fc5a751bb 100644 --- a/pom.xml +++ b/pom.xml @@ -70,7 +70,7 @@ 20240303 2.12.0 2.18.0 - 2.11.0 + 2.12.0 33.3.1-jre 4.5.14 4.4.16 From 1d7ac4dfaf06d6c6a84462a67eb682c943d25f3f Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 30 Jan 2025 16:55:44 +0100 Subject: [PATCH 05/23] Bump org.apache.httpcomponents.core5:httpcore5 from 5.3 to 5.3.3 (#3170) Bumps [org.apache.httpcomponents.core5:httpcore5](https://github.com/apache/httpcomponents-core) from 5.3 to 5.3.3. - [Changelog](https://github.com/apache/httpcomponents-core/blob/rel/v5.3.3/RELEASE_NOTES.txt) - [Commits](https://github.com/apache/httpcomponents-core/compare/rel/v5.3...rel/v5.3.3) --- updated-dependencies: - dependency-name: org.apache.httpcomponents.core5:httpcore5 dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 9fc5a751bb..4623890fb1 100644 --- a/pom.xml +++ b/pom.xml @@ -75,7 +75,7 @@ 4.5.14 4.4.16 5.4.1 - 5.3 + 5.3.3 3.1-HTTPCLIENT-1265 2.12.2 2.0.16 From 4743ee4d9a69f728ed486a2aa0a5d2155948c91a Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 30 Jan 2025 16:57:10 +0100 Subject: [PATCH 06/23] Bump io.netty:netty-bom from 4.1.113.Final to 4.1.117.Final (#3157) Bumps [io.netty:netty-bom](https://github.com/netty/netty) from 4.1.113.Final to 4.1.117.Final. - [Commits](https://github.com/netty/netty/compare/netty-4.1.113.Final...netty-4.1.117.Final) --- updated-dependencies: - dependency-name: io.netty:netty-bom dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 4623890fb1..657c4e62c8 100644 --- a/pom.xml +++ b/pom.xml @@ -86,7 +86,7 @@ 5.3.0 3.5.0.Final 4.6.0 - 4.1.113.Final + 4.1.117.Final 5.18.6 1.27.1 4.2.2 From 22b9bfd056c4f48010b658169003f1a232371f47 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 30 Jan 2025 16:58:02 +0100 Subject: [PATCH 07/23] Bump com.diffplug.spotless:spotless-maven-plugin from 2.43.0 to 2.44.2 (#3153) Bumps [com.diffplug.spotless:spotless-maven-plugin](https://github.com/diffplug/spotless) from 2.43.0 to 2.44.2. - [Release notes](https://github.com/diffplug/spotless/releases) - [Changelog](https://github.com/diffplug/spotless/blob/main/CHANGES.md) - [Commits](https://github.com/diffplug/spotless/compare/lib/2.43.0...maven/2.44.2) --- updated-dependencies: - dependency-name: com.diffplug.spotless:spotless-maven-plugin dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 657c4e62c8..e01b25a0d8 100644 --- a/pom.xml +++ b/pom.xml @@ -119,7 +119,7 @@ 2.2.0 2.4.0 - 2.43.0 + 2.44.2 NO_AUTOMATED_FORMATTING From 652e36bcac8f8a496e21593588215a0b0404c1c9 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 30 Jan 2025 17:02:28 +0100 Subject: [PATCH 08/23] Bump com.networknt:json-schema-validator from 1.5.4 to 1.5.5 (#3152) Bumps [com.networknt:json-schema-validator](https://github.com/networknt/json-schema-validator) from 1.5.4 to 1.5.5. - [Release notes](https://github.com/networknt/json-schema-validator/releases) - [Changelog](https://github.com/networknt/json-schema-validator/blob/master/CHANGELOG.md) - [Commits](https://github.com/networknt/json-schema-validator/compare/1.5.4...1.5.5) --- updated-dependencies: - dependency-name: com.networknt:json-schema-validator dependency-type: direct:development update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index e01b25a0d8..ab42939604 100644 --- a/pom.xml +++ b/pom.xml @@ -704,7 +704,7 @@ com.networknt json-schema-validator - 1.5.4 + 1.5.5 From d4816e71bd1c5eff3f6644368cf238ab1532152c Mon Sep 17 00:00:00 2001 From: alfresco-build <8039454+alfresco-build@users.noreply.github.com> Date: Thu, 30 Jan 2025 16:46:17 +0000 Subject: [PATCH 09/23] [maven-release-plugin][skip ci] prepare release 25.1.0.42 --- amps/ags/pom.xml | 2 +- amps/ags/rm-automation/pom.xml | 2 +- .../rm-automation/rm-automation-community-rest-api/pom.xml | 2 +- amps/ags/rm-community/pom.xml | 2 +- amps/ags/rm-community/rm-community-repo/pom.xml | 2 +- amps/ags/rm-community/rm-community-rest-api-explorer/pom.xml | 2 +- amps/pom.xml | 2 +- amps/share-services/pom.xml | 2 +- core/pom.xml | 2 +- data-model/pom.xml | 2 +- mmt/pom.xml | 2 +- packaging/distribution/pom.xml | 2 +- packaging/docker-alfresco/pom.xml | 2 +- packaging/pom.xml | 2 +- packaging/tests/pom.xml | 2 +- packaging/tests/tas-cmis/pom.xml | 2 +- packaging/tests/tas-email/pom.xml | 2 +- packaging/tests/tas-integration/pom.xml | 2 +- packaging/tests/tas-restapi/pom.xml | 2 +- packaging/tests/tas-webdav/pom.xml | 2 +- packaging/war/pom.xml | 2 +- pom.xml | 4 ++-- remote-api/pom.xml | 2 +- repository/pom.xml | 2 +- 24 files changed, 25 insertions(+), 25 deletions(-) diff --git a/amps/ags/pom.xml b/amps/ags/pom.xml index 5609edf72c..415b55d7f9 100644 --- a/amps/ags/pom.xml +++ b/amps/ags/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-community-repo-amps - 25.1.0.42-SNAPSHOT + 25.1.0.42 diff --git a/amps/ags/rm-automation/pom.xml b/amps/ags/rm-automation/pom.xml index 090dcf866d..80e8fb8e55 100644 --- a/amps/ags/rm-automation/pom.xml +++ b/amps/ags/rm-automation/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-governance-services-community-parent - 25.1.0.42-SNAPSHOT + 25.1.0.42 diff --git a/amps/ags/rm-automation/rm-automation-community-rest-api/pom.xml b/amps/ags/rm-automation/rm-automation-community-rest-api/pom.xml index ffb2116237..a1d215426a 100644 --- a/amps/ags/rm-automation/rm-automation-community-rest-api/pom.xml +++ b/amps/ags/rm-automation/rm-automation-community-rest-api/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-governance-services-automation-community-repo - 25.1.0.42-SNAPSHOT + 25.1.0.42 diff --git a/amps/ags/rm-community/pom.xml b/amps/ags/rm-community/pom.xml index 056cf2f90d..8557e8b3c8 100644 --- a/amps/ags/rm-community/pom.xml +++ b/amps/ags/rm-community/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-governance-services-community-parent - 25.1.0.42-SNAPSHOT + 25.1.0.42 diff --git a/amps/ags/rm-community/rm-community-repo/pom.xml b/amps/ags/rm-community/rm-community-repo/pom.xml index d323cbb4a3..2a7dea39b3 100644 --- a/amps/ags/rm-community/rm-community-repo/pom.xml +++ b/amps/ags/rm-community/rm-community-repo/pom.xml @@ -8,7 +8,7 @@ org.alfresco alfresco-governance-services-community-repo-parent - 25.1.0.42-SNAPSHOT + 25.1.0.42 diff --git a/amps/ags/rm-community/rm-community-rest-api-explorer/pom.xml b/amps/ags/rm-community/rm-community-rest-api-explorer/pom.xml index b78b104d10..acfc853b6a 100644 --- a/amps/ags/rm-community/rm-community-rest-api-explorer/pom.xml +++ b/amps/ags/rm-community/rm-community-rest-api-explorer/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-governance-services-community-repo-parent - 25.1.0.42-SNAPSHOT + 25.1.0.42 diff --git a/amps/pom.xml b/amps/pom.xml index b3a85c843a..7220251778 100644 --- a/amps/pom.xml +++ b/amps/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-community-repo - 25.1.0.42-SNAPSHOT + 25.1.0.42 diff --git a/amps/share-services/pom.xml b/amps/share-services/pom.xml index e3997e8a93..c9ddd8577c 100644 --- a/amps/share-services/pom.xml +++ b/amps/share-services/pom.xml @@ -8,7 +8,7 @@ org.alfresco alfresco-community-repo-amps - 25.1.0.42-SNAPSHOT + 25.1.0.42 diff --git a/core/pom.xml b/core/pom.xml index 67b1e48dbf..6362d5cdfc 100644 --- a/core/pom.xml +++ b/core/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-community-repo - 25.1.0.42-SNAPSHOT + 25.1.0.42 diff --git a/data-model/pom.xml b/data-model/pom.xml index 398ea8cd13..e0587cdbb8 100644 --- a/data-model/pom.xml +++ b/data-model/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-community-repo - 25.1.0.42-SNAPSHOT + 25.1.0.42 diff --git a/mmt/pom.xml b/mmt/pom.xml index e39eb8c9de..57fe33661a 100644 --- a/mmt/pom.xml +++ b/mmt/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-community-repo - 25.1.0.42-SNAPSHOT + 25.1.0.42 diff --git a/packaging/distribution/pom.xml b/packaging/distribution/pom.xml index 1471d5df75..740ca919b0 100644 --- a/packaging/distribution/pom.xml +++ b/packaging/distribution/pom.xml @@ -9,6 +9,6 @@ org.alfresco alfresco-community-repo-packaging - 25.1.0.42-SNAPSHOT + 25.1.0.42 diff --git a/packaging/docker-alfresco/pom.xml b/packaging/docker-alfresco/pom.xml index 31945a9626..ec98487d7c 100644 --- a/packaging/docker-alfresco/pom.xml +++ b/packaging/docker-alfresco/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-community-repo-packaging - 25.1.0.42-SNAPSHOT + 25.1.0.42 diff --git a/packaging/pom.xml b/packaging/pom.xml index c0b4fba625..ce1833b88d 100644 --- a/packaging/pom.xml +++ b/packaging/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-community-repo - 25.1.0.42-SNAPSHOT + 25.1.0.42 diff --git a/packaging/tests/pom.xml b/packaging/tests/pom.xml index 88ab402530..9a3e454d82 100644 --- a/packaging/tests/pom.xml +++ b/packaging/tests/pom.xml @@ -6,7 +6,7 @@ org.alfresco alfresco-community-repo-packaging - 25.1.0.42-SNAPSHOT + 25.1.0.42 diff --git a/packaging/tests/tas-cmis/pom.xml b/packaging/tests/tas-cmis/pom.xml index 5aa4a7f539..d36476a849 100644 --- a/packaging/tests/tas-cmis/pom.xml +++ b/packaging/tests/tas-cmis/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-community-repo-tests - 25.1.0.42-SNAPSHOT + 25.1.0.42 diff --git a/packaging/tests/tas-email/pom.xml b/packaging/tests/tas-email/pom.xml index 32d149eba0..9b5dab1783 100644 --- a/packaging/tests/tas-email/pom.xml +++ b/packaging/tests/tas-email/pom.xml @@ -9,7 +9,7 @@ org.alfresco alfresco-community-repo-tests - 25.1.0.42-SNAPSHOT + 25.1.0.42 diff --git a/packaging/tests/tas-integration/pom.xml b/packaging/tests/tas-integration/pom.xml index ab6358d46b..d9ebe3bca3 100644 --- a/packaging/tests/tas-integration/pom.xml +++ b/packaging/tests/tas-integration/pom.xml @@ -9,7 +9,7 @@ org.alfresco alfresco-community-repo-tests - 25.1.0.42-SNAPSHOT + 25.1.0.42 diff --git a/packaging/tests/tas-restapi/pom.xml b/packaging/tests/tas-restapi/pom.xml index 2b7c967749..2818538f7c 100644 --- a/packaging/tests/tas-restapi/pom.xml +++ b/packaging/tests/tas-restapi/pom.xml @@ -8,7 +8,7 @@ org.alfresco alfresco-community-repo-tests - 25.1.0.42-SNAPSHOT + 25.1.0.42 diff --git a/packaging/tests/tas-webdav/pom.xml b/packaging/tests/tas-webdav/pom.xml index a28e0416fa..78894772fc 100644 --- a/packaging/tests/tas-webdav/pom.xml +++ b/packaging/tests/tas-webdav/pom.xml @@ -9,7 +9,7 @@ org.alfresco alfresco-community-repo-tests - 25.1.0.42-SNAPSHOT + 25.1.0.42 diff --git a/packaging/war/pom.xml b/packaging/war/pom.xml index c1bc7c005d..6fde847689 100644 --- a/packaging/war/pom.xml +++ b/packaging/war/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-community-repo-packaging - 25.1.0.42-SNAPSHOT + 25.1.0.42 diff --git a/pom.xml b/pom.xml index ab42939604..7ce565434c 100644 --- a/pom.xml +++ b/pom.xml @@ -2,7 +2,7 @@ 4.0.0 alfresco-community-repo - 25.1.0.42-SNAPSHOT + 25.1.0.42 pom Alfresco Community Repo Parent @@ -155,7 +155,7 @@ scm:git:https://github.com/Alfresco/alfresco-community-repo.git scm:git:https://github.com/Alfresco/alfresco-community-repo.git https://github.com/Alfresco/alfresco-community-repo - HEAD + 25.1.0.42 diff --git a/remote-api/pom.xml b/remote-api/pom.xml index 50e49e1bd7..05eadf8817 100644 --- a/remote-api/pom.xml +++ b/remote-api/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-community-repo - 25.1.0.42-SNAPSHOT + 25.1.0.42 diff --git a/repository/pom.xml b/repository/pom.xml index 9bfb1f3b25..f97ec17270 100644 --- a/repository/pom.xml +++ b/repository/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-community-repo - 25.1.0.42-SNAPSHOT + 25.1.0.42 From 6849da5d482bbf55934dfaec2b90530167925717 Mon Sep 17 00:00:00 2001 From: alfresco-build <8039454+alfresco-build@users.noreply.github.com> Date: Thu, 30 Jan 2025 16:46:20 +0000 Subject: [PATCH 10/23] [maven-release-plugin][skip ci] prepare for next development iteration --- amps/ags/pom.xml | 2 +- amps/ags/rm-automation/pom.xml | 2 +- .../rm-automation/rm-automation-community-rest-api/pom.xml | 2 +- amps/ags/rm-community/pom.xml | 2 +- amps/ags/rm-community/rm-community-repo/pom.xml | 2 +- amps/ags/rm-community/rm-community-rest-api-explorer/pom.xml | 2 +- amps/pom.xml | 2 +- amps/share-services/pom.xml | 2 +- core/pom.xml | 2 +- data-model/pom.xml | 2 +- mmt/pom.xml | 2 +- packaging/distribution/pom.xml | 2 +- packaging/docker-alfresco/pom.xml | 2 +- packaging/pom.xml | 2 +- packaging/tests/pom.xml | 2 +- packaging/tests/tas-cmis/pom.xml | 2 +- packaging/tests/tas-email/pom.xml | 2 +- packaging/tests/tas-integration/pom.xml | 2 +- packaging/tests/tas-restapi/pom.xml | 2 +- packaging/tests/tas-webdav/pom.xml | 2 +- packaging/war/pom.xml | 2 +- pom.xml | 4 ++-- remote-api/pom.xml | 2 +- repository/pom.xml | 2 +- 24 files changed, 25 insertions(+), 25 deletions(-) diff --git a/amps/ags/pom.xml b/amps/ags/pom.xml index 415b55d7f9..56ddaad3c7 100644 --- a/amps/ags/pom.xml +++ b/amps/ags/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-community-repo-amps - 25.1.0.42 + 25.1.0.43-SNAPSHOT diff --git a/amps/ags/rm-automation/pom.xml b/amps/ags/rm-automation/pom.xml index 80e8fb8e55..f68fec6642 100644 --- a/amps/ags/rm-automation/pom.xml +++ b/amps/ags/rm-automation/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-governance-services-community-parent - 25.1.0.42 + 25.1.0.43-SNAPSHOT diff --git a/amps/ags/rm-automation/rm-automation-community-rest-api/pom.xml b/amps/ags/rm-automation/rm-automation-community-rest-api/pom.xml index a1d215426a..81401fbd99 100644 --- a/amps/ags/rm-automation/rm-automation-community-rest-api/pom.xml +++ b/amps/ags/rm-automation/rm-automation-community-rest-api/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-governance-services-automation-community-repo - 25.1.0.42 + 25.1.0.43-SNAPSHOT diff --git a/amps/ags/rm-community/pom.xml b/amps/ags/rm-community/pom.xml index 8557e8b3c8..d5f83495af 100644 --- a/amps/ags/rm-community/pom.xml +++ b/amps/ags/rm-community/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-governance-services-community-parent - 25.1.0.42 + 25.1.0.43-SNAPSHOT diff --git a/amps/ags/rm-community/rm-community-repo/pom.xml b/amps/ags/rm-community/rm-community-repo/pom.xml index 2a7dea39b3..2af8fe29a3 100644 --- a/amps/ags/rm-community/rm-community-repo/pom.xml +++ b/amps/ags/rm-community/rm-community-repo/pom.xml @@ -8,7 +8,7 @@ org.alfresco alfresco-governance-services-community-repo-parent - 25.1.0.42 + 25.1.0.43-SNAPSHOT diff --git a/amps/ags/rm-community/rm-community-rest-api-explorer/pom.xml b/amps/ags/rm-community/rm-community-rest-api-explorer/pom.xml index acfc853b6a..38966318e3 100644 --- a/amps/ags/rm-community/rm-community-rest-api-explorer/pom.xml +++ b/amps/ags/rm-community/rm-community-rest-api-explorer/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-governance-services-community-repo-parent - 25.1.0.42 + 25.1.0.43-SNAPSHOT diff --git a/amps/pom.xml b/amps/pom.xml index 7220251778..10b3fcbdaa 100644 --- a/amps/pom.xml +++ b/amps/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-community-repo - 25.1.0.42 + 25.1.0.43-SNAPSHOT diff --git a/amps/share-services/pom.xml b/amps/share-services/pom.xml index c9ddd8577c..cff34aaeea 100644 --- a/amps/share-services/pom.xml +++ b/amps/share-services/pom.xml @@ -8,7 +8,7 @@ org.alfresco alfresco-community-repo-amps - 25.1.0.42 + 25.1.0.43-SNAPSHOT diff --git a/core/pom.xml b/core/pom.xml index 6362d5cdfc..7e4ed2640f 100644 --- a/core/pom.xml +++ b/core/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-community-repo - 25.1.0.42 + 25.1.0.43-SNAPSHOT diff --git a/data-model/pom.xml b/data-model/pom.xml index e0587cdbb8..ea42923612 100644 --- a/data-model/pom.xml +++ b/data-model/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-community-repo - 25.1.0.42 + 25.1.0.43-SNAPSHOT diff --git a/mmt/pom.xml b/mmt/pom.xml index 57fe33661a..d9bb5ed212 100644 --- a/mmt/pom.xml +++ b/mmt/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-community-repo - 25.1.0.42 + 25.1.0.43-SNAPSHOT diff --git a/packaging/distribution/pom.xml b/packaging/distribution/pom.xml index 740ca919b0..9f36b708c5 100644 --- a/packaging/distribution/pom.xml +++ b/packaging/distribution/pom.xml @@ -9,6 +9,6 @@ org.alfresco alfresco-community-repo-packaging - 25.1.0.42 + 25.1.0.43-SNAPSHOT diff --git a/packaging/docker-alfresco/pom.xml b/packaging/docker-alfresco/pom.xml index ec98487d7c..3ba3e35673 100644 --- a/packaging/docker-alfresco/pom.xml +++ b/packaging/docker-alfresco/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-community-repo-packaging - 25.1.0.42 + 25.1.0.43-SNAPSHOT diff --git a/packaging/pom.xml b/packaging/pom.xml index ce1833b88d..4325d7e5b9 100644 --- a/packaging/pom.xml +++ b/packaging/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-community-repo - 25.1.0.42 + 25.1.0.43-SNAPSHOT diff --git a/packaging/tests/pom.xml b/packaging/tests/pom.xml index 9a3e454d82..10f8bec8aa 100644 --- a/packaging/tests/pom.xml +++ b/packaging/tests/pom.xml @@ -6,7 +6,7 @@ org.alfresco alfresco-community-repo-packaging - 25.1.0.42 + 25.1.0.43-SNAPSHOT diff --git a/packaging/tests/tas-cmis/pom.xml b/packaging/tests/tas-cmis/pom.xml index d36476a849..1bfc3265f1 100644 --- a/packaging/tests/tas-cmis/pom.xml +++ b/packaging/tests/tas-cmis/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-community-repo-tests - 25.1.0.42 + 25.1.0.43-SNAPSHOT diff --git a/packaging/tests/tas-email/pom.xml b/packaging/tests/tas-email/pom.xml index 9b5dab1783..ff18c9b8c0 100644 --- a/packaging/tests/tas-email/pom.xml +++ b/packaging/tests/tas-email/pom.xml @@ -9,7 +9,7 @@ org.alfresco alfresco-community-repo-tests - 25.1.0.42 + 25.1.0.43-SNAPSHOT diff --git a/packaging/tests/tas-integration/pom.xml b/packaging/tests/tas-integration/pom.xml index d9ebe3bca3..3a6be7a6e1 100644 --- a/packaging/tests/tas-integration/pom.xml +++ b/packaging/tests/tas-integration/pom.xml @@ -9,7 +9,7 @@ org.alfresco alfresco-community-repo-tests - 25.1.0.42 + 25.1.0.43-SNAPSHOT diff --git a/packaging/tests/tas-restapi/pom.xml b/packaging/tests/tas-restapi/pom.xml index 2818538f7c..cda4ccc1fe 100644 --- a/packaging/tests/tas-restapi/pom.xml +++ b/packaging/tests/tas-restapi/pom.xml @@ -8,7 +8,7 @@ org.alfresco alfresco-community-repo-tests - 25.1.0.42 + 25.1.0.43-SNAPSHOT diff --git a/packaging/tests/tas-webdav/pom.xml b/packaging/tests/tas-webdav/pom.xml index 78894772fc..cdf81f5dde 100644 --- a/packaging/tests/tas-webdav/pom.xml +++ b/packaging/tests/tas-webdav/pom.xml @@ -9,7 +9,7 @@ org.alfresco alfresco-community-repo-tests - 25.1.0.42 + 25.1.0.43-SNAPSHOT diff --git a/packaging/war/pom.xml b/packaging/war/pom.xml index 6fde847689..848853307a 100644 --- a/packaging/war/pom.xml +++ b/packaging/war/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-community-repo-packaging - 25.1.0.42 + 25.1.0.43-SNAPSHOT diff --git a/pom.xml b/pom.xml index 7ce565434c..4cc161fc35 100644 --- a/pom.xml +++ b/pom.xml @@ -2,7 +2,7 @@ 4.0.0 alfresco-community-repo - 25.1.0.42 + 25.1.0.43-SNAPSHOT pom Alfresco Community Repo Parent @@ -155,7 +155,7 @@ scm:git:https://github.com/Alfresco/alfresco-community-repo.git scm:git:https://github.com/Alfresco/alfresco-community-repo.git https://github.com/Alfresco/alfresco-community-repo - 25.1.0.42 + HEAD diff --git a/remote-api/pom.xml b/remote-api/pom.xml index 05eadf8817..bb5c2f4645 100644 --- a/remote-api/pom.xml +++ b/remote-api/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-community-repo - 25.1.0.42 + 25.1.0.43-SNAPSHOT diff --git a/repository/pom.xml b/repository/pom.xml index f97ec17270..0ef5607327 100644 --- a/repository/pom.xml +++ b/repository/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-community-repo - 25.1.0.42 + 25.1.0.43-SNAPSHOT From f00af42eee954ffc828387f558634d8f69672873 Mon Sep 17 00:00:00 2001 From: Alfresco CI User Date: Sun, 2 Feb 2025 00:04:26 +0000 Subject: [PATCH 11/23] [force] Force release for 2025-02-02. From c9f2b1f9c7c93aad2818fee14ae80a89e6f92293 Mon Sep 17 00:00:00 2001 From: alfresco-build <8039454+alfresco-build@users.noreply.github.com> Date: Sun, 2 Feb 2025 00:07:33 +0000 Subject: [PATCH 12/23] [maven-release-plugin][skip ci] prepare release 25.1.0.43 --- amps/ags/pom.xml | 2 +- amps/ags/rm-automation/pom.xml | 2 +- .../rm-automation/rm-automation-community-rest-api/pom.xml | 2 +- amps/ags/rm-community/pom.xml | 2 +- amps/ags/rm-community/rm-community-repo/pom.xml | 2 +- amps/ags/rm-community/rm-community-rest-api-explorer/pom.xml | 2 +- amps/pom.xml | 2 +- amps/share-services/pom.xml | 2 +- core/pom.xml | 2 +- data-model/pom.xml | 2 +- mmt/pom.xml | 2 +- packaging/distribution/pom.xml | 2 +- packaging/docker-alfresco/pom.xml | 2 +- packaging/pom.xml | 2 +- packaging/tests/pom.xml | 2 +- packaging/tests/tas-cmis/pom.xml | 2 +- packaging/tests/tas-email/pom.xml | 2 +- packaging/tests/tas-integration/pom.xml | 2 +- packaging/tests/tas-restapi/pom.xml | 2 +- packaging/tests/tas-webdav/pom.xml | 2 +- packaging/war/pom.xml | 2 +- pom.xml | 4 ++-- remote-api/pom.xml | 2 +- repository/pom.xml | 2 +- 24 files changed, 25 insertions(+), 25 deletions(-) diff --git a/amps/ags/pom.xml b/amps/ags/pom.xml index 56ddaad3c7..5a45290c9c 100644 --- a/amps/ags/pom.xml +++ b/amps/ags/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-community-repo-amps - 25.1.0.43-SNAPSHOT + 25.1.0.43 diff --git a/amps/ags/rm-automation/pom.xml b/amps/ags/rm-automation/pom.xml index f68fec6642..d7aa0ad710 100644 --- a/amps/ags/rm-automation/pom.xml +++ b/amps/ags/rm-automation/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-governance-services-community-parent - 25.1.0.43-SNAPSHOT + 25.1.0.43 diff --git a/amps/ags/rm-automation/rm-automation-community-rest-api/pom.xml b/amps/ags/rm-automation/rm-automation-community-rest-api/pom.xml index 81401fbd99..ad716c728d 100644 --- a/amps/ags/rm-automation/rm-automation-community-rest-api/pom.xml +++ b/amps/ags/rm-automation/rm-automation-community-rest-api/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-governance-services-automation-community-repo - 25.1.0.43-SNAPSHOT + 25.1.0.43 diff --git a/amps/ags/rm-community/pom.xml b/amps/ags/rm-community/pom.xml index d5f83495af..cbffea4a60 100644 --- a/amps/ags/rm-community/pom.xml +++ b/amps/ags/rm-community/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-governance-services-community-parent - 25.1.0.43-SNAPSHOT + 25.1.0.43 diff --git a/amps/ags/rm-community/rm-community-repo/pom.xml b/amps/ags/rm-community/rm-community-repo/pom.xml index 2af8fe29a3..9786f60a40 100644 --- a/amps/ags/rm-community/rm-community-repo/pom.xml +++ b/amps/ags/rm-community/rm-community-repo/pom.xml @@ -8,7 +8,7 @@ org.alfresco alfresco-governance-services-community-repo-parent - 25.1.0.43-SNAPSHOT + 25.1.0.43 diff --git a/amps/ags/rm-community/rm-community-rest-api-explorer/pom.xml b/amps/ags/rm-community/rm-community-rest-api-explorer/pom.xml index 38966318e3..5e2822d2df 100644 --- a/amps/ags/rm-community/rm-community-rest-api-explorer/pom.xml +++ b/amps/ags/rm-community/rm-community-rest-api-explorer/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-governance-services-community-repo-parent - 25.1.0.43-SNAPSHOT + 25.1.0.43 diff --git a/amps/pom.xml b/amps/pom.xml index 10b3fcbdaa..2af5f438ee 100644 --- a/amps/pom.xml +++ b/amps/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-community-repo - 25.1.0.43-SNAPSHOT + 25.1.0.43 diff --git a/amps/share-services/pom.xml b/amps/share-services/pom.xml index cff34aaeea..0efbf3e620 100644 --- a/amps/share-services/pom.xml +++ b/amps/share-services/pom.xml @@ -8,7 +8,7 @@ org.alfresco alfresco-community-repo-amps - 25.1.0.43-SNAPSHOT + 25.1.0.43 diff --git a/core/pom.xml b/core/pom.xml index 7e4ed2640f..3169ffe15f 100644 --- a/core/pom.xml +++ b/core/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-community-repo - 25.1.0.43-SNAPSHOT + 25.1.0.43 diff --git a/data-model/pom.xml b/data-model/pom.xml index ea42923612..4a79a74815 100644 --- a/data-model/pom.xml +++ b/data-model/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-community-repo - 25.1.0.43-SNAPSHOT + 25.1.0.43 diff --git a/mmt/pom.xml b/mmt/pom.xml index d9bb5ed212..5aa80f614a 100644 --- a/mmt/pom.xml +++ b/mmt/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-community-repo - 25.1.0.43-SNAPSHOT + 25.1.0.43 diff --git a/packaging/distribution/pom.xml b/packaging/distribution/pom.xml index 9f36b708c5..c737fcb05a 100644 --- a/packaging/distribution/pom.xml +++ b/packaging/distribution/pom.xml @@ -9,6 +9,6 @@ org.alfresco alfresco-community-repo-packaging - 25.1.0.43-SNAPSHOT + 25.1.0.43 diff --git a/packaging/docker-alfresco/pom.xml b/packaging/docker-alfresco/pom.xml index 3ba3e35673..9ac5fc7b2b 100644 --- a/packaging/docker-alfresco/pom.xml +++ b/packaging/docker-alfresco/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-community-repo-packaging - 25.1.0.43-SNAPSHOT + 25.1.0.43 diff --git a/packaging/pom.xml b/packaging/pom.xml index 4325d7e5b9..cdcc286bea 100644 --- a/packaging/pom.xml +++ b/packaging/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-community-repo - 25.1.0.43-SNAPSHOT + 25.1.0.43 diff --git a/packaging/tests/pom.xml b/packaging/tests/pom.xml index 10f8bec8aa..bfb2f9e96d 100644 --- a/packaging/tests/pom.xml +++ b/packaging/tests/pom.xml @@ -6,7 +6,7 @@ org.alfresco alfresco-community-repo-packaging - 25.1.0.43-SNAPSHOT + 25.1.0.43 diff --git a/packaging/tests/tas-cmis/pom.xml b/packaging/tests/tas-cmis/pom.xml index 1bfc3265f1..f095f491cd 100644 --- a/packaging/tests/tas-cmis/pom.xml +++ b/packaging/tests/tas-cmis/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-community-repo-tests - 25.1.0.43-SNAPSHOT + 25.1.0.43 diff --git a/packaging/tests/tas-email/pom.xml b/packaging/tests/tas-email/pom.xml index ff18c9b8c0..989d68c273 100644 --- a/packaging/tests/tas-email/pom.xml +++ b/packaging/tests/tas-email/pom.xml @@ -9,7 +9,7 @@ org.alfresco alfresco-community-repo-tests - 25.1.0.43-SNAPSHOT + 25.1.0.43 diff --git a/packaging/tests/tas-integration/pom.xml b/packaging/tests/tas-integration/pom.xml index 3a6be7a6e1..9aad8edbec 100644 --- a/packaging/tests/tas-integration/pom.xml +++ b/packaging/tests/tas-integration/pom.xml @@ -9,7 +9,7 @@ org.alfresco alfresco-community-repo-tests - 25.1.0.43-SNAPSHOT + 25.1.0.43 diff --git a/packaging/tests/tas-restapi/pom.xml b/packaging/tests/tas-restapi/pom.xml index cda4ccc1fe..0c59e1c2f7 100644 --- a/packaging/tests/tas-restapi/pom.xml +++ b/packaging/tests/tas-restapi/pom.xml @@ -8,7 +8,7 @@ org.alfresco alfresco-community-repo-tests - 25.1.0.43-SNAPSHOT + 25.1.0.43 diff --git a/packaging/tests/tas-webdav/pom.xml b/packaging/tests/tas-webdav/pom.xml index cdf81f5dde..8f2d6484ee 100644 --- a/packaging/tests/tas-webdav/pom.xml +++ b/packaging/tests/tas-webdav/pom.xml @@ -9,7 +9,7 @@ org.alfresco alfresco-community-repo-tests - 25.1.0.43-SNAPSHOT + 25.1.0.43 diff --git a/packaging/war/pom.xml b/packaging/war/pom.xml index 848853307a..c500846502 100644 --- a/packaging/war/pom.xml +++ b/packaging/war/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-community-repo-packaging - 25.1.0.43-SNAPSHOT + 25.1.0.43 diff --git a/pom.xml b/pom.xml index 4cc161fc35..adb95d4a07 100644 --- a/pom.xml +++ b/pom.xml @@ -2,7 +2,7 @@ 4.0.0 alfresco-community-repo - 25.1.0.43-SNAPSHOT + 25.1.0.43 pom Alfresco Community Repo Parent @@ -155,7 +155,7 @@ scm:git:https://github.com/Alfresco/alfresco-community-repo.git scm:git:https://github.com/Alfresco/alfresco-community-repo.git https://github.com/Alfresco/alfresco-community-repo - HEAD + 25.1.0.43 diff --git a/remote-api/pom.xml b/remote-api/pom.xml index bb5c2f4645..cb15229dab 100644 --- a/remote-api/pom.xml +++ b/remote-api/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-community-repo - 25.1.0.43-SNAPSHOT + 25.1.0.43 diff --git a/repository/pom.xml b/repository/pom.xml index 0ef5607327..08dc4d0e6a 100644 --- a/repository/pom.xml +++ b/repository/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-community-repo - 25.1.0.43-SNAPSHOT + 25.1.0.43 From 1629daa28edb66a1d64a6c0b2a0380a3b1a48d9c Mon Sep 17 00:00:00 2001 From: alfresco-build <8039454+alfresco-build@users.noreply.github.com> Date: Sun, 2 Feb 2025 00:07:35 +0000 Subject: [PATCH 13/23] [maven-release-plugin][skip ci] prepare for next development iteration --- amps/ags/pom.xml | 2 +- amps/ags/rm-automation/pom.xml | 2 +- .../rm-automation/rm-automation-community-rest-api/pom.xml | 2 +- amps/ags/rm-community/pom.xml | 2 +- amps/ags/rm-community/rm-community-repo/pom.xml | 2 +- amps/ags/rm-community/rm-community-rest-api-explorer/pom.xml | 2 +- amps/pom.xml | 2 +- amps/share-services/pom.xml | 2 +- core/pom.xml | 2 +- data-model/pom.xml | 2 +- mmt/pom.xml | 2 +- packaging/distribution/pom.xml | 2 +- packaging/docker-alfresco/pom.xml | 2 +- packaging/pom.xml | 2 +- packaging/tests/pom.xml | 2 +- packaging/tests/tas-cmis/pom.xml | 2 +- packaging/tests/tas-email/pom.xml | 2 +- packaging/tests/tas-integration/pom.xml | 2 +- packaging/tests/tas-restapi/pom.xml | 2 +- packaging/tests/tas-webdav/pom.xml | 2 +- packaging/war/pom.xml | 2 +- pom.xml | 4 ++-- remote-api/pom.xml | 2 +- repository/pom.xml | 2 +- 24 files changed, 25 insertions(+), 25 deletions(-) diff --git a/amps/ags/pom.xml b/amps/ags/pom.xml index 5a45290c9c..5f3ae8ff65 100644 --- a/amps/ags/pom.xml +++ b/amps/ags/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-community-repo-amps - 25.1.0.43 + 25.1.0.44-SNAPSHOT diff --git a/amps/ags/rm-automation/pom.xml b/amps/ags/rm-automation/pom.xml index d7aa0ad710..4199aa6e41 100644 --- a/amps/ags/rm-automation/pom.xml +++ b/amps/ags/rm-automation/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-governance-services-community-parent - 25.1.0.43 + 25.1.0.44-SNAPSHOT diff --git a/amps/ags/rm-automation/rm-automation-community-rest-api/pom.xml b/amps/ags/rm-automation/rm-automation-community-rest-api/pom.xml index ad716c728d..a02f4861b1 100644 --- a/amps/ags/rm-automation/rm-automation-community-rest-api/pom.xml +++ b/amps/ags/rm-automation/rm-automation-community-rest-api/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-governance-services-automation-community-repo - 25.1.0.43 + 25.1.0.44-SNAPSHOT diff --git a/amps/ags/rm-community/pom.xml b/amps/ags/rm-community/pom.xml index cbffea4a60..1f1560f623 100644 --- a/amps/ags/rm-community/pom.xml +++ b/amps/ags/rm-community/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-governance-services-community-parent - 25.1.0.43 + 25.1.0.44-SNAPSHOT diff --git a/amps/ags/rm-community/rm-community-repo/pom.xml b/amps/ags/rm-community/rm-community-repo/pom.xml index 9786f60a40..97212dded6 100644 --- a/amps/ags/rm-community/rm-community-repo/pom.xml +++ b/amps/ags/rm-community/rm-community-repo/pom.xml @@ -8,7 +8,7 @@ org.alfresco alfresco-governance-services-community-repo-parent - 25.1.0.43 + 25.1.0.44-SNAPSHOT diff --git a/amps/ags/rm-community/rm-community-rest-api-explorer/pom.xml b/amps/ags/rm-community/rm-community-rest-api-explorer/pom.xml index 5e2822d2df..0b8101e666 100644 --- a/amps/ags/rm-community/rm-community-rest-api-explorer/pom.xml +++ b/amps/ags/rm-community/rm-community-rest-api-explorer/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-governance-services-community-repo-parent - 25.1.0.43 + 25.1.0.44-SNAPSHOT diff --git a/amps/pom.xml b/amps/pom.xml index 2af5f438ee..ae917cfbe7 100644 --- a/amps/pom.xml +++ b/amps/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-community-repo - 25.1.0.43 + 25.1.0.44-SNAPSHOT diff --git a/amps/share-services/pom.xml b/amps/share-services/pom.xml index 0efbf3e620..32e4f7eff4 100644 --- a/amps/share-services/pom.xml +++ b/amps/share-services/pom.xml @@ -8,7 +8,7 @@ org.alfresco alfresco-community-repo-amps - 25.1.0.43 + 25.1.0.44-SNAPSHOT diff --git a/core/pom.xml b/core/pom.xml index 3169ffe15f..bce87952fa 100644 --- a/core/pom.xml +++ b/core/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-community-repo - 25.1.0.43 + 25.1.0.44-SNAPSHOT diff --git a/data-model/pom.xml b/data-model/pom.xml index 4a79a74815..a3f7d85469 100644 --- a/data-model/pom.xml +++ b/data-model/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-community-repo - 25.1.0.43 + 25.1.0.44-SNAPSHOT diff --git a/mmt/pom.xml b/mmt/pom.xml index 5aa80f614a..a7fd276592 100644 --- a/mmt/pom.xml +++ b/mmt/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-community-repo - 25.1.0.43 + 25.1.0.44-SNAPSHOT diff --git a/packaging/distribution/pom.xml b/packaging/distribution/pom.xml index c737fcb05a..78c6c5e7b1 100644 --- a/packaging/distribution/pom.xml +++ b/packaging/distribution/pom.xml @@ -9,6 +9,6 @@ org.alfresco alfresco-community-repo-packaging - 25.1.0.43 + 25.1.0.44-SNAPSHOT diff --git a/packaging/docker-alfresco/pom.xml b/packaging/docker-alfresco/pom.xml index 9ac5fc7b2b..02a22b8914 100644 --- a/packaging/docker-alfresco/pom.xml +++ b/packaging/docker-alfresco/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-community-repo-packaging - 25.1.0.43 + 25.1.0.44-SNAPSHOT diff --git a/packaging/pom.xml b/packaging/pom.xml index cdcc286bea..59743bd28d 100644 --- a/packaging/pom.xml +++ b/packaging/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-community-repo - 25.1.0.43 + 25.1.0.44-SNAPSHOT diff --git a/packaging/tests/pom.xml b/packaging/tests/pom.xml index bfb2f9e96d..5c8c6bd0c7 100644 --- a/packaging/tests/pom.xml +++ b/packaging/tests/pom.xml @@ -6,7 +6,7 @@ org.alfresco alfresco-community-repo-packaging - 25.1.0.43 + 25.1.0.44-SNAPSHOT diff --git a/packaging/tests/tas-cmis/pom.xml b/packaging/tests/tas-cmis/pom.xml index f095f491cd..713c17cfc0 100644 --- a/packaging/tests/tas-cmis/pom.xml +++ b/packaging/tests/tas-cmis/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-community-repo-tests - 25.1.0.43 + 25.1.0.44-SNAPSHOT diff --git a/packaging/tests/tas-email/pom.xml b/packaging/tests/tas-email/pom.xml index 989d68c273..cf53f9e752 100644 --- a/packaging/tests/tas-email/pom.xml +++ b/packaging/tests/tas-email/pom.xml @@ -9,7 +9,7 @@ org.alfresco alfresco-community-repo-tests - 25.1.0.43 + 25.1.0.44-SNAPSHOT diff --git a/packaging/tests/tas-integration/pom.xml b/packaging/tests/tas-integration/pom.xml index 9aad8edbec..5d7086667e 100644 --- a/packaging/tests/tas-integration/pom.xml +++ b/packaging/tests/tas-integration/pom.xml @@ -9,7 +9,7 @@ org.alfresco alfresco-community-repo-tests - 25.1.0.43 + 25.1.0.44-SNAPSHOT diff --git a/packaging/tests/tas-restapi/pom.xml b/packaging/tests/tas-restapi/pom.xml index 0c59e1c2f7..8226640764 100644 --- a/packaging/tests/tas-restapi/pom.xml +++ b/packaging/tests/tas-restapi/pom.xml @@ -8,7 +8,7 @@ org.alfresco alfresco-community-repo-tests - 25.1.0.43 + 25.1.0.44-SNAPSHOT diff --git a/packaging/tests/tas-webdav/pom.xml b/packaging/tests/tas-webdav/pom.xml index 8f2d6484ee..9496451267 100644 --- a/packaging/tests/tas-webdav/pom.xml +++ b/packaging/tests/tas-webdav/pom.xml @@ -9,7 +9,7 @@ org.alfresco alfresco-community-repo-tests - 25.1.0.43 + 25.1.0.44-SNAPSHOT diff --git a/packaging/war/pom.xml b/packaging/war/pom.xml index c500846502..c1a93f8cb3 100644 --- a/packaging/war/pom.xml +++ b/packaging/war/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-community-repo-packaging - 25.1.0.43 + 25.1.0.44-SNAPSHOT diff --git a/pom.xml b/pom.xml index adb95d4a07..a528197868 100644 --- a/pom.xml +++ b/pom.xml @@ -2,7 +2,7 @@ 4.0.0 alfresco-community-repo - 25.1.0.43 + 25.1.0.44-SNAPSHOT pom Alfresco Community Repo Parent @@ -155,7 +155,7 @@ scm:git:https://github.com/Alfresco/alfresco-community-repo.git scm:git:https://github.com/Alfresco/alfresco-community-repo.git https://github.com/Alfresco/alfresco-community-repo - 25.1.0.43 + HEAD diff --git a/remote-api/pom.xml b/remote-api/pom.xml index cb15229dab..c1ba538ca3 100644 --- a/remote-api/pom.xml +++ b/remote-api/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-community-repo - 25.1.0.43 + 25.1.0.44-SNAPSHOT diff --git a/repository/pom.xml b/repository/pom.xml index 08dc4d0e6a..7250919a5a 100644 --- a/repository/pom.xml +++ b/repository/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-community-repo - 25.1.0.43 + 25.1.0.44-SNAPSHOT From c4b9ee4284cd9933e62b01ec79f2a66d7d08df27 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 3 Feb 2025 09:02:46 +0100 Subject: [PATCH 14/23] Bump dependency.cxf.version from 4.0.5 to 4.1.0 (#3093) Bumps `dependency.cxf.version` from 4.0.5 to 4.1.0. Updates `org.apache.cxf:cxf-rt-frontend-jaxws` from 4.0.5 to 4.1.0 Updates `org.apache.cxf:cxf-rt-frontend-jaxrs` from 4.0.5 to 4.1.0 Updates `org.apache.cxf:cxf-rt-rs-client` from 4.0.5 to 4.1.0 Updates `org.apache.cxf:cxf-rt-transports-http` from 4.0.5 to 4.1.0 Updates `org.apache.cxf:cxf-rt-ws-policy` from 4.0.5 to 4.1.0 --- updated-dependencies: - dependency-name: org.apache.cxf:cxf-rt-frontend-jaxws dependency-type: direct:production update-type: version-update:semver-minor - dependency-name: org.apache.cxf:cxf-rt-frontend-jaxrs dependency-type: direct:production update-type: version-update:semver-minor - dependency-name: org.apache.cxf:cxf-rt-rs-client dependency-type: direct:production update-type: version-update:semver-minor - dependency-name: org.apache.cxf:cxf-rt-transports-http dependency-type: direct:production update-type: version-update:semver-minor - dependency-name: org.apache.cxf:cxf-rt-ws-policy dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index a528197868..ec99faadf2 100644 --- a/pom.xml +++ b/pom.xml @@ -61,7 +61,7 @@ 6.3.4 3.5.3 2.17.2 - 4.0.5 + 4.1.0 1.0.0-jakarta-1 10.0 1.79 From 70387a8a198658b3f6b4b1c794935bfcaa87db48 Mon Sep 17 00:00:00 2001 From: alfresco-build <8039454+alfresco-build@users.noreply.github.com> Date: Mon, 3 Feb 2025 08:48:09 +0000 Subject: [PATCH 15/23] [maven-release-plugin][skip ci] prepare release 25.1.0.44 --- amps/ags/pom.xml | 2 +- amps/ags/rm-automation/pom.xml | 2 +- .../rm-automation/rm-automation-community-rest-api/pom.xml | 2 +- amps/ags/rm-community/pom.xml | 2 +- amps/ags/rm-community/rm-community-repo/pom.xml | 2 +- amps/ags/rm-community/rm-community-rest-api-explorer/pom.xml | 2 +- amps/pom.xml | 2 +- amps/share-services/pom.xml | 2 +- core/pom.xml | 2 +- data-model/pom.xml | 2 +- mmt/pom.xml | 2 +- packaging/distribution/pom.xml | 2 +- packaging/docker-alfresco/pom.xml | 2 +- packaging/pom.xml | 2 +- packaging/tests/pom.xml | 2 +- packaging/tests/tas-cmis/pom.xml | 2 +- packaging/tests/tas-email/pom.xml | 2 +- packaging/tests/tas-integration/pom.xml | 2 +- packaging/tests/tas-restapi/pom.xml | 2 +- packaging/tests/tas-webdav/pom.xml | 2 +- packaging/war/pom.xml | 2 +- pom.xml | 4 ++-- remote-api/pom.xml | 2 +- repository/pom.xml | 2 +- 24 files changed, 25 insertions(+), 25 deletions(-) diff --git a/amps/ags/pom.xml b/amps/ags/pom.xml index 5f3ae8ff65..43a4232c42 100644 --- a/amps/ags/pom.xml +++ b/amps/ags/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-community-repo-amps - 25.1.0.44-SNAPSHOT + 25.1.0.44 diff --git a/amps/ags/rm-automation/pom.xml b/amps/ags/rm-automation/pom.xml index 4199aa6e41..7ca67458dc 100644 --- a/amps/ags/rm-automation/pom.xml +++ b/amps/ags/rm-automation/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-governance-services-community-parent - 25.1.0.44-SNAPSHOT + 25.1.0.44 diff --git a/amps/ags/rm-automation/rm-automation-community-rest-api/pom.xml b/amps/ags/rm-automation/rm-automation-community-rest-api/pom.xml index a02f4861b1..3196ef2d92 100644 --- a/amps/ags/rm-automation/rm-automation-community-rest-api/pom.xml +++ b/amps/ags/rm-automation/rm-automation-community-rest-api/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-governance-services-automation-community-repo - 25.1.0.44-SNAPSHOT + 25.1.0.44 diff --git a/amps/ags/rm-community/pom.xml b/amps/ags/rm-community/pom.xml index 1f1560f623..7403859a15 100644 --- a/amps/ags/rm-community/pom.xml +++ b/amps/ags/rm-community/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-governance-services-community-parent - 25.1.0.44-SNAPSHOT + 25.1.0.44 diff --git a/amps/ags/rm-community/rm-community-repo/pom.xml b/amps/ags/rm-community/rm-community-repo/pom.xml index 97212dded6..ef7f569f03 100644 --- a/amps/ags/rm-community/rm-community-repo/pom.xml +++ b/amps/ags/rm-community/rm-community-repo/pom.xml @@ -8,7 +8,7 @@ org.alfresco alfresco-governance-services-community-repo-parent - 25.1.0.44-SNAPSHOT + 25.1.0.44 diff --git a/amps/ags/rm-community/rm-community-rest-api-explorer/pom.xml b/amps/ags/rm-community/rm-community-rest-api-explorer/pom.xml index 0b8101e666..72ecc6640e 100644 --- a/amps/ags/rm-community/rm-community-rest-api-explorer/pom.xml +++ b/amps/ags/rm-community/rm-community-rest-api-explorer/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-governance-services-community-repo-parent - 25.1.0.44-SNAPSHOT + 25.1.0.44 diff --git a/amps/pom.xml b/amps/pom.xml index ae917cfbe7..95e9eb106e 100644 --- a/amps/pom.xml +++ b/amps/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-community-repo - 25.1.0.44-SNAPSHOT + 25.1.0.44 diff --git a/amps/share-services/pom.xml b/amps/share-services/pom.xml index 32e4f7eff4..6990378cf5 100644 --- a/amps/share-services/pom.xml +++ b/amps/share-services/pom.xml @@ -8,7 +8,7 @@ org.alfresco alfresco-community-repo-amps - 25.1.0.44-SNAPSHOT + 25.1.0.44 diff --git a/core/pom.xml b/core/pom.xml index bce87952fa..38202cccf4 100644 --- a/core/pom.xml +++ b/core/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-community-repo - 25.1.0.44-SNAPSHOT + 25.1.0.44 diff --git a/data-model/pom.xml b/data-model/pom.xml index a3f7d85469..90e5d689de 100644 --- a/data-model/pom.xml +++ b/data-model/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-community-repo - 25.1.0.44-SNAPSHOT + 25.1.0.44 diff --git a/mmt/pom.xml b/mmt/pom.xml index a7fd276592..50ae4d09f2 100644 --- a/mmt/pom.xml +++ b/mmt/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-community-repo - 25.1.0.44-SNAPSHOT + 25.1.0.44 diff --git a/packaging/distribution/pom.xml b/packaging/distribution/pom.xml index 78c6c5e7b1..71ddcef3f8 100644 --- a/packaging/distribution/pom.xml +++ b/packaging/distribution/pom.xml @@ -9,6 +9,6 @@ org.alfresco alfresco-community-repo-packaging - 25.1.0.44-SNAPSHOT + 25.1.0.44 diff --git a/packaging/docker-alfresco/pom.xml b/packaging/docker-alfresco/pom.xml index 02a22b8914..4d809d5168 100644 --- a/packaging/docker-alfresco/pom.xml +++ b/packaging/docker-alfresco/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-community-repo-packaging - 25.1.0.44-SNAPSHOT + 25.1.0.44 diff --git a/packaging/pom.xml b/packaging/pom.xml index 59743bd28d..296a8c0b0f 100644 --- a/packaging/pom.xml +++ b/packaging/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-community-repo - 25.1.0.44-SNAPSHOT + 25.1.0.44 diff --git a/packaging/tests/pom.xml b/packaging/tests/pom.xml index 5c8c6bd0c7..1f3b5e9c7c 100644 --- a/packaging/tests/pom.xml +++ b/packaging/tests/pom.xml @@ -6,7 +6,7 @@ org.alfresco alfresco-community-repo-packaging - 25.1.0.44-SNAPSHOT + 25.1.0.44 diff --git a/packaging/tests/tas-cmis/pom.xml b/packaging/tests/tas-cmis/pom.xml index 713c17cfc0..883e3977ca 100644 --- a/packaging/tests/tas-cmis/pom.xml +++ b/packaging/tests/tas-cmis/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-community-repo-tests - 25.1.0.44-SNAPSHOT + 25.1.0.44 diff --git a/packaging/tests/tas-email/pom.xml b/packaging/tests/tas-email/pom.xml index cf53f9e752..f8e83335e4 100644 --- a/packaging/tests/tas-email/pom.xml +++ b/packaging/tests/tas-email/pom.xml @@ -9,7 +9,7 @@ org.alfresco alfresco-community-repo-tests - 25.1.0.44-SNAPSHOT + 25.1.0.44 diff --git a/packaging/tests/tas-integration/pom.xml b/packaging/tests/tas-integration/pom.xml index 5d7086667e..19573cde81 100644 --- a/packaging/tests/tas-integration/pom.xml +++ b/packaging/tests/tas-integration/pom.xml @@ -9,7 +9,7 @@ org.alfresco alfresco-community-repo-tests - 25.1.0.44-SNAPSHOT + 25.1.0.44 diff --git a/packaging/tests/tas-restapi/pom.xml b/packaging/tests/tas-restapi/pom.xml index 8226640764..1fb31b25f0 100644 --- a/packaging/tests/tas-restapi/pom.xml +++ b/packaging/tests/tas-restapi/pom.xml @@ -8,7 +8,7 @@ org.alfresco alfresco-community-repo-tests - 25.1.0.44-SNAPSHOT + 25.1.0.44 diff --git a/packaging/tests/tas-webdav/pom.xml b/packaging/tests/tas-webdav/pom.xml index 9496451267..3d1b369d73 100644 --- a/packaging/tests/tas-webdav/pom.xml +++ b/packaging/tests/tas-webdav/pom.xml @@ -9,7 +9,7 @@ org.alfresco alfresco-community-repo-tests - 25.1.0.44-SNAPSHOT + 25.1.0.44 diff --git a/packaging/war/pom.xml b/packaging/war/pom.xml index c1a93f8cb3..7e939aa1ac 100644 --- a/packaging/war/pom.xml +++ b/packaging/war/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-community-repo-packaging - 25.1.0.44-SNAPSHOT + 25.1.0.44 diff --git a/pom.xml b/pom.xml index ec99faadf2..d664148741 100644 --- a/pom.xml +++ b/pom.xml @@ -2,7 +2,7 @@ 4.0.0 alfresco-community-repo - 25.1.0.44-SNAPSHOT + 25.1.0.44 pom Alfresco Community Repo Parent @@ -155,7 +155,7 @@ scm:git:https://github.com/Alfresco/alfresco-community-repo.git scm:git:https://github.com/Alfresco/alfresco-community-repo.git https://github.com/Alfresco/alfresco-community-repo - HEAD + 25.1.0.44 diff --git a/remote-api/pom.xml b/remote-api/pom.xml index c1ba538ca3..e141f8eb2b 100644 --- a/remote-api/pom.xml +++ b/remote-api/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-community-repo - 25.1.0.44-SNAPSHOT + 25.1.0.44 diff --git a/repository/pom.xml b/repository/pom.xml index 7250919a5a..d0e3a8af96 100644 --- a/repository/pom.xml +++ b/repository/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-community-repo - 25.1.0.44-SNAPSHOT + 25.1.0.44 From f4a634647168ceb2dea89f852442019fc1abce21 Mon Sep 17 00:00:00 2001 From: alfresco-build <8039454+alfresco-build@users.noreply.github.com> Date: Mon, 3 Feb 2025 08:48:12 +0000 Subject: [PATCH 16/23] [maven-release-plugin][skip ci] prepare for next development iteration --- amps/ags/pom.xml | 2 +- amps/ags/rm-automation/pom.xml | 2 +- .../rm-automation/rm-automation-community-rest-api/pom.xml | 2 +- amps/ags/rm-community/pom.xml | 2 +- amps/ags/rm-community/rm-community-repo/pom.xml | 2 +- amps/ags/rm-community/rm-community-rest-api-explorer/pom.xml | 2 +- amps/pom.xml | 2 +- amps/share-services/pom.xml | 2 +- core/pom.xml | 2 +- data-model/pom.xml | 2 +- mmt/pom.xml | 2 +- packaging/distribution/pom.xml | 2 +- packaging/docker-alfresco/pom.xml | 2 +- packaging/pom.xml | 2 +- packaging/tests/pom.xml | 2 +- packaging/tests/tas-cmis/pom.xml | 2 +- packaging/tests/tas-email/pom.xml | 2 +- packaging/tests/tas-integration/pom.xml | 2 +- packaging/tests/tas-restapi/pom.xml | 2 +- packaging/tests/tas-webdav/pom.xml | 2 +- packaging/war/pom.xml | 2 +- pom.xml | 4 ++-- remote-api/pom.xml | 2 +- repository/pom.xml | 2 +- 24 files changed, 25 insertions(+), 25 deletions(-) diff --git a/amps/ags/pom.xml b/amps/ags/pom.xml index 43a4232c42..32bc496df5 100644 --- a/amps/ags/pom.xml +++ b/amps/ags/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-community-repo-amps - 25.1.0.44 + 25.1.0.45-SNAPSHOT diff --git a/amps/ags/rm-automation/pom.xml b/amps/ags/rm-automation/pom.xml index 7ca67458dc..f1cc6c5980 100644 --- a/amps/ags/rm-automation/pom.xml +++ b/amps/ags/rm-automation/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-governance-services-community-parent - 25.1.0.44 + 25.1.0.45-SNAPSHOT diff --git a/amps/ags/rm-automation/rm-automation-community-rest-api/pom.xml b/amps/ags/rm-automation/rm-automation-community-rest-api/pom.xml index 3196ef2d92..f32a7e6280 100644 --- a/amps/ags/rm-automation/rm-automation-community-rest-api/pom.xml +++ b/amps/ags/rm-automation/rm-automation-community-rest-api/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-governance-services-automation-community-repo - 25.1.0.44 + 25.1.0.45-SNAPSHOT diff --git a/amps/ags/rm-community/pom.xml b/amps/ags/rm-community/pom.xml index 7403859a15..5b58720b70 100644 --- a/amps/ags/rm-community/pom.xml +++ b/amps/ags/rm-community/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-governance-services-community-parent - 25.1.0.44 + 25.1.0.45-SNAPSHOT diff --git a/amps/ags/rm-community/rm-community-repo/pom.xml b/amps/ags/rm-community/rm-community-repo/pom.xml index ef7f569f03..49c96fdb2b 100644 --- a/amps/ags/rm-community/rm-community-repo/pom.xml +++ b/amps/ags/rm-community/rm-community-repo/pom.xml @@ -8,7 +8,7 @@ org.alfresco alfresco-governance-services-community-repo-parent - 25.1.0.44 + 25.1.0.45-SNAPSHOT diff --git a/amps/ags/rm-community/rm-community-rest-api-explorer/pom.xml b/amps/ags/rm-community/rm-community-rest-api-explorer/pom.xml index 72ecc6640e..95b893894c 100644 --- a/amps/ags/rm-community/rm-community-rest-api-explorer/pom.xml +++ b/amps/ags/rm-community/rm-community-rest-api-explorer/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-governance-services-community-repo-parent - 25.1.0.44 + 25.1.0.45-SNAPSHOT diff --git a/amps/pom.xml b/amps/pom.xml index 95e9eb106e..f4f20450e8 100644 --- a/amps/pom.xml +++ b/amps/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-community-repo - 25.1.0.44 + 25.1.0.45-SNAPSHOT diff --git a/amps/share-services/pom.xml b/amps/share-services/pom.xml index 6990378cf5..b0d52f77ab 100644 --- a/amps/share-services/pom.xml +++ b/amps/share-services/pom.xml @@ -8,7 +8,7 @@ org.alfresco alfresco-community-repo-amps - 25.1.0.44 + 25.1.0.45-SNAPSHOT diff --git a/core/pom.xml b/core/pom.xml index 38202cccf4..73a59d255a 100644 --- a/core/pom.xml +++ b/core/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-community-repo - 25.1.0.44 + 25.1.0.45-SNAPSHOT diff --git a/data-model/pom.xml b/data-model/pom.xml index 90e5d689de..ff0cb71f6a 100644 --- a/data-model/pom.xml +++ b/data-model/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-community-repo - 25.1.0.44 + 25.1.0.45-SNAPSHOT diff --git a/mmt/pom.xml b/mmt/pom.xml index 50ae4d09f2..e520a83297 100644 --- a/mmt/pom.xml +++ b/mmt/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-community-repo - 25.1.0.44 + 25.1.0.45-SNAPSHOT diff --git a/packaging/distribution/pom.xml b/packaging/distribution/pom.xml index 71ddcef3f8..92042980c9 100644 --- a/packaging/distribution/pom.xml +++ b/packaging/distribution/pom.xml @@ -9,6 +9,6 @@ org.alfresco alfresco-community-repo-packaging - 25.1.0.44 + 25.1.0.45-SNAPSHOT diff --git a/packaging/docker-alfresco/pom.xml b/packaging/docker-alfresco/pom.xml index 4d809d5168..7c9d08f7ee 100644 --- a/packaging/docker-alfresco/pom.xml +++ b/packaging/docker-alfresco/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-community-repo-packaging - 25.1.0.44 + 25.1.0.45-SNAPSHOT diff --git a/packaging/pom.xml b/packaging/pom.xml index 296a8c0b0f..48e2816595 100644 --- a/packaging/pom.xml +++ b/packaging/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-community-repo - 25.1.0.44 + 25.1.0.45-SNAPSHOT diff --git a/packaging/tests/pom.xml b/packaging/tests/pom.xml index 1f3b5e9c7c..ac7d495859 100644 --- a/packaging/tests/pom.xml +++ b/packaging/tests/pom.xml @@ -6,7 +6,7 @@ org.alfresco alfresco-community-repo-packaging - 25.1.0.44 + 25.1.0.45-SNAPSHOT diff --git a/packaging/tests/tas-cmis/pom.xml b/packaging/tests/tas-cmis/pom.xml index 883e3977ca..9cab10d5c0 100644 --- a/packaging/tests/tas-cmis/pom.xml +++ b/packaging/tests/tas-cmis/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-community-repo-tests - 25.1.0.44 + 25.1.0.45-SNAPSHOT diff --git a/packaging/tests/tas-email/pom.xml b/packaging/tests/tas-email/pom.xml index f8e83335e4..aa9391fd36 100644 --- a/packaging/tests/tas-email/pom.xml +++ b/packaging/tests/tas-email/pom.xml @@ -9,7 +9,7 @@ org.alfresco alfresco-community-repo-tests - 25.1.0.44 + 25.1.0.45-SNAPSHOT diff --git a/packaging/tests/tas-integration/pom.xml b/packaging/tests/tas-integration/pom.xml index 19573cde81..ef66eaec96 100644 --- a/packaging/tests/tas-integration/pom.xml +++ b/packaging/tests/tas-integration/pom.xml @@ -9,7 +9,7 @@ org.alfresco alfresco-community-repo-tests - 25.1.0.44 + 25.1.0.45-SNAPSHOT diff --git a/packaging/tests/tas-restapi/pom.xml b/packaging/tests/tas-restapi/pom.xml index 1fb31b25f0..58e7a990f8 100644 --- a/packaging/tests/tas-restapi/pom.xml +++ b/packaging/tests/tas-restapi/pom.xml @@ -8,7 +8,7 @@ org.alfresco alfresco-community-repo-tests - 25.1.0.44 + 25.1.0.45-SNAPSHOT diff --git a/packaging/tests/tas-webdav/pom.xml b/packaging/tests/tas-webdav/pom.xml index 3d1b369d73..02b186fd85 100644 --- a/packaging/tests/tas-webdav/pom.xml +++ b/packaging/tests/tas-webdav/pom.xml @@ -9,7 +9,7 @@ org.alfresco alfresco-community-repo-tests - 25.1.0.44 + 25.1.0.45-SNAPSHOT diff --git a/packaging/war/pom.xml b/packaging/war/pom.xml index 7e939aa1ac..1e7769e9f7 100644 --- a/packaging/war/pom.xml +++ b/packaging/war/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-community-repo-packaging - 25.1.0.44 + 25.1.0.45-SNAPSHOT diff --git a/pom.xml b/pom.xml index d664148741..4134e14dd4 100644 --- a/pom.xml +++ b/pom.xml @@ -2,7 +2,7 @@ 4.0.0 alfresco-community-repo - 25.1.0.44 + 25.1.0.45-SNAPSHOT pom Alfresco Community Repo Parent @@ -155,7 +155,7 @@ scm:git:https://github.com/Alfresco/alfresco-community-repo.git scm:git:https://github.com/Alfresco/alfresco-community-repo.git https://github.com/Alfresco/alfresco-community-repo - 25.1.0.44 + HEAD diff --git a/remote-api/pom.xml b/remote-api/pom.xml index e141f8eb2b..4c1ba9dfcb 100644 --- a/remote-api/pom.xml +++ b/remote-api/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-community-repo - 25.1.0.44 + 25.1.0.45-SNAPSHOT diff --git a/repository/pom.xml b/repository/pom.xml index d0e3a8af96..84bb722d7f 100644 --- a/repository/pom.xml +++ b/repository/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-community-repo - 25.1.0.44 + 25.1.0.45-SNAPSHOT From b16b1162936e68c9b30dc26e9d6370114fde896e Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 4 Feb 2025 10:49:33 +0100 Subject: [PATCH 17/23] Bump joda-time:joda-time from 2.13.0 to 2.13.1 (#3188) Bumps [joda-time:joda-time](https://github.com/JodaOrg/joda-time) from 2.13.0 to 2.13.1. - [Release notes](https://github.com/JodaOrg/joda-time/releases) - [Changelog](https://github.com/JodaOrg/joda-time/blob/main/RELEASE-NOTES.txt) - [Commits](https://github.com/JodaOrg/joda-time/compare/v2.13.0...v2.13.1) --- updated-dependencies: - dependency-name: joda-time:joda-time dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 4134e14dd4..22b44d1351 100644 --- a/pom.xml +++ b/pom.xml @@ -794,7 +794,7 @@ joda-time joda-time - 2.13.0 + 2.13.1 From 888d034b822b0a8c0e092a172d89ede6bfe586f1 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 4 Feb 2025 10:52:07 +0100 Subject: [PATCH 18/23] Bump com.google.code.gson:gson from 2.12.0 to 2.12.1 (#3180) Bumps [com.google.code.gson:gson](https://github.com/google/gson) from 2.12.0 to 2.12.1. - [Release notes](https://github.com/google/gson/releases) - [Changelog](https://github.com/google/gson/blob/main/CHANGELOG.md) - [Commits](https://github.com/google/gson/compare/gson-parent-2.12.0...gson-parent-2.12.1) --- updated-dependencies: - dependency-name: com.google.code.gson:gson dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 22b44d1351..54c478fc9e 100644 --- a/pom.xml +++ b/pom.xml @@ -70,7 +70,7 @@ 20240303 2.12.0 2.18.0 - 2.12.0 + 2.12.1 33.3.1-jre 4.5.14 4.4.16 From 5e2c8eac98423804da26ab2ec01c84327f154995 Mon Sep 17 00:00:00 2001 From: alfresco-build <8039454+alfresco-build@users.noreply.github.com> Date: Tue, 4 Feb 2025 10:38:40 +0000 Subject: [PATCH 19/23] [maven-release-plugin][skip ci] prepare release 25.1.0.45 --- amps/ags/pom.xml | 2 +- amps/ags/rm-automation/pom.xml | 2 +- .../rm-automation/rm-automation-community-rest-api/pom.xml | 2 +- amps/ags/rm-community/pom.xml | 2 +- amps/ags/rm-community/rm-community-repo/pom.xml | 2 +- amps/ags/rm-community/rm-community-rest-api-explorer/pom.xml | 2 +- amps/pom.xml | 2 +- amps/share-services/pom.xml | 2 +- core/pom.xml | 2 +- data-model/pom.xml | 2 +- mmt/pom.xml | 2 +- packaging/distribution/pom.xml | 2 +- packaging/docker-alfresco/pom.xml | 2 +- packaging/pom.xml | 2 +- packaging/tests/pom.xml | 2 +- packaging/tests/tas-cmis/pom.xml | 2 +- packaging/tests/tas-email/pom.xml | 2 +- packaging/tests/tas-integration/pom.xml | 2 +- packaging/tests/tas-restapi/pom.xml | 2 +- packaging/tests/tas-webdav/pom.xml | 2 +- packaging/war/pom.xml | 2 +- pom.xml | 4 ++-- remote-api/pom.xml | 2 +- repository/pom.xml | 2 +- 24 files changed, 25 insertions(+), 25 deletions(-) diff --git a/amps/ags/pom.xml b/amps/ags/pom.xml index 32bc496df5..ef69052865 100644 --- a/amps/ags/pom.xml +++ b/amps/ags/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-community-repo-amps - 25.1.0.45-SNAPSHOT + 25.1.0.45 diff --git a/amps/ags/rm-automation/pom.xml b/amps/ags/rm-automation/pom.xml index f1cc6c5980..62a7b0fbef 100644 --- a/amps/ags/rm-automation/pom.xml +++ b/amps/ags/rm-automation/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-governance-services-community-parent - 25.1.0.45-SNAPSHOT + 25.1.0.45 diff --git a/amps/ags/rm-automation/rm-automation-community-rest-api/pom.xml b/amps/ags/rm-automation/rm-automation-community-rest-api/pom.xml index f32a7e6280..a4d90e11fc 100644 --- a/amps/ags/rm-automation/rm-automation-community-rest-api/pom.xml +++ b/amps/ags/rm-automation/rm-automation-community-rest-api/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-governance-services-automation-community-repo - 25.1.0.45-SNAPSHOT + 25.1.0.45 diff --git a/amps/ags/rm-community/pom.xml b/amps/ags/rm-community/pom.xml index 5b58720b70..f59907d7c4 100644 --- a/amps/ags/rm-community/pom.xml +++ b/amps/ags/rm-community/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-governance-services-community-parent - 25.1.0.45-SNAPSHOT + 25.1.0.45 diff --git a/amps/ags/rm-community/rm-community-repo/pom.xml b/amps/ags/rm-community/rm-community-repo/pom.xml index 49c96fdb2b..81ae588bf4 100644 --- a/amps/ags/rm-community/rm-community-repo/pom.xml +++ b/amps/ags/rm-community/rm-community-repo/pom.xml @@ -8,7 +8,7 @@ org.alfresco alfresco-governance-services-community-repo-parent - 25.1.0.45-SNAPSHOT + 25.1.0.45 diff --git a/amps/ags/rm-community/rm-community-rest-api-explorer/pom.xml b/amps/ags/rm-community/rm-community-rest-api-explorer/pom.xml index 95b893894c..3013b38f88 100644 --- a/amps/ags/rm-community/rm-community-rest-api-explorer/pom.xml +++ b/amps/ags/rm-community/rm-community-rest-api-explorer/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-governance-services-community-repo-parent - 25.1.0.45-SNAPSHOT + 25.1.0.45 diff --git a/amps/pom.xml b/amps/pom.xml index f4f20450e8..eb578b663e 100644 --- a/amps/pom.xml +++ b/amps/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-community-repo - 25.1.0.45-SNAPSHOT + 25.1.0.45 diff --git a/amps/share-services/pom.xml b/amps/share-services/pom.xml index b0d52f77ab..be15c2dffe 100644 --- a/amps/share-services/pom.xml +++ b/amps/share-services/pom.xml @@ -8,7 +8,7 @@ org.alfresco alfresco-community-repo-amps - 25.1.0.45-SNAPSHOT + 25.1.0.45 diff --git a/core/pom.xml b/core/pom.xml index 73a59d255a..7364524c1d 100644 --- a/core/pom.xml +++ b/core/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-community-repo - 25.1.0.45-SNAPSHOT + 25.1.0.45 diff --git a/data-model/pom.xml b/data-model/pom.xml index ff0cb71f6a..0443b9ac22 100644 --- a/data-model/pom.xml +++ b/data-model/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-community-repo - 25.1.0.45-SNAPSHOT + 25.1.0.45 diff --git a/mmt/pom.xml b/mmt/pom.xml index e520a83297..b7b4ff4c51 100644 --- a/mmt/pom.xml +++ b/mmt/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-community-repo - 25.1.0.45-SNAPSHOT + 25.1.0.45 diff --git a/packaging/distribution/pom.xml b/packaging/distribution/pom.xml index 92042980c9..5ac1ba8825 100644 --- a/packaging/distribution/pom.xml +++ b/packaging/distribution/pom.xml @@ -9,6 +9,6 @@ org.alfresco alfresco-community-repo-packaging - 25.1.0.45-SNAPSHOT + 25.1.0.45 diff --git a/packaging/docker-alfresco/pom.xml b/packaging/docker-alfresco/pom.xml index 7c9d08f7ee..6b0395688d 100644 --- a/packaging/docker-alfresco/pom.xml +++ b/packaging/docker-alfresco/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-community-repo-packaging - 25.1.0.45-SNAPSHOT + 25.1.0.45 diff --git a/packaging/pom.xml b/packaging/pom.xml index 48e2816595..9c78217262 100644 --- a/packaging/pom.xml +++ b/packaging/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-community-repo - 25.1.0.45-SNAPSHOT + 25.1.0.45 diff --git a/packaging/tests/pom.xml b/packaging/tests/pom.xml index ac7d495859..c3e6f8d64a 100644 --- a/packaging/tests/pom.xml +++ b/packaging/tests/pom.xml @@ -6,7 +6,7 @@ org.alfresco alfresco-community-repo-packaging - 25.1.0.45-SNAPSHOT + 25.1.0.45 diff --git a/packaging/tests/tas-cmis/pom.xml b/packaging/tests/tas-cmis/pom.xml index 9cab10d5c0..e579c70a3a 100644 --- a/packaging/tests/tas-cmis/pom.xml +++ b/packaging/tests/tas-cmis/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-community-repo-tests - 25.1.0.45-SNAPSHOT + 25.1.0.45 diff --git a/packaging/tests/tas-email/pom.xml b/packaging/tests/tas-email/pom.xml index aa9391fd36..308dd4b9fd 100644 --- a/packaging/tests/tas-email/pom.xml +++ b/packaging/tests/tas-email/pom.xml @@ -9,7 +9,7 @@ org.alfresco alfresco-community-repo-tests - 25.1.0.45-SNAPSHOT + 25.1.0.45 diff --git a/packaging/tests/tas-integration/pom.xml b/packaging/tests/tas-integration/pom.xml index ef66eaec96..b3181ca22a 100644 --- a/packaging/tests/tas-integration/pom.xml +++ b/packaging/tests/tas-integration/pom.xml @@ -9,7 +9,7 @@ org.alfresco alfresco-community-repo-tests - 25.1.0.45-SNAPSHOT + 25.1.0.45 diff --git a/packaging/tests/tas-restapi/pom.xml b/packaging/tests/tas-restapi/pom.xml index 58e7a990f8..0b1289af7c 100644 --- a/packaging/tests/tas-restapi/pom.xml +++ b/packaging/tests/tas-restapi/pom.xml @@ -8,7 +8,7 @@ org.alfresco alfresco-community-repo-tests - 25.1.0.45-SNAPSHOT + 25.1.0.45 diff --git a/packaging/tests/tas-webdav/pom.xml b/packaging/tests/tas-webdav/pom.xml index 02b186fd85..b9ad294cc4 100644 --- a/packaging/tests/tas-webdav/pom.xml +++ b/packaging/tests/tas-webdav/pom.xml @@ -9,7 +9,7 @@ org.alfresco alfresco-community-repo-tests - 25.1.0.45-SNAPSHOT + 25.1.0.45 diff --git a/packaging/war/pom.xml b/packaging/war/pom.xml index 1e7769e9f7..93e1fcf599 100644 --- a/packaging/war/pom.xml +++ b/packaging/war/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-community-repo-packaging - 25.1.0.45-SNAPSHOT + 25.1.0.45 diff --git a/pom.xml b/pom.xml index 54c478fc9e..fd78cd38b9 100644 --- a/pom.xml +++ b/pom.xml @@ -2,7 +2,7 @@ 4.0.0 alfresco-community-repo - 25.1.0.45-SNAPSHOT + 25.1.0.45 pom Alfresco Community Repo Parent @@ -155,7 +155,7 @@ scm:git:https://github.com/Alfresco/alfresco-community-repo.git scm:git:https://github.com/Alfresco/alfresco-community-repo.git https://github.com/Alfresco/alfresco-community-repo - HEAD + 25.1.0.45 diff --git a/remote-api/pom.xml b/remote-api/pom.xml index 4c1ba9dfcb..e381ce5668 100644 --- a/remote-api/pom.xml +++ b/remote-api/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-community-repo - 25.1.0.45-SNAPSHOT + 25.1.0.45 diff --git a/repository/pom.xml b/repository/pom.xml index 84bb722d7f..26acc77896 100644 --- a/repository/pom.xml +++ b/repository/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-community-repo - 25.1.0.45-SNAPSHOT + 25.1.0.45 From 643510f1b4ed7b78cc400f12305245a5fe0ef050 Mon Sep 17 00:00:00 2001 From: alfresco-build <8039454+alfresco-build@users.noreply.github.com> Date: Tue, 4 Feb 2025 10:38:43 +0000 Subject: [PATCH 20/23] [maven-release-plugin][skip ci] prepare for next development iteration --- amps/ags/pom.xml | 2 +- amps/ags/rm-automation/pom.xml | 2 +- .../rm-automation/rm-automation-community-rest-api/pom.xml | 2 +- amps/ags/rm-community/pom.xml | 2 +- amps/ags/rm-community/rm-community-repo/pom.xml | 2 +- amps/ags/rm-community/rm-community-rest-api-explorer/pom.xml | 2 +- amps/pom.xml | 2 +- amps/share-services/pom.xml | 2 +- core/pom.xml | 2 +- data-model/pom.xml | 2 +- mmt/pom.xml | 2 +- packaging/distribution/pom.xml | 2 +- packaging/docker-alfresco/pom.xml | 2 +- packaging/pom.xml | 2 +- packaging/tests/pom.xml | 2 +- packaging/tests/tas-cmis/pom.xml | 2 +- packaging/tests/tas-email/pom.xml | 2 +- packaging/tests/tas-integration/pom.xml | 2 +- packaging/tests/tas-restapi/pom.xml | 2 +- packaging/tests/tas-webdav/pom.xml | 2 +- packaging/war/pom.xml | 2 +- pom.xml | 4 ++-- remote-api/pom.xml | 2 +- repository/pom.xml | 2 +- 24 files changed, 25 insertions(+), 25 deletions(-) diff --git a/amps/ags/pom.xml b/amps/ags/pom.xml index ef69052865..80c22456aa 100644 --- a/amps/ags/pom.xml +++ b/amps/ags/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-community-repo-amps - 25.1.0.45 + 25.1.0.46-SNAPSHOT diff --git a/amps/ags/rm-automation/pom.xml b/amps/ags/rm-automation/pom.xml index 62a7b0fbef..d3f403963e 100644 --- a/amps/ags/rm-automation/pom.xml +++ b/amps/ags/rm-automation/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-governance-services-community-parent - 25.1.0.45 + 25.1.0.46-SNAPSHOT diff --git a/amps/ags/rm-automation/rm-automation-community-rest-api/pom.xml b/amps/ags/rm-automation/rm-automation-community-rest-api/pom.xml index a4d90e11fc..8f2d284198 100644 --- a/amps/ags/rm-automation/rm-automation-community-rest-api/pom.xml +++ b/amps/ags/rm-automation/rm-automation-community-rest-api/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-governance-services-automation-community-repo - 25.1.0.45 + 25.1.0.46-SNAPSHOT diff --git a/amps/ags/rm-community/pom.xml b/amps/ags/rm-community/pom.xml index f59907d7c4..ff31a09727 100644 --- a/amps/ags/rm-community/pom.xml +++ b/amps/ags/rm-community/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-governance-services-community-parent - 25.1.0.45 + 25.1.0.46-SNAPSHOT diff --git a/amps/ags/rm-community/rm-community-repo/pom.xml b/amps/ags/rm-community/rm-community-repo/pom.xml index 81ae588bf4..45a0a5266a 100644 --- a/amps/ags/rm-community/rm-community-repo/pom.xml +++ b/amps/ags/rm-community/rm-community-repo/pom.xml @@ -8,7 +8,7 @@ org.alfresco alfresco-governance-services-community-repo-parent - 25.1.0.45 + 25.1.0.46-SNAPSHOT diff --git a/amps/ags/rm-community/rm-community-rest-api-explorer/pom.xml b/amps/ags/rm-community/rm-community-rest-api-explorer/pom.xml index 3013b38f88..6e35a8ef37 100644 --- a/amps/ags/rm-community/rm-community-rest-api-explorer/pom.xml +++ b/amps/ags/rm-community/rm-community-rest-api-explorer/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-governance-services-community-repo-parent - 25.1.0.45 + 25.1.0.46-SNAPSHOT diff --git a/amps/pom.xml b/amps/pom.xml index eb578b663e..42fb1ebd21 100644 --- a/amps/pom.xml +++ b/amps/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-community-repo - 25.1.0.45 + 25.1.0.46-SNAPSHOT diff --git a/amps/share-services/pom.xml b/amps/share-services/pom.xml index be15c2dffe..c3d0237f24 100644 --- a/amps/share-services/pom.xml +++ b/amps/share-services/pom.xml @@ -8,7 +8,7 @@ org.alfresco alfresco-community-repo-amps - 25.1.0.45 + 25.1.0.46-SNAPSHOT diff --git a/core/pom.xml b/core/pom.xml index 7364524c1d..f64de29ac4 100644 --- a/core/pom.xml +++ b/core/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-community-repo - 25.1.0.45 + 25.1.0.46-SNAPSHOT diff --git a/data-model/pom.xml b/data-model/pom.xml index 0443b9ac22..493dbdff66 100644 --- a/data-model/pom.xml +++ b/data-model/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-community-repo - 25.1.0.45 + 25.1.0.46-SNAPSHOT diff --git a/mmt/pom.xml b/mmt/pom.xml index b7b4ff4c51..d4a4373e76 100644 --- a/mmt/pom.xml +++ b/mmt/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-community-repo - 25.1.0.45 + 25.1.0.46-SNAPSHOT diff --git a/packaging/distribution/pom.xml b/packaging/distribution/pom.xml index 5ac1ba8825..e414c71e10 100644 --- a/packaging/distribution/pom.xml +++ b/packaging/distribution/pom.xml @@ -9,6 +9,6 @@ org.alfresco alfresco-community-repo-packaging - 25.1.0.45 + 25.1.0.46-SNAPSHOT diff --git a/packaging/docker-alfresco/pom.xml b/packaging/docker-alfresco/pom.xml index 6b0395688d..0f29c5883f 100644 --- a/packaging/docker-alfresco/pom.xml +++ b/packaging/docker-alfresco/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-community-repo-packaging - 25.1.0.45 + 25.1.0.46-SNAPSHOT diff --git a/packaging/pom.xml b/packaging/pom.xml index 9c78217262..005fded873 100644 --- a/packaging/pom.xml +++ b/packaging/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-community-repo - 25.1.0.45 + 25.1.0.46-SNAPSHOT diff --git a/packaging/tests/pom.xml b/packaging/tests/pom.xml index c3e6f8d64a..6507e592ba 100644 --- a/packaging/tests/pom.xml +++ b/packaging/tests/pom.xml @@ -6,7 +6,7 @@ org.alfresco alfresco-community-repo-packaging - 25.1.0.45 + 25.1.0.46-SNAPSHOT diff --git a/packaging/tests/tas-cmis/pom.xml b/packaging/tests/tas-cmis/pom.xml index e579c70a3a..d965b842d3 100644 --- a/packaging/tests/tas-cmis/pom.xml +++ b/packaging/tests/tas-cmis/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-community-repo-tests - 25.1.0.45 + 25.1.0.46-SNAPSHOT diff --git a/packaging/tests/tas-email/pom.xml b/packaging/tests/tas-email/pom.xml index 308dd4b9fd..f6e28150ed 100644 --- a/packaging/tests/tas-email/pom.xml +++ b/packaging/tests/tas-email/pom.xml @@ -9,7 +9,7 @@ org.alfresco alfresco-community-repo-tests - 25.1.0.45 + 25.1.0.46-SNAPSHOT diff --git a/packaging/tests/tas-integration/pom.xml b/packaging/tests/tas-integration/pom.xml index b3181ca22a..358b55c545 100644 --- a/packaging/tests/tas-integration/pom.xml +++ b/packaging/tests/tas-integration/pom.xml @@ -9,7 +9,7 @@ org.alfresco alfresco-community-repo-tests - 25.1.0.45 + 25.1.0.46-SNAPSHOT diff --git a/packaging/tests/tas-restapi/pom.xml b/packaging/tests/tas-restapi/pom.xml index 0b1289af7c..1b94a02612 100644 --- a/packaging/tests/tas-restapi/pom.xml +++ b/packaging/tests/tas-restapi/pom.xml @@ -8,7 +8,7 @@ org.alfresco alfresco-community-repo-tests - 25.1.0.45 + 25.1.0.46-SNAPSHOT diff --git a/packaging/tests/tas-webdav/pom.xml b/packaging/tests/tas-webdav/pom.xml index b9ad294cc4..4be7ba905f 100644 --- a/packaging/tests/tas-webdav/pom.xml +++ b/packaging/tests/tas-webdav/pom.xml @@ -9,7 +9,7 @@ org.alfresco alfresco-community-repo-tests - 25.1.0.45 + 25.1.0.46-SNAPSHOT diff --git a/packaging/war/pom.xml b/packaging/war/pom.xml index 93e1fcf599..f39f209e04 100644 --- a/packaging/war/pom.xml +++ b/packaging/war/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-community-repo-packaging - 25.1.0.45 + 25.1.0.46-SNAPSHOT diff --git a/pom.xml b/pom.xml index fd78cd38b9..f5fa2f49cd 100644 --- a/pom.xml +++ b/pom.xml @@ -2,7 +2,7 @@ 4.0.0 alfresco-community-repo - 25.1.0.45 + 25.1.0.46-SNAPSHOT pom Alfresco Community Repo Parent @@ -155,7 +155,7 @@ scm:git:https://github.com/Alfresco/alfresco-community-repo.git scm:git:https://github.com/Alfresco/alfresco-community-repo.git https://github.com/Alfresco/alfresco-community-repo - 25.1.0.45 + HEAD diff --git a/remote-api/pom.xml b/remote-api/pom.xml index e381ce5668..3c9a607305 100644 --- a/remote-api/pom.xml +++ b/remote-api/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-community-repo - 25.1.0.45 + 25.1.0.46-SNAPSHOT diff --git a/repository/pom.xml b/repository/pom.xml index 26acc77896..94767bac3c 100644 --- a/repository/pom.xml +++ b/repository/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-community-repo - 25.1.0.45 + 25.1.0.46-SNAPSHOT From c370c39e34b980afde754225cc347bff3dadebbe Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 6 Feb 2025 11:44:48 +0100 Subject: [PATCH 21/23] Bump dependency.spring.version from 6.2.1 to 6.2.2 (#3151) Bumps `dependency.spring.version` from 6.2.1 to 6.2.2. Updates `org.springframework:spring-aop` from 6.2.1 to 6.2.2 - [Release notes](https://github.com/spring-projects/spring-framework/releases) - [Commits](https://github.com/spring-projects/spring-framework/compare/v6.2.1...v6.2.2) Updates `org.springframework:spring-beans` from 6.2.1 to 6.2.2 - [Release notes](https://github.com/spring-projects/spring-framework/releases) - [Commits](https://github.com/spring-projects/spring-framework/compare/v6.2.1...v6.2.2) Updates `org.springframework:spring-context` from 6.2.1 to 6.2.2 - [Release notes](https://github.com/spring-projects/spring-framework/releases) - [Commits](https://github.com/spring-projects/spring-framework/compare/v6.2.1...v6.2.2) Updates `org.springframework:spring-context-support` from 6.2.1 to 6.2.2 - [Release notes](https://github.com/spring-projects/spring-framework/releases) - [Commits](https://github.com/spring-projects/spring-framework/compare/v6.2.1...v6.2.2) Updates `org.springframework:spring-core` from 6.2.1 to 6.2.2 - [Release notes](https://github.com/spring-projects/spring-framework/releases) - [Commits](https://github.com/spring-projects/spring-framework/compare/v6.2.1...v6.2.2) Updates `org.springframework:spring-expression` from 6.2.1 to 6.2.2 - [Release notes](https://github.com/spring-projects/spring-framework/releases) - [Commits](https://github.com/spring-projects/spring-framework/compare/v6.2.1...v6.2.2) Updates `org.springframework:spring-jdbc` from 6.2.1 to 6.2.2 - [Release notes](https://github.com/spring-projects/spring-framework/releases) - [Commits](https://github.com/spring-projects/spring-framework/compare/v6.2.1...v6.2.2) Updates `org.springframework:spring-jms` from 6.2.1 to 6.2.2 - [Release notes](https://github.com/spring-projects/spring-framework/releases) - [Commits](https://github.com/spring-projects/spring-framework/compare/v6.2.1...v6.2.2) Updates `org.springframework:spring-test` from 6.2.1 to 6.2.2 - [Release notes](https://github.com/spring-projects/spring-framework/releases) - [Commits](https://github.com/spring-projects/spring-framework/compare/v6.2.1...v6.2.2) Updates `org.springframework:spring-orm` from 6.2.1 to 6.2.2 - [Release notes](https://github.com/spring-projects/spring-framework/releases) - [Commits](https://github.com/spring-projects/spring-framework/compare/v6.2.1...v6.2.2) Updates `org.springframework:spring-tx` from 6.2.1 to 6.2.2 - [Release notes](https://github.com/spring-projects/spring-framework/releases) - [Commits](https://github.com/spring-projects/spring-framework/compare/v6.2.1...v6.2.2) Updates `org.springframework:spring-web` from 6.2.1 to 6.2.2 - [Release notes](https://github.com/spring-projects/spring-framework/releases) - [Commits](https://github.com/spring-projects/spring-framework/compare/v6.2.1...v6.2.2) Updates `org.springframework:spring-webmvc` from 6.2.1 to 6.2.2 - [Release notes](https://github.com/spring-projects/spring-framework/releases) - [Commits](https://github.com/spring-projects/spring-framework/compare/v6.2.1...v6.2.2) --- updated-dependencies: - dependency-name: org.springframework:spring-aop dependency-type: direct:production update-type: version-update:semver-patch - dependency-name: org.springframework:spring-beans dependency-type: direct:production update-type: version-update:semver-patch - dependency-name: org.springframework:spring-context dependency-type: direct:production update-type: version-update:semver-patch - dependency-name: org.springframework:spring-context-support dependency-type: direct:production update-type: version-update:semver-patch - dependency-name: org.springframework:spring-core dependency-type: direct:production update-type: version-update:semver-patch - dependency-name: org.springframework:spring-expression dependency-type: direct:production update-type: version-update:semver-patch - dependency-name: org.springframework:spring-jdbc dependency-type: direct:production update-type: version-update:semver-patch - dependency-name: org.springframework:spring-jms dependency-type: direct:production update-type: version-update:semver-patch - dependency-name: org.springframework:spring-test dependency-type: direct:production update-type: version-update:semver-patch - dependency-name: org.springframework:spring-orm dependency-type: direct:production update-type: version-update:semver-patch - dependency-name: org.springframework:spring-tx dependency-type: direct:production update-type: version-update:semver-patch - dependency-name: org.springframework:spring-web dependency-type: direct:production update-type: version-update:semver-patch - dependency-name: org.springframework:spring-webmvc dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index f5fa2f49cd..b0e878587c 100644 --- a/pom.xml +++ b/pom.xml @@ -57,7 +57,7 @@ 1.0.2 1.9.22.1 - 6.2.1 + 6.2.2 6.3.4 3.5.3 2.17.2 From 5703bf09272127c2c4159eb711d0c6056891b4d2 Mon Sep 17 00:00:00 2001 From: alfresco-build <8039454+alfresco-build@users.noreply.github.com> Date: Thu, 6 Feb 2025 11:28:21 +0000 Subject: [PATCH 22/23] [maven-release-plugin][skip ci] prepare release 25.1.0.46 --- amps/ags/pom.xml | 2 +- amps/ags/rm-automation/pom.xml | 2 +- .../rm-automation/rm-automation-community-rest-api/pom.xml | 2 +- amps/ags/rm-community/pom.xml | 2 +- amps/ags/rm-community/rm-community-repo/pom.xml | 2 +- amps/ags/rm-community/rm-community-rest-api-explorer/pom.xml | 2 +- amps/pom.xml | 2 +- amps/share-services/pom.xml | 2 +- core/pom.xml | 2 +- data-model/pom.xml | 2 +- mmt/pom.xml | 2 +- packaging/distribution/pom.xml | 2 +- packaging/docker-alfresco/pom.xml | 2 +- packaging/pom.xml | 2 +- packaging/tests/pom.xml | 2 +- packaging/tests/tas-cmis/pom.xml | 2 +- packaging/tests/tas-email/pom.xml | 2 +- packaging/tests/tas-integration/pom.xml | 2 +- packaging/tests/tas-restapi/pom.xml | 2 +- packaging/tests/tas-webdav/pom.xml | 2 +- packaging/war/pom.xml | 2 +- pom.xml | 4 ++-- remote-api/pom.xml | 2 +- repository/pom.xml | 2 +- 24 files changed, 25 insertions(+), 25 deletions(-) diff --git a/amps/ags/pom.xml b/amps/ags/pom.xml index 80c22456aa..9f77580e6e 100644 --- a/amps/ags/pom.xml +++ b/amps/ags/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-community-repo-amps - 25.1.0.46-SNAPSHOT + 25.1.0.46 diff --git a/amps/ags/rm-automation/pom.xml b/amps/ags/rm-automation/pom.xml index d3f403963e..d961724866 100644 --- a/amps/ags/rm-automation/pom.xml +++ b/amps/ags/rm-automation/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-governance-services-community-parent - 25.1.0.46-SNAPSHOT + 25.1.0.46 diff --git a/amps/ags/rm-automation/rm-automation-community-rest-api/pom.xml b/amps/ags/rm-automation/rm-automation-community-rest-api/pom.xml index 8f2d284198..9bd5af72f6 100644 --- a/amps/ags/rm-automation/rm-automation-community-rest-api/pom.xml +++ b/amps/ags/rm-automation/rm-automation-community-rest-api/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-governance-services-automation-community-repo - 25.1.0.46-SNAPSHOT + 25.1.0.46 diff --git a/amps/ags/rm-community/pom.xml b/amps/ags/rm-community/pom.xml index ff31a09727..20a1eea39a 100644 --- a/amps/ags/rm-community/pom.xml +++ b/amps/ags/rm-community/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-governance-services-community-parent - 25.1.0.46-SNAPSHOT + 25.1.0.46 diff --git a/amps/ags/rm-community/rm-community-repo/pom.xml b/amps/ags/rm-community/rm-community-repo/pom.xml index 45a0a5266a..85f308f460 100644 --- a/amps/ags/rm-community/rm-community-repo/pom.xml +++ b/amps/ags/rm-community/rm-community-repo/pom.xml @@ -8,7 +8,7 @@ org.alfresco alfresco-governance-services-community-repo-parent - 25.1.0.46-SNAPSHOT + 25.1.0.46 diff --git a/amps/ags/rm-community/rm-community-rest-api-explorer/pom.xml b/amps/ags/rm-community/rm-community-rest-api-explorer/pom.xml index 6e35a8ef37..aa2aa80c06 100644 --- a/amps/ags/rm-community/rm-community-rest-api-explorer/pom.xml +++ b/amps/ags/rm-community/rm-community-rest-api-explorer/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-governance-services-community-repo-parent - 25.1.0.46-SNAPSHOT + 25.1.0.46 diff --git a/amps/pom.xml b/amps/pom.xml index 42fb1ebd21..69731c9588 100644 --- a/amps/pom.xml +++ b/amps/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-community-repo - 25.1.0.46-SNAPSHOT + 25.1.0.46 diff --git a/amps/share-services/pom.xml b/amps/share-services/pom.xml index c3d0237f24..60e332e3d2 100644 --- a/amps/share-services/pom.xml +++ b/amps/share-services/pom.xml @@ -8,7 +8,7 @@ org.alfresco alfresco-community-repo-amps - 25.1.0.46-SNAPSHOT + 25.1.0.46 diff --git a/core/pom.xml b/core/pom.xml index f64de29ac4..faa08a0714 100644 --- a/core/pom.xml +++ b/core/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-community-repo - 25.1.0.46-SNAPSHOT + 25.1.0.46 diff --git a/data-model/pom.xml b/data-model/pom.xml index 493dbdff66..e7f68fd808 100644 --- a/data-model/pom.xml +++ b/data-model/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-community-repo - 25.1.0.46-SNAPSHOT + 25.1.0.46 diff --git a/mmt/pom.xml b/mmt/pom.xml index d4a4373e76..e76353cc54 100644 --- a/mmt/pom.xml +++ b/mmt/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-community-repo - 25.1.0.46-SNAPSHOT + 25.1.0.46 diff --git a/packaging/distribution/pom.xml b/packaging/distribution/pom.xml index e414c71e10..d18fc5149b 100644 --- a/packaging/distribution/pom.xml +++ b/packaging/distribution/pom.xml @@ -9,6 +9,6 @@ org.alfresco alfresco-community-repo-packaging - 25.1.0.46-SNAPSHOT + 25.1.0.46 diff --git a/packaging/docker-alfresco/pom.xml b/packaging/docker-alfresco/pom.xml index 0f29c5883f..97a2e0f018 100644 --- a/packaging/docker-alfresco/pom.xml +++ b/packaging/docker-alfresco/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-community-repo-packaging - 25.1.0.46-SNAPSHOT + 25.1.0.46 diff --git a/packaging/pom.xml b/packaging/pom.xml index 005fded873..5f77537023 100644 --- a/packaging/pom.xml +++ b/packaging/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-community-repo - 25.1.0.46-SNAPSHOT + 25.1.0.46 diff --git a/packaging/tests/pom.xml b/packaging/tests/pom.xml index 6507e592ba..deb48908d3 100644 --- a/packaging/tests/pom.xml +++ b/packaging/tests/pom.xml @@ -6,7 +6,7 @@ org.alfresco alfresco-community-repo-packaging - 25.1.0.46-SNAPSHOT + 25.1.0.46 diff --git a/packaging/tests/tas-cmis/pom.xml b/packaging/tests/tas-cmis/pom.xml index d965b842d3..3dcb250ac7 100644 --- a/packaging/tests/tas-cmis/pom.xml +++ b/packaging/tests/tas-cmis/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-community-repo-tests - 25.1.0.46-SNAPSHOT + 25.1.0.46 diff --git a/packaging/tests/tas-email/pom.xml b/packaging/tests/tas-email/pom.xml index f6e28150ed..d6c0535da7 100644 --- a/packaging/tests/tas-email/pom.xml +++ b/packaging/tests/tas-email/pom.xml @@ -9,7 +9,7 @@ org.alfresco alfresco-community-repo-tests - 25.1.0.46-SNAPSHOT + 25.1.0.46 diff --git a/packaging/tests/tas-integration/pom.xml b/packaging/tests/tas-integration/pom.xml index 358b55c545..c7a49dfa0a 100644 --- a/packaging/tests/tas-integration/pom.xml +++ b/packaging/tests/tas-integration/pom.xml @@ -9,7 +9,7 @@ org.alfresco alfresco-community-repo-tests - 25.1.0.46-SNAPSHOT + 25.1.0.46 diff --git a/packaging/tests/tas-restapi/pom.xml b/packaging/tests/tas-restapi/pom.xml index 1b94a02612..1d020e7195 100644 --- a/packaging/tests/tas-restapi/pom.xml +++ b/packaging/tests/tas-restapi/pom.xml @@ -8,7 +8,7 @@ org.alfresco alfresco-community-repo-tests - 25.1.0.46-SNAPSHOT + 25.1.0.46 diff --git a/packaging/tests/tas-webdav/pom.xml b/packaging/tests/tas-webdav/pom.xml index 4be7ba905f..ff57f08b6f 100644 --- a/packaging/tests/tas-webdav/pom.xml +++ b/packaging/tests/tas-webdav/pom.xml @@ -9,7 +9,7 @@ org.alfresco alfresco-community-repo-tests - 25.1.0.46-SNAPSHOT + 25.1.0.46 diff --git a/packaging/war/pom.xml b/packaging/war/pom.xml index f39f209e04..1939843a88 100644 --- a/packaging/war/pom.xml +++ b/packaging/war/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-community-repo-packaging - 25.1.0.46-SNAPSHOT + 25.1.0.46 diff --git a/pom.xml b/pom.xml index b0e878587c..c9b7f6bdb0 100644 --- a/pom.xml +++ b/pom.xml @@ -2,7 +2,7 @@ 4.0.0 alfresco-community-repo - 25.1.0.46-SNAPSHOT + 25.1.0.46 pom Alfresco Community Repo Parent @@ -155,7 +155,7 @@ scm:git:https://github.com/Alfresco/alfresco-community-repo.git scm:git:https://github.com/Alfresco/alfresco-community-repo.git https://github.com/Alfresco/alfresco-community-repo - HEAD + 25.1.0.46 diff --git a/remote-api/pom.xml b/remote-api/pom.xml index 3c9a607305..4bbefd97f8 100644 --- a/remote-api/pom.xml +++ b/remote-api/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-community-repo - 25.1.0.46-SNAPSHOT + 25.1.0.46 diff --git a/repository/pom.xml b/repository/pom.xml index 94767bac3c..dc9be910bc 100644 --- a/repository/pom.xml +++ b/repository/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-community-repo - 25.1.0.46-SNAPSHOT + 25.1.0.46 From 226c695d972c21a03f4c27581ed8f3fdd5090cea Mon Sep 17 00:00:00 2001 From: alfresco-build <8039454+alfresco-build@users.noreply.github.com> Date: Thu, 6 Feb 2025 11:28:23 +0000 Subject: [PATCH 23/23] [maven-release-plugin][skip ci] prepare for next development iteration --- amps/ags/pom.xml | 2 +- amps/ags/rm-automation/pom.xml | 2 +- .../rm-automation/rm-automation-community-rest-api/pom.xml | 2 +- amps/ags/rm-community/pom.xml | 2 +- amps/ags/rm-community/rm-community-repo/pom.xml | 2 +- amps/ags/rm-community/rm-community-rest-api-explorer/pom.xml | 2 +- amps/pom.xml | 2 +- amps/share-services/pom.xml | 2 +- core/pom.xml | 2 +- data-model/pom.xml | 2 +- mmt/pom.xml | 2 +- packaging/distribution/pom.xml | 2 +- packaging/docker-alfresco/pom.xml | 2 +- packaging/pom.xml | 2 +- packaging/tests/pom.xml | 2 +- packaging/tests/tas-cmis/pom.xml | 2 +- packaging/tests/tas-email/pom.xml | 2 +- packaging/tests/tas-integration/pom.xml | 2 +- packaging/tests/tas-restapi/pom.xml | 2 +- packaging/tests/tas-webdav/pom.xml | 2 +- packaging/war/pom.xml | 2 +- pom.xml | 4 ++-- remote-api/pom.xml | 2 +- repository/pom.xml | 2 +- 24 files changed, 25 insertions(+), 25 deletions(-) diff --git a/amps/ags/pom.xml b/amps/ags/pom.xml index 9f77580e6e..ee212dab9d 100644 --- a/amps/ags/pom.xml +++ b/amps/ags/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-community-repo-amps - 25.1.0.46 + 25.1.0.47-SNAPSHOT diff --git a/amps/ags/rm-automation/pom.xml b/amps/ags/rm-automation/pom.xml index d961724866..0c2930bcb6 100644 --- a/amps/ags/rm-automation/pom.xml +++ b/amps/ags/rm-automation/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-governance-services-community-parent - 25.1.0.46 + 25.1.0.47-SNAPSHOT diff --git a/amps/ags/rm-automation/rm-automation-community-rest-api/pom.xml b/amps/ags/rm-automation/rm-automation-community-rest-api/pom.xml index 9bd5af72f6..42afdafb0a 100644 --- a/amps/ags/rm-automation/rm-automation-community-rest-api/pom.xml +++ b/amps/ags/rm-automation/rm-automation-community-rest-api/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-governance-services-automation-community-repo - 25.1.0.46 + 25.1.0.47-SNAPSHOT diff --git a/amps/ags/rm-community/pom.xml b/amps/ags/rm-community/pom.xml index 20a1eea39a..96f3198cd5 100644 --- a/amps/ags/rm-community/pom.xml +++ b/amps/ags/rm-community/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-governance-services-community-parent - 25.1.0.46 + 25.1.0.47-SNAPSHOT diff --git a/amps/ags/rm-community/rm-community-repo/pom.xml b/amps/ags/rm-community/rm-community-repo/pom.xml index 85f308f460..d094fac9b7 100644 --- a/amps/ags/rm-community/rm-community-repo/pom.xml +++ b/amps/ags/rm-community/rm-community-repo/pom.xml @@ -8,7 +8,7 @@ org.alfresco alfresco-governance-services-community-repo-parent - 25.1.0.46 + 25.1.0.47-SNAPSHOT diff --git a/amps/ags/rm-community/rm-community-rest-api-explorer/pom.xml b/amps/ags/rm-community/rm-community-rest-api-explorer/pom.xml index aa2aa80c06..a0262dd33b 100644 --- a/amps/ags/rm-community/rm-community-rest-api-explorer/pom.xml +++ b/amps/ags/rm-community/rm-community-rest-api-explorer/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-governance-services-community-repo-parent - 25.1.0.46 + 25.1.0.47-SNAPSHOT diff --git a/amps/pom.xml b/amps/pom.xml index 69731c9588..bb1677c669 100644 --- a/amps/pom.xml +++ b/amps/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-community-repo - 25.1.0.46 + 25.1.0.47-SNAPSHOT diff --git a/amps/share-services/pom.xml b/amps/share-services/pom.xml index 60e332e3d2..c7a2d46bd3 100644 --- a/amps/share-services/pom.xml +++ b/amps/share-services/pom.xml @@ -8,7 +8,7 @@ org.alfresco alfresco-community-repo-amps - 25.1.0.46 + 25.1.0.47-SNAPSHOT diff --git a/core/pom.xml b/core/pom.xml index faa08a0714..a786b11435 100644 --- a/core/pom.xml +++ b/core/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-community-repo - 25.1.0.46 + 25.1.0.47-SNAPSHOT diff --git a/data-model/pom.xml b/data-model/pom.xml index e7f68fd808..c8be6596c0 100644 --- a/data-model/pom.xml +++ b/data-model/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-community-repo - 25.1.0.46 + 25.1.0.47-SNAPSHOT diff --git a/mmt/pom.xml b/mmt/pom.xml index e76353cc54..5856a9f7b3 100644 --- a/mmt/pom.xml +++ b/mmt/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-community-repo - 25.1.0.46 + 25.1.0.47-SNAPSHOT diff --git a/packaging/distribution/pom.xml b/packaging/distribution/pom.xml index d18fc5149b..2d26efb04d 100644 --- a/packaging/distribution/pom.xml +++ b/packaging/distribution/pom.xml @@ -9,6 +9,6 @@ org.alfresco alfresco-community-repo-packaging - 25.1.0.46 + 25.1.0.47-SNAPSHOT diff --git a/packaging/docker-alfresco/pom.xml b/packaging/docker-alfresco/pom.xml index 97a2e0f018..41e334126a 100644 --- a/packaging/docker-alfresco/pom.xml +++ b/packaging/docker-alfresco/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-community-repo-packaging - 25.1.0.46 + 25.1.0.47-SNAPSHOT diff --git a/packaging/pom.xml b/packaging/pom.xml index 5f77537023..a163d6ff56 100644 --- a/packaging/pom.xml +++ b/packaging/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-community-repo - 25.1.0.46 + 25.1.0.47-SNAPSHOT diff --git a/packaging/tests/pom.xml b/packaging/tests/pom.xml index deb48908d3..d0af3ffc6f 100644 --- a/packaging/tests/pom.xml +++ b/packaging/tests/pom.xml @@ -6,7 +6,7 @@ org.alfresco alfresco-community-repo-packaging - 25.1.0.46 + 25.1.0.47-SNAPSHOT diff --git a/packaging/tests/tas-cmis/pom.xml b/packaging/tests/tas-cmis/pom.xml index 3dcb250ac7..b2a479fafd 100644 --- a/packaging/tests/tas-cmis/pom.xml +++ b/packaging/tests/tas-cmis/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-community-repo-tests - 25.1.0.46 + 25.1.0.47-SNAPSHOT diff --git a/packaging/tests/tas-email/pom.xml b/packaging/tests/tas-email/pom.xml index d6c0535da7..bf5cd82468 100644 --- a/packaging/tests/tas-email/pom.xml +++ b/packaging/tests/tas-email/pom.xml @@ -9,7 +9,7 @@ org.alfresco alfresco-community-repo-tests - 25.1.0.46 + 25.1.0.47-SNAPSHOT diff --git a/packaging/tests/tas-integration/pom.xml b/packaging/tests/tas-integration/pom.xml index c7a49dfa0a..3c18485b79 100644 --- a/packaging/tests/tas-integration/pom.xml +++ b/packaging/tests/tas-integration/pom.xml @@ -9,7 +9,7 @@ org.alfresco alfresco-community-repo-tests - 25.1.0.46 + 25.1.0.47-SNAPSHOT diff --git a/packaging/tests/tas-restapi/pom.xml b/packaging/tests/tas-restapi/pom.xml index 1d020e7195..134579edbf 100644 --- a/packaging/tests/tas-restapi/pom.xml +++ b/packaging/tests/tas-restapi/pom.xml @@ -8,7 +8,7 @@ org.alfresco alfresco-community-repo-tests - 25.1.0.46 + 25.1.0.47-SNAPSHOT diff --git a/packaging/tests/tas-webdav/pom.xml b/packaging/tests/tas-webdav/pom.xml index ff57f08b6f..96e484920b 100644 --- a/packaging/tests/tas-webdav/pom.xml +++ b/packaging/tests/tas-webdav/pom.xml @@ -9,7 +9,7 @@ org.alfresco alfresco-community-repo-tests - 25.1.0.46 + 25.1.0.47-SNAPSHOT diff --git a/packaging/war/pom.xml b/packaging/war/pom.xml index 1939843a88..87b1f68459 100644 --- a/packaging/war/pom.xml +++ b/packaging/war/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-community-repo-packaging - 25.1.0.46 + 25.1.0.47-SNAPSHOT diff --git a/pom.xml b/pom.xml index c9b7f6bdb0..20a9b9d61b 100644 --- a/pom.xml +++ b/pom.xml @@ -2,7 +2,7 @@ 4.0.0 alfresco-community-repo - 25.1.0.46 + 25.1.0.47-SNAPSHOT pom Alfresco Community Repo Parent @@ -155,7 +155,7 @@ scm:git:https://github.com/Alfresco/alfresco-community-repo.git scm:git:https://github.com/Alfresco/alfresco-community-repo.git https://github.com/Alfresco/alfresco-community-repo - 25.1.0.46 + HEAD diff --git a/remote-api/pom.xml b/remote-api/pom.xml index 4bbefd97f8..976b9659f8 100644 --- a/remote-api/pom.xml +++ b/remote-api/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-community-repo - 25.1.0.46 + 25.1.0.47-SNAPSHOT diff --git a/repository/pom.xml b/repository/pom.xml index dc9be910bc..1d516a0edd 100644 --- a/repository/pom.xml +++ b/repository/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-community-repo - 25.1.0.46 + 25.1.0.47-SNAPSHOT