Skip to content

Commit

Permalink
[APPS-2985] Prepare OOP SDK compatible with ACS 23.3 (#244)
Browse files Browse the repository at this point in the history
* [APPS-2985] Prepare OOP SDK compatible with ACS 23.3

* [APPS-2985] Prepare OOP SDK compatible with ACS 23.3

* [APPS-2985] Prepare OOP SDK compatible with ACS 23.3

---------

Co-authored-by: Sathish Kumar <[email protected]>
  • Loading branch information
SathishK-T and Sathish Kumar authored Aug 29, 2024
1 parent eae7c89 commit 1ac7df5
Show file tree
Hide file tree
Showing 6 changed files with 14 additions and 14 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}
Expand Down
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -58,14 +58,14 @@ Then, add the dependency on the desired starter(s)
<dependency>
<groupId>org.alfresco</groupId>
<artifactId>alfresco-acs-java-rest-api-spring-boot-starter</artifactId>
<version>6.3.0-SNAPSHOT</version>
<version>6.3.0</version>
</dependency>

<!-- Java Event API -->
<dependency>
<groupId>org.alfresco</groupId>
<artifactId>alfresco-java-event-api-spring-boot-starter</artifactId>
<version>6.3.0-SNAPSHOT</version>
<version>6.3.0</version>
</dependency>
</dependencies>
```
Expand All @@ -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.3.0"
compile "org.alfresco:alfresco-java-event-api-spring-boot-starter:6.3.0"
```

#### 3. Configure Event API
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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-SNAPSHOT"
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.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ Add this dependency to your project's POM:
<dependency>
<groupId>org.alfresco</groupId>
<artifactId>alfresco-event-gateway-api-client</artifactId>
<version>6.3.0-SNAPSHOT</version>
<version>6.3.0</version>
</dependency>
```

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@
<swagger-codegen-maven-plugin.version>2.4.30</swagger-codegen-maven-plugin.version>
<exec-maven-plugin.version>3.0.0</exec-maven-plugin.version>
<!-- Base Paths -->
<acs.version>23.2.0</acs.version>
<ags.version>23.2.0.63</ags.version>
<acs.version>23.3.0</acs.version>
<ags.version>23.3.0.84</ags.version>
<!-- API definitions -->
<acs.core.api>${project.build.directory}/definitions/alfresco-core.yaml</acs.core.api>
<acs.auth.api>${project.build.directory}/definitions/alfresco-auth.yaml</acs.auth.api>
Expand Down
6 changes: 3 additions & 3 deletions alfresco-java-event-api/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,7 @@ The steps to integrate with the Alfresco Java Event API using the Spring Boot st
<dependency>
<groupId>org.alfresco</groupId>
<artifactId>alfresco-java-event-api-spring-boot-starter</artifactId>
<version>6.3.0-SNAPSHOT</version>
<version>6.3.0</version>
</dependency>
```

Expand Down Expand Up @@ -186,7 +186,7 @@ In order to use them, you only need to add the corresponding dependency to your
<dependency>
<groupId>org.alfresco</groupId>
<artifactId>alfresco-java-event-api-integration</artifactId>
<version>6.3.0-SNAPSHOT</version>
<version>6.3.0</version>
</dependency>
```

Expand All @@ -203,7 +203,7 @@ In order to use them, you only need to add the corresponding dependency to your
<dependency>
<groupId>org.alfresco</groupId>
<artifactId>alfresco-java-event-api-handling</artifactId>
<version>6.3.0-SNAPSHOT</version>
<version>6.3.0</version>
</dependency>
```

Expand Down

0 comments on commit 1ac7df5

Please sign in to comment.