From becd5a9780ece88ac2c2fb0bc47b52b037ad93a7 Mon Sep 17 00:00:00 2001 From: Sathish Kumar Date: Thu, 29 Aug 2024 12:19:21 +0530 Subject: [PATCH 1/3] [APPS-2985] Prepare OOP SDK compatible with ACS 23.3 --- .github/workflows/ci.yml | 4 ++-- README.md | 8 ++++---- .../alfresco-acs-java-rest-api-lib/README.md | 2 +- .../alfresco-event-gateway-api-client/README.md | 2 +- .../alfresco-acs-java-rest-api-lib/pom.xml | 4 ++-- alfresco-java-event-api/README.md | 6 +++--- 6 files changed, 13 insertions(+), 13 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 6b7d243f..cdb8798e 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -26,8 +26,8 @@ env: CONTENT_SERVICE_SECURITY_BASICAUTH_PASSWORD: ${{ secrets.CONTENT_SERVICE_SECURITY_BASICAUTH_PASSWORD }} CONTENT_SERVICE_SECURITY_BASICAUTH_USERNAME: ${{ secrets.CONTENT_SERVICE_SECURITY_BASICAUTH_USERNAME }} CONTENT_SERVICE_URL: ${{ secrets.CONTENT_SERVICE_URL }} - AGS_VERSION: 23.2.0.63 - ACS_VERSION: 23.2.0 + AGS_VERSION: 23.3.0.84 + ACS_VERSION: 23.3.0 QUAY_PASSWORD: ${{ secrets.QUAY_PASSWORD }} QUAY_USERNAME: ${{ secrets.QUAY_USERNAME }} DOCKERHUB_USERNAME: ${{ secrets.DOCKER_USERNAME }} diff --git a/README.md b/README.md index b16ecd85..3bfdb993 100644 --- a/README.md +++ b/README.md @@ -58,14 +58,14 @@ Then, add the dependency on the desired starter(s) org.alfresco alfresco-acs-java-rest-api-spring-boot-starter - 6.3.0-SNAPSHOT + 6.4.0-SNAPSHOT org.alfresco alfresco-java-event-api-spring-boot-starter - 6.3.0-SNAPSHOT + 6.4.0-SNAPSHOT ``` @@ -85,8 +85,8 @@ repositories { Then, add the dependency on the desired starter(s) ```groovy -compile "org.alfresco:alfresco-acs-java-rest-api-spring-boot-starter:6.3.0-SNAPSHOT" -compile "org.alfresco:alfresco-java-event-api-spring-boot-starter:6.3.0-SNAPSHOT" +compile "org.alfresco:alfresco-acs-java-rest-api-spring-boot-starter:6.4.0-SNAPSHOT" +compile "org.alfresco:alfresco-java-event-api-spring-boot-starter:6.4.0-SNAPSHOT" ``` #### 3. Configure Event API diff --git a/alfresco-acs-java-rest-api/alfresco-acs-java-rest-api-lib/README.md b/alfresco-acs-java-rest-api/alfresco-acs-java-rest-api-lib/README.md index 9c35df60..048e7a4c 100644 --- a/alfresco-acs-java-rest-api/alfresco-acs-java-rest-api-lib/README.md +++ b/alfresco-acs-java-rest-api/alfresco-acs-java-rest-api-lib/README.md @@ -30,7 +30,7 @@ mvn clean install You can set versions for API definitions using Maven properties, and exporting them, for example: ```console -MAVEN_CLI_OPTS="${MAVEN_CLI_OPTS} -Dacs.version=6.3.0-SNAPSHOT" +MAVEN_CLI_OPTS="${MAVEN_CLI_OPTS} -Dacs.version=6.4.0-SNAPSHOT" MAVEN_CLI_OPTS="${MAVEN_CLI_OPTS} -Dags.version=3.5.0-A4" ``` diff --git a/alfresco-acs-java-rest-api/alfresco-acs-java-rest-api-lib/alfresco-event-gateway-api-client/README.md b/alfresco-acs-java-rest-api/alfresco-acs-java-rest-api-lib/alfresco-event-gateway-api-client/README.md index cdf19e22..e0243347 100644 --- a/alfresco-acs-java-rest-api/alfresco-acs-java-rest-api-lib/alfresco-event-gateway-api-client/README.md +++ b/alfresco-acs-java-rest-api/alfresco-acs-java-rest-api-lib/alfresco-event-gateway-api-client/README.md @@ -28,7 +28,7 @@ Add this dependency to your project's POM: org.alfresco alfresco-event-gateway-api-client - 6.3.0-SNAPSHOT + 6.4.0-SNAPSHOT ``` diff --git a/alfresco-acs-java-rest-api/alfresco-acs-java-rest-api-lib/pom.xml b/alfresco-acs-java-rest-api/alfresco-acs-java-rest-api-lib/pom.xml index 184ffcf2..3781b3f5 100644 --- a/alfresco-acs-java-rest-api/alfresco-acs-java-rest-api-lib/pom.xml +++ b/alfresco-acs-java-rest-api/alfresco-acs-java-rest-api-lib/pom.xml @@ -20,8 +20,8 @@ 2.4.30 3.0.0 - 23.2.0 - 23.2.0.63 + 23.3.0 + 23.3.0.84 ${project.build.directory}/definitions/alfresco-core.yaml ${project.build.directory}/definitions/alfresco-auth.yaml diff --git a/alfresco-java-event-api/README.md b/alfresco-java-event-api/README.md index 38c9bf89..3b76b674 100644 --- a/alfresco-java-event-api/README.md +++ b/alfresco-java-event-api/README.md @@ -147,7 +147,7 @@ The steps to integrate with the Alfresco Java Event API using the Spring Boot st org.alfresco alfresco-java-event-api-spring-boot-starter - 6.3.0-SNAPSHOT + 6.4.0-SNAPSHOT ``` @@ -186,7 +186,7 @@ In order to use them, you only need to add the corresponding dependency to your org.alfresco alfresco-java-event-api-integration - 6.3.0-SNAPSHOT + 6.4.0-SNAPSHOT ``` @@ -203,7 +203,7 @@ In order to use them, you only need to add the corresponding dependency to your org.alfresco alfresco-java-event-api-handling - 6.3.0-SNAPSHOT + 6.4.0-SNAPSHOT ``` From 38d4d9f2cd8720e706c1bb641dad17778107d394 Mon Sep 17 00:00:00 2001 From: Sathish Kumar Date: Thu, 29 Aug 2024 12:22:04 +0530 Subject: [PATCH 2/3] [APPS-2985] Prepare OOP SDK compatible with ACS 23.3 --- README.md | 8 ++++---- .../alfresco-acs-java-rest-api-lib/README.md | 2 +- .../alfresco-event-gateway-api-client/README.md | 2 +- alfresco-java-event-api/README.md | 6 +++--- 4 files changed, 9 insertions(+), 9 deletions(-) diff --git a/README.md b/README.md index 3bfdb993..24b62afb 100644 --- a/README.md +++ b/README.md @@ -58,14 +58,14 @@ Then, add the dependency on the desired starter(s) org.alfresco alfresco-acs-java-rest-api-spring-boot-starter - 6.4.0-SNAPSHOT + 6.3.0 org.alfresco alfresco-java-event-api-spring-boot-starter - 6.4.0-SNAPSHOT + 6.3.0 ``` @@ -85,8 +85,8 @@ repositories { Then, add the dependency on the desired starter(s) ```groovy -compile "org.alfresco:alfresco-acs-java-rest-api-spring-boot-starter:6.4.0-SNAPSHOT" -compile "org.alfresco:alfresco-java-event-api-spring-boot-starter:6.4.0-SNAPSHOT" +compile "org.alfresco:alfresco-acs-java-rest-api-spring-boot-starter:6.3.0" +compile "org.alfresco:alfresco-java-event-api-spring-boot-starter:6.3.0" ``` #### 3. Configure Event API diff --git a/alfresco-acs-java-rest-api/alfresco-acs-java-rest-api-lib/README.md b/alfresco-acs-java-rest-api/alfresco-acs-java-rest-api-lib/README.md index 048e7a4c..fb8d208a 100644 --- a/alfresco-acs-java-rest-api/alfresco-acs-java-rest-api-lib/README.md +++ b/alfresco-acs-java-rest-api/alfresco-acs-java-rest-api-lib/README.md @@ -30,7 +30,7 @@ mvn clean install You can set versions for API definitions using Maven properties, and exporting them, for example: ```console -MAVEN_CLI_OPTS="${MAVEN_CLI_OPTS} -Dacs.version=6.4.0-SNAPSHOT" +MAVEN_CLI_OPTS="${MAVEN_CLI_OPTS} -Dacs.version=6.3.0" MAVEN_CLI_OPTS="${MAVEN_CLI_OPTS} -Dags.version=3.5.0-A4" ``` diff --git a/alfresco-acs-java-rest-api/alfresco-acs-java-rest-api-lib/alfresco-event-gateway-api-client/README.md b/alfresco-acs-java-rest-api/alfresco-acs-java-rest-api-lib/alfresco-event-gateway-api-client/README.md index e0243347..62047154 100644 --- a/alfresco-acs-java-rest-api/alfresco-acs-java-rest-api-lib/alfresco-event-gateway-api-client/README.md +++ b/alfresco-acs-java-rest-api/alfresco-acs-java-rest-api-lib/alfresco-event-gateway-api-client/README.md @@ -28,7 +28,7 @@ Add this dependency to your project's POM: org.alfresco alfresco-event-gateway-api-client - 6.4.0-SNAPSHOT + 6.3.0 ``` diff --git a/alfresco-java-event-api/README.md b/alfresco-java-event-api/README.md index 3b76b674..f2c27097 100644 --- a/alfresco-java-event-api/README.md +++ b/alfresco-java-event-api/README.md @@ -147,7 +147,7 @@ The steps to integrate with the Alfresco Java Event API using the Spring Boot st org.alfresco alfresco-java-event-api-spring-boot-starter - 6.4.0-SNAPSHOT + 6.3.0 ``` @@ -186,7 +186,7 @@ In order to use them, you only need to add the corresponding dependency to your org.alfresco alfresco-java-event-api-integration - 6.4.0-SNAPSHOT + 6.3.0 ``` @@ -203,7 +203,7 @@ In order to use them, you only need to add the corresponding dependency to your org.alfresco alfresco-java-event-api-handling - 6.4.0-SNAPSHOT + 6.3.0 ``` From b4c178b0e8832e60ec2807563e802607b7708c2d Mon Sep 17 00:00:00 2001 From: Sathish Kumar Date: Thu, 29 Aug 2024 12:27:50 +0530 Subject: [PATCH 3/3] [APPS-2985] Prepare OOP SDK compatible with ACS 23.3 --- .../alfresco-acs-java-rest-api-lib/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/alfresco-acs-java-rest-api/alfresco-acs-java-rest-api-lib/README.md b/alfresco-acs-java-rest-api/alfresco-acs-java-rest-api-lib/README.md index fb8d208a..0b3c8724 100644 --- a/alfresco-acs-java-rest-api/alfresco-acs-java-rest-api-lib/README.md +++ b/alfresco-acs-java-rest-api/alfresco-acs-java-rest-api-lib/README.md @@ -30,8 +30,8 @@ mvn clean install You can set versions for API definitions using Maven properties, and exporting them, for example: ```console -MAVEN_CLI_OPTS="${MAVEN_CLI_OPTS} -Dacs.version=6.3.0" -MAVEN_CLI_OPTS="${MAVEN_CLI_OPTS} -Dags.version=3.5.0-A4" +MAVEN_CLI_OPTS="${MAVEN_CLI_OPTS} -Dacs.version=23.3.0" +MAVEN_CLI_OPTS="${MAVEN_CLI_OPTS} -Dags.version=23.3.0.84" ``` In the `generate-sources` phase the script `patch.sh` is executed. This script finds and replaces in the generated code configurations with the correct names and cleans unnecessary files.