## Alfresco Transform Core [![Build Status](https://travis-ci.com/Alfresco/alfresco-transform-core.svg?branch=master)](https://travis-ci.com/Alfresco/alfresco-transform-core) Contains the common transformer (T-Engine) code, plus a few actual implementations. ### Sub-projects * `alfresco-transformer-base` - library packaged as a jar file which contains code that is common to all the transformers; see the sub-project's [README](https://github.com/Alfresco/alfresco-transform-core/blob/master/alfresco-transformer-base/README.md) * `alfresco-docker-` - multiple T-Engines; each one of them builds both a SpringBoot fat jar and a Docker image ### Documentation In addition to the sub-projects (such as `alfresco-transformer-base` README above) some additional documentation can be found in: * [this project's docs](docs) folder * [ACS Packaging docs](https://github.com/Alfresco/acs-packaging/tree/master/docs) folder Note: if you're interested in the Alfresco Transform Service (ATS) that is part of the enterprise Alfresco Content Services (ACS) please see: * https://docs.alfresco.com/transform/concepts/transformservice-overview.html ### Building and testing The project can be built by running the Maven command: ```bash mvn clean install -Plocal,docker-it-setup ``` > The `local` Maven profile builds local Docker images for each T-Engine. ### Artifacts #### Maven The artifacts can be obtained by: * downloading from [Alfresco repository](https://artifacts.alfresco.com/nexus/content/groups/public) * getting as Maven dependency by adding the dependency to your pom file: ```xml org.alfresco alfresco-transformer-base version ``` and Alfresco Maven repository: ```xml alfresco-maven-repo https://artifacts.alfresco.com/nexus/content/groups/public ``` #### Docker The core T-Engine images are available on Docker Hub: * [alfresco/alfresco-imagemagick](https://hub.docker.com/r/alfresco/alfresco-imagemagick) * [alfresco/alfresco-pdf-renderer](https://hub.docker.com/r/alfresco/alfresco-pdf-renderer) * [alfresco/alfresco-libreoffice](https://hub.docker.com/r/alfresco/alfresco-libreoffice) * [alfresco/alfresco-tika](https://hub.docker.com/r/alfresco/alfresco-tika) * [alfresco/alfresco-transform-misc](https://hub.docker.com/r/alfresco/alfresco-transform-misc) Unless you plan to deploy & scale each independently, the above five are also combined into a single Core AIO ("All-In-One"): * [alfresco/alfresco-transform-core-aio](https://hub.docker.com/r/alfresco/alfresco-transform-core-aio) For ACS Enterprise subscribers, the above T-Engine images are also available in [Quay.io](https://quay.io/alfresco). ### Alfresco Content Services Deployments For containerized reference deployments (of either Alfresco Community or ACS Enterprise) see ACS Deployment project: * [Docker Compose](https://github.com/Alfresco/acs-deployment/tree/master/docs/docker-compose#readme) * [Helm / Kubernetes](https://github.com/Alfresco/acs-deployment/tree/master/docs/helm#readme) For non-containerized reference deployment, see Ansible Playbook project: * [Ansible Playbooks](https://github.com/Alfresco/alfresco-ansible-deployment#readme) ### Release Process For a complete walk-through check out the [build-and-release.MD](https://github.com/Alfresco/alfresco-transform-core/tree/master/docs/build-and-release.md) under the `docs` folder. ### Contributing guide Please use [this guide](https://github.com/Alfresco/alfresco-repository/blob/master/CONTRIBUTING.md) to make a contribution to the project.