-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ALFREDAPI-548 [test] first draft to support alfresco V7 & 23
* apix-impl changed the javax library to non-javax library dependencies * apix-rest-v1 has to be split up into * core * javax/jakarta specific classes
- Loading branch information
1 parent
b727159
commit f9fa1a3
Showing
110 changed files
with
206 additions
and
57 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
description = "Xenit Alfred API implementation Alfresco 23.1" | ||
|
||
ext { | ||
alfresco_version = '23.1.0' | ||
alfresco_min_version = alfresco_version.substring(0, getSecondDotPosition(alfresco_version)) + ".0" | ||
//Not setting alfresco_max_version here to make it easier to test on next Alfresco version (only for latest version) | ||
alfresco_max_version = null // explicit null to overwrite properties from other projects | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
description = "Xenit Alfred API implementation Alfresco 23.1" | ||
|
||
ext { | ||
alfresco_version = '23.2.0' | ||
alfresco_min_version = alfresco_version.substring(0, getSecondDotPosition(alfresco_version)) + ".0" | ||
//Not setting alfresco_max_version here to make it easier to test on next Alfresco version (only for latest version) | ||
alfresco_max_version = null // explicit null to overwrite properties from other projects | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
dependencies { | ||
baseAlfrescoWar platform("org.alfresco:acs-packaging:23.1.0") | ||
baseAlfrescoWar 'org.alfresco:content-services@war' | ||
} | ||
|
||
dockerAlfresco { | ||
baseImage = 'private.docker.xenit.eu/alfresco-enterprise/alfresco-repository-enterprise:23.1.0' | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
version: '2' | ||
services: | ||
alfresco-core: | ||
ports: | ||
- 8000:8000 | ||
environment: | ||
- DEBUG=true | ||
- SHARE_HOST=alfresco-share | ||
alfresco-share: | ||
image: docker.io/xenit/alfresco-share-community:23.1.0 | ||
ports: | ||
- 8090:8080 | ||
environment: | ||
- DEBUG=true | ||
- ALFRESCO_HOST=alfresco-core | ||
- ALFRESCO_INTERNAL_HOST=alfresco-core |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,48 @@ | ||
version: '2' | ||
|
||
services: | ||
alfresco-core: | ||
image: ${DOCKER_IMAGE} | ||
ports: | ||
- "${DOCKER_IP}:8080:8080" | ||
volumes: | ||
- alfresco:/opt/alfresco/alf_data | ||
restart: unless-stopped | ||
environment: | ||
- SOLR_HOST=solr | ||
- TERM=xterm | ||
- GLOBAL_messaging.broker.url=failover:(nio://activemq:61616)?timeout=3000&jms.useCompression=true | ||
- GLOBAL_localTransform.core-aio.url=http://transform-core-aio:8090/ | ||
|
||
solr: | ||
image: private.docker.xenit.eu/alfresco-enterprise/alfresco-solr6:2.0.8.2 | ||
volumes: | ||
- solr:/opt/alfresco/alf_data | ||
restart: unless-stopped | ||
environment: | ||
- ALFRESCO_HOST=alfresco-core | ||
|
||
postgresql: | ||
image: docker.io/xenit/postgres | ||
volumes: | ||
- postgres:/var/lib/postgresql/data | ||
environment: | ||
- POSTGRES_USER=alfresco | ||
- POSTGRES_PASSWORD=admin | ||
- POSTGRES_DB=alfresco | ||
restart: unless-stopped | ||
|
||
activemq: | ||
image: alfresco/alfresco-activemq:5.16.1 | ||
mem_limit: 1g | ||
|
||
transform-core-aio: | ||
image: alfresco/alfresco-transform-core-aio:2.5.0 | ||
environment: | ||
JAVA_OPTS: " -Xms256m -Xmx512m" | ||
ACTIVEMQ_URL: "nio://activemq:61616" | ||
|
||
volumes: | ||
alfresco: | ||
solr: | ||
postgres: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.