* [ACS-3160] replace reload4j with log4j2 * [ACS-3160] refactor log4j version in pom.xml files * ACS-3160 Add log4j2.properties file * [ACS-3160] convert log4jHierarchyInit properties * ACS-3222 Generate log4j2 rolling file in the Tomcat logs directory * ACS-3160 Fix reconfiguration in Log4JHierarchyInit * [ACS-3160] change loggers from log4j2 to slf4j (where possible) * ACS-3160 Load a set of augmenting/overriding log4j2.properties files * ACS-3160 Fix CheckRequiredClassesForLoggingConsoleUnitTest (adjust to log4j2) * ACS-3160 Enable CheckRequiredClassesForLoggingConsoleUnitTest * [ACS-3160] add appender util class * [ACS-3160] fix removeAbstractAppenderFromLogger * ACS-3160 Upgrade Log4j2 and Slf4j2 versions to the latest * ACS-3160 Temporarily remove AOS for test purposes [tas][db] * [ACS-3160] remove setting level from removeAbstractAppenderFromLogger * ACS-3160 Remove references to SanitizingPatternLayout [tas] * ACS-3892 Migrate ags-community-repo AMP to Log4j2 * ACS-3892 Reduce log4j-core scope to test * ACS-3160 Update the aos-module version to 1.5.0-DEV-LOG4J2 [tas][db] * [ACS-3924] upgrade greenmail version * [ACS-3924] remove exclusion from greenmail * ACS-3160 Fix NDC * ACS-3160 Revert the NDC_REF * ACS-3160 Test with googledrive with Log4j2 * ACS-3160 Log4j references cleanup Co-authored-by: Domenico Sibilio <domenicosibilio@gmail.com> Co-authored-by: Damian.Ujma@hyland.com <Damian.Ujma@hyland.com>
alfresco-community-repo
Alfresco Core
Alfresco Core is a library packaged as a jar file which contains the following:
- Various helpers and utils
- Canned queries interface and supporting classes
- Generic encryption supporting classes
Alfresco Data Model
Data model is a library packaged as a jar file which contains the following:
- Dictionary, Repository and Search Services interfaces
- Models for data types and Dictionary implementation
- Parsers
Alfresco Repository
Repository is a library packaged as a jar file which contains the following:
- DAOs and SQL scripts
- Various Service implementations
- Utility classes
Alfresco Remote API
Remote API is a library packaged as a jar file which contains the following:
- REST API framework
- WebScript implementations including V1 REST APIs
- OpenCMIS implementations
Artifacts
The artifacts can be obtained by:
- downloading from Alfresco maven repository
- as Maven dependency by adding the dependency to your pom file:
<dependency>
<groupId>org.alfresco</groupId>
<artifactId>alfresco-core</artifactId>
<version>version</version>
</dependency>
<dependency>
<groupId>org.alfresco</groupId>
<artifactId>alfresco-data-model</artifactId>
<version>version</version>
</dependency>
<dependency>
<groupId>org.alfresco</groupId>
<artifactId>alfresco-repository</artifactId>
<version>version</version>
</dependency>
<dependency>
<groupId>org.alfresco</groupId>
<artifactId>alfresco-remote-api</artifactId>
<version>version</version>
</dependency>
<dependency>
<groupId>org.alfresco</groupId>
<artifactId>content-services-community</artifactId>
<version>version</version>
<type>war</type>
</dependency>
and Alfresco maven repository:
<repository>
<id>alfresco-maven-repo</id>
<url>https://artifacts.alfresco.com/nexus/content/groups/public</url>
</repository>
The SNAPSHOT versions of the artifact are not published.
Setting up and building your development environment
See the Development Tomcat Environment
page which will show you how to try out your repository changes in a local tomcat instance.
If you wish to use Docker images, take a look at the aliases ending in D
and the docker-compose files in this
project's test modules.
Branches
This project has a branch for each ACS release. For example the code in ACS 6.2.1 is a
branch called releases/6.2.2
. In addition to the original 6.2.2 release it will also contain Hot Fixes
added later. The latest unreleased code is on the master
branch. There are also .N
branches, such as
releases/7.1.N
on which we gather unreleased fixes for future service pack releases. They do not indicate
that one is planned.
For historic reasons the version of artifacts created on each branch do not match the ACS version.
For example artifact in ACS 7.2.0 will be 14.<something>
.
The enterprise projects which extend the alfresco-community-repo
use the same branch names and leading
artifact version number.
Contributing guide
Please use this guide to make a contribution to the project.