mirror of
https://github.com/Alfresco/alfresco-community-repo.git
synced 2025-07-24 17:32:48 +00:00
MNT-21702 : Kerberos SSO fallback mechanism for WebDAV (#765) Reinstated 'part' of the reverted code change originally made in MNT-16931 to handle fallback correctly for WebDAV in a kerberos environment. (cherry picked from commit 4091cb9d4b1cd643f9678a4c5c9654963a72c266) [MNT-21758] Cannot map an AOS / WebDAV drive with Kerberos SSO enabled (#784) - Add multi catch for Illegal Argument and Not Found when findWebScript is called. (cherry picked from commit 59517076d2dfc0477870007a7d136cdf907e322f) SEARCH-2363: Escape special characters when serializing ChildAssociationRefs and AssociationRefs objects (#788) (cherry picked from commit f941a6e283517c0949f57fefdb1e7e8d7cfb46c4) ACS-580: Direct access urls - revert initial api version (#792) (cherry picked from commit 7f4959fdfaeaf1b7debd78df5dcacd4a5b9e809a)
Alfresco Remote API
Remote API is a library packaged as a jar file which is part of Alfresco Content Services Repository. The library contains the following:
- REST API framework
- WebScript implementations including V1 REST APIs
- OpenCMIS implementations
Building and testing
The project can be built by running Maven command:
mvn clean install
The tests are combined in test classes split by test type or Spring application context used in the test, see classes in src/test/java/org/alfresco. All of these classes as well as individual tests can be run by specifying the test class name and a set of DB connection properties, for example:
mvn clean test -Dtest=SomeTest -Ddb.driver=org.postgresql.Driver -Ddb.name=alfresco -Ddb.url=jdbc:postgresql:alfresco -Ddb.username=alfresco -Ddb.password=alfresco
Artifacts
The artifacts can be obtained by:
- downloading from Alfresco repository
- getting as Maven dependency by adding the dependency to your pom file:
<dependency>
<groupId>org.alfresco</groupId>
<artifactId>alfresco-remote-api</artifactId>
<version>version</version>
</dependency>
and Alfresco Maven repository:
<repository>
<id>alfresco-maven-repo</id>
<url>https://artifacts.alfresco.com/nexus/content/groups/public</url>
</repository>
The SNAPSHOT version of the artifact is never published.
Contributing guide
Please use this guide to make a contribution to the project.