Unverified Commit 019c5c70 authored by Piotr Żurek's avatar Piotr Żurek Committed by GitHub
Browse files

ACS-5413 Prepare SDK 4.6 Release (#650)

parent 693fde62
Loading
Loading
Loading
Loading
+12 −0
Original line number Diff line number Diff line
@@ -56,6 +56,18 @@ jobs:
            java-version: 17
          - name: "current version Java 11"
            java-version: 11
          - name: "7.4 Enterprise Java 17"
            java-version: 17
            suite: -Penterprise-74-tests
          - name: "7.4 Community Java 17"
            java-version: 17
            suite: -Pcommunity-74-tests
          - name: "7.4 Enterprise Java 11"
            java-version: 11
            suite: -Penterprise-74-tests
          - name: "7.4 Community Java 11"
            java-version: 11
            suite: -Pcommunity-74-tests
          - name: "7.3 Enterprise Java 17"
            java-version: 17
            suite: -Penterprise-73-tests
+18 −16
Original line number Diff line number Diff line
@@ -15,6 +15,7 @@ If you are an Enterprise customer check the [Support](#alfresco-enterprise-custo

## News

- 2023-06: Alfresco SDK 4.6.0 released
- 2022-10: Alfresco SDK 4.5.0 released
- 2022-03: Alfresco SDK 4.4.0 released
- 2021-10: Alfresco SDK 4.3.0 released
@@ -76,7 +77,7 @@ the `alfresco.log` file has also been moved to a more appropriate location (Tomc

In Q4 2020, Alfresco Platform has undergone a major structural refactoring.

Depending on the Platform version desired, you might need to use SDK 4.1, 4.3 or SDK 4.4 instead of SDK 4.5.
Depending on the Platform version desired, you might need to use SDK 4.1, 4.3, 4.4 or SDK 4.5 instead of SDK 4.6.

- For Enterprise and Community versions of 7.x, SDK 4.4 or higher must be used
- For Enterprise versions of 6.0.x, 6.1.x, 6.2.x newer than November 2020, SDK 4.3 must be used
@@ -90,11 +91,12 @@ It's also important to remember that:
- Enterprise Docker images are published on *Quay.io*

### Latest Documentation
To get started with **Alfresco SDK 4.5.x** (latest) visit the [Alfresco Documentation](docs/README.md).
To get started with **Alfresco SDK 4.6.x** (latest) visit the [Alfresco Documentation](docs/README.md).

#### Documentation about Previous Versions
| SDK Version |          Alfresco Enterprise Version           |           Alfresco Community Version           | Documentation                                                              |
|-------------|:----------------------------------------------:|:--------------------------------------:|:-----|
|-------------|:----------------------------------------------:|:----------------------------------------------:|:---------------------------------------------------------------------------|
| SDK 4.6     | Alfresco 7.0.x / 7.1.x / 7.2.x / 7.3.x / 7.4.x | Alfresco 7.0.x / 7.1.x / 7.2.x / 7.3.x / 7.4.x | https://github.com/Alfresco/alfresco-sdk/tree/master/docs/README.md        |
| SDK 4.5     |     Alfresco 7.0.x / 7.1.x / 7.2.x / 7.3.x     |     Alfresco 7.0.x / 7.1.x / 7.2.x / 7.3.x     | https://github.com/Alfresco/alfresco-sdk/tree/master/docs/README.md        |
| SDK 4.4     |         Alfresco 7.0.x / 7.1.x / 7.2.x         |         Alfresco 7.0.x / 7.1.x / 7.2.x         | https://github.com/Alfresco/alfresco-sdk/tree/master/docs/README.md        |
| SDK 4.3     | Alfresco 6.0.x / 6.1.x / 6.2.x / 7.0.x / 7.1.x |             Alfresco 7.0.x / 7.1.x             | https://github.com/Alfresco/alfresco-sdk/tree/master/docs/README.md        |
+2 −2
Original line number Diff line number Diff line
# Alfresco AIO Project - SDK 4.5
# Alfresco AIO Project - SDK 4.6

This is an All-In-One (AIO) project for Alfresco SDK 4.5.
This is an All-In-One (AIO) project for Alfresco SDK 4.6.

Run with `./run.sh build_start` or `./run.bat build_start` and verify that it

+1 −1
Original line number Diff line number Diff line
@@ -4,7 +4,7 @@
    <modelVersion>4.0.0</modelVersion>
    <artifactId>${artifactId}</artifactId>
    <name>Integration Tests Module</name>
    <description>Integration Tests module for in-container integration testing - part of AIO - SDK 4.5</description>
    <description>Integration Tests module for in-container integration testing - part of AIO - SDK 4.6</description>
    <packaging>jar</packaging> <!-- Note. this just runs Integration Tests, but it needs to be a JAR otherwise
                                            nothing is compiled (i.e. you cannot set it to pom) -->

+1 −2
Original line number Diff line number Diff line
@@ -3,8 +3,7 @@
    <modelVersion>4.0.0</modelVersion>
    <artifactId>${artifactId}</artifactId>
    <name>Alfresco Platform/Repository JAR Module</name>
    <description>Platform/Repo JAR Module (to be included in the alfresco.war) - part of AIO - SDK 4.5
    </description>
    <description>Platform/Repo JAR Module (to be included in the alfresco.war) - part of AIO - SDK 4.6</description>
    <packaging>jar</packaging>

    <parent>
Loading