Documentation - Update documentation to SDK 4.1

- Update SDK and ACS versions
- New article how to setup ATS in alfresco community
- New troubleshooting section about configuring ATS
This commit is contained in:
Jose Luis Osorno
2019-10-18 10:16:18 +02:00
parent 3e4a793f5d
commit 12db1fcb17
35 changed files with 322 additions and 122 deletions

View File

@@ -1,15 +1,15 @@
---
Title: Working with generated projects
Added: v3.0.0
Last reviewed: 2019-01-15
Last reviewed: 2019-10-18
---
# Working with generated projects
After generating a project using one of the Alfresco SDK 4.0 Maven archetypes, it is important to know how to build / run / test these projects.
After generating a project using one of the Alfresco SDK 4.1 Maven archetypes, it is important to know how to build / run / test these projects.
The Alfresco Platform 6 deployment architecture is highly based on container technologies, specifically in
[Docker](http://docs.alfresco.com/6.0/concepts/master-deploy.html). Due to that, the projects generated using the Alfresco SDK 4.0 archetypes set up their
local environment making an intensive use of Docker and Docker compose technologies.
The Alfresco Platform 6 deployment architecture is highly based on container technologies, specifically in [Docker](http://docs.alfresco.com/6.0/concepts/master-deploy.html).
Due to that, the projects generated using the Alfresco SDK 4.1 archetypes set up their local environment making an intensive use of Docker and Docker compose
technologies.
If you're not familiar with these technologies, it is highly recommended visiting the [Docker documentation website](https://docs.docker.com). This site offers
a great quantity of training resources about [Docker](https://docs.docker.com/get-started/) and [Docker compose](https://docs.docker.com/compose/gettingstarted/).
@@ -21,7 +21,7 @@ a great quantity of training resources about [Docker](https://docs.docker.com/ge
## Project structures
After generating your project, using one of the Maven archetypes, review the project structure. The directory structure and content of each folder and file
can help you to understand how to start developing with the Alfresco SDK 4.0. Before continuing, make sure that you have read and completed the tasks in the
can help you to understand how to start developing with the Alfresco SDK 4.1. Before continuing, make sure that you have read and completed the tasks in the
[Getting started](../getting-started.md) tutorial.
The structure of the project and the purpose of the files it contains vary according to the [Maven archetype](../mvn-archetypes.md) used to generate the project
@@ -33,7 +33,7 @@ itself. The following links provide detailed descriptions of the different proje
## Run script
All the projects generated using the Alfresco SDK 4.0 archetypes provide a utility script to work with the project. This script is `run.sh` for Unix systems
All the projects generated using the Alfresco SDK 4.1 archetypes provide a utility script to work with the project. This script is `run.sh` for Unix systems
and `run.bat` for Windows systems.
The execution of this script must be followed by a parameter that dictates the task to be executed in the project. The list of available tasks is:

View File

@@ -1,7 +1,7 @@
---
Title: All-In-One project structure
Added: v3.0.0
Last reviewed: 2019-01-15
Last reviewed: 2019-10-18
---
# All-In-One project structure
@@ -81,7 +81,8 @@ my-all-in-one-project
│ │ │ │ ├── service-context.xml
│ │ │ │ └── webscript-context.xml
│ │ │ ├── messages
│ │ │ │ ── content-model.properties
│ │ │ │ ── content-model.properties
│ │ │ │ └── workflow-messages.properties
│ │ │ ├── model
│ │ │ │ ├── content-model.xml
│ │ │ │ └── workflow-model.xml

View File

@@ -1,7 +1,7 @@
---
Title: Platform JAR project structure
Added: v3.0.0
Last reviewed: 2019-03-26
Last reviewed: 2019-10-18
---
# Platform JAR project structure
@@ -64,7 +64,8 @@ my-platform-jar-project
│   │   └── webscript-context.xml
│   ├── log4j.properties
│   ├── messages
│   │   ── content-model.properties
│   │   ── content-model.properties
│   │   └── workflow-messages.properties
│   ├── model
│   │   ├── content-model.xml
│   │   └── workflow-model.xml

View File

@@ -1,7 +1,7 @@
---
Title: Share JAR project structure
Added: v3.0.0
Last reviewed: 2019-01-15
Last reviewed: 2019-10-18
---
# Share JAR project structure

View File

@@ -1,3 +1,9 @@
---
Title: Working with an All-In-One project
Added: v4.0.0
Last reviewed: 2019-10-18
---
# Working with an All-In-One project
Before you continue make sure that you have read and completed the tasks in the
@@ -72,7 +78,7 @@ my-all-in-one-project mbergljung$ ./run.sh build_start
[INFO] ------------------------------------------------------------------------
[INFO] Reactor Build Order:
[INFO]
[INFO] AIO - SDK 4.0
[INFO] AIO - SDK 4.1
[INFO] Alfresco Platform/Repository JAR Module
[INFO] Alfresco Share JAR Module
[INFO] Integration Tests Module
@@ -82,7 +88,7 @@ my-all-in-one-project mbergljung$ ./run.sh build_start
[INFO] ------------------------------------------------------------------------
[INFO] Reactor Summary:
[INFO]
[INFO] AIO - SDK 4.0 ...................................... SUCCESS [ 0.680 s]
[INFO] AIO - SDK 4.1 ...................................... SUCCESS [ 0.680 s]
[INFO] Alfresco Platform/Repository JAR Module ............ SUCCESS [ 5.461 s]
[INFO] Alfresco Share JAR Module .......................... SUCCESS [ 0.557 s]
[INFO] Integration Tests Module ........................... SUCCESS [ 0.900 s]

View File

@@ -1,3 +1,9 @@
---
Title: Working with a Platform (Repository) project
Added: v4.0.0
Last reviewed: 2019-10-18
---
# Working with a Platform (Repository) project
Before you continue make sure that you have read and completed the tasks in the

View File

@@ -1,3 +1,9 @@
---
Title: Working with a Share project
Added: v4.0.0
Last reviewed: 2019-10-18
---
# Working with a Share project
Before you continue make sure that you have read and completed the tasks in the