├── .ci.settings.xml ├── .gitattributes ├── .gitbugtraq ├── .github ├── dependabot.yml └── workflows │ ├── ci.yml │ └── precommit_formatter.yml ├── .gitignore ├── .pre-commit-config.yaml ├── .secrets.baseline ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── dev ├── README.md ├── aliases ├── cherry-pick-old-projects-setup.sh ├── dev-acs-amps-overlay │ └── pom.xml ├── dev-repo-amps-overlay │ └── pom.xml ├── dev-share-amps-overlay │ └── pom.xml ├── dev-tomcat │ ├── pom.xml │ └── src │ │ ├── assembly │ │ └── tomcat-conf.xml │ │ └── main │ │ └── tomcat │ │ ├── alfresco-context.xml │ │ ├── shared │ │ └── classes │ │ │ ├── alfresco-global.properties │ │ │ └── alfresco │ │ │ ├── extension │ │ │ └── custom-log4j2.properties │ │ │ └── keystore │ │ │ └── keystore │ │ └── tomcat-users.xml ├── docker-compose.yml └── pom.xml ├── distribution-ags ├── pom.xml └── src │ └── assemble │ └── ags-distribution.xml ├── distribution ├── pom.xml └── src │ ├── assembly │ └── distribution.xml │ └── main │ └── resources │ ├── README.txt │ ├── bin │ ├── apply_amps.bat │ ├── apply_amps.sh │ ├── clean_tomcat.bat │ └── clean_tomcat.sh │ └── web-server │ └── conf │ └── Catalina │ └── localhost │ └── alfresco.xml ├── docker-alfresco ├── .maven-dockerignore ├── Dockerfile ├── ags │ ├── Dockerfile │ └── pom.xml └── pom.xml ├── docker-share ├── ags │ ├── Dockerfile │ └── pom.xml └── pom.xml ├── l10n.properties ├── pom.xml ├── public-javadoc └── pom.xml ├── scripts ├── ci │ ├── build.sh │ ├── build_functions.sh │ ├── cleanup_cache.sh │ ├── copy_ags_to_release_bucket.sh │ ├── copy_to_release_bucket.sh │ ├── init.sh │ ├── maven_release.sh │ ├── prepare_staging_deploy.sh │ └── verify_release_tag.sh ├── dev │ ├── dev_functions.sh │ ├── linkPoms.sh │ ├── prepare_buildx.sh │ ├── start-compose.sh │ └── unlinkPoms.sh └── hooks │ └── check-format-and-headers.sh └── tests ├── environment ├── .env ├── docker-compose-minimal+transforms.yml └── docker-compose-minimal.yml ├── pom.xml ├── tas-cmis ├── pom.xml └── src │ └── test │ └── resources │ ├── alfresco-cmis-context.xml │ ├── cmis-suite.xml │ ├── default.properties │ ├── log4j2.properties │ └── shared-resources │ ├── model │ └── tas-model.xml │ └── testdata │ ├── cmis-checkIn.txt │ └── cmis-resource ├── tas-distribution-zip ├── pom.xml └── src │ └── test │ ├── java │ └── org │ │ └── alfresco │ │ └── distribution │ │ └── CheckDistributionZipContents.java │ └── resources │ └── distribution-suite.xml ├── tas-email ├── pom.xml └── src │ └── test │ ├── java │ └── org │ │ └── alfresco │ │ └── email │ │ └── imap │ │ └── ImapReadMessagesAcsTests.java │ └── resources │ ├── alfresco-email-context.xml │ ├── default.properties │ ├── email-suite.xml │ ├── log4j2.properties │ └── shared-resources │ ├── email-runner-suite.xml │ ├── email-sanity-suite.xml │ ├── email-suites.xml │ ├── tas-email-sanity-suite.xml │ ├── testCount.xml │ └── testdata │ ├── imap-input-data.xml │ └── imap-resource ├── tas-integration ├── pom.xml └── src │ └── test │ └── resources │ ├── alfresco-integration-context.xml │ ├── default.properties │ ├── integration-suite.xml │ ├── log4j2.properties │ └── shared-resources │ └── testdata │ ├── .keepme │ ├── extentionPointTestSuiteTemplate.xsd │ ├── flower.jpg │ ├── my-file.tif │ ├── nonemptyupload.txt │ ├── test.docx │ ├── test.html │ ├── test.msg │ ├── test.rtf │ ├── testUploadFile.txt │ ├── testUserShoudDeleteFiles.txt │ └── userCSV.csv ├── tas-restapi ├── pom.xml └── src │ └── test │ └── resources │ ├── alfresco-restapi-context.xml │ ├── default.properties │ ├── log4j2.properties │ ├── restapi-suite.xml │ ├── shared-resources │ └── testdata │ │ ├── UTF-8File.txt │ │ ├── avatar.jpg │ │ ├── content-zip-test.zip │ │ ├── iso8859File.txt │ │ ├── larger.pdf │ │ ├── my-file.tif │ │ ├── quick │ │ ├── quick.doc │ │ ├── quick.docx │ │ ├── quick.gif │ │ ├── quick.jpg │ │ ├── quick.msg │ │ ├── quick.pdf │ │ ├── quick.png │ │ ├── quick.ppt │ │ ├── quick.pptx │ │ ├── quick.tiff │ │ ├── quick.txt │ │ ├── quick.xls │ │ └── quick.xlsx │ │ ├── restapi-resource │ │ └── sampleContent.txt │ └── test-suites │ ├── part1-suite.xml │ ├── part2-suite.xml │ └── part3-suite.xml └── tas-webdav ├── pom.xml └── src └── test └── resources ├── alfresco-webdav-context.xml ├── default.properties ├── log4j2.properties ├── shared-resources └── testdata │ ├── nonemptyupload.txt │ ├── textFile.txt │ └── webdav-resource └── webdav-suite.xml /.ci.settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/acs-community-packaging/HEAD/.ci.settings.xml -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/acs-community-packaging/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitbugtraq: -------------------------------------------------------------------------------- 1 | # For SmartGit 2 | [bugtraq "jira"] 3 | url = https://alfresco.atlassian.net/browse/%BUGID% 4 | logRegex = ([A-Z]+-\\d+) 5 | -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/acs-community-packaging/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/acs-community-packaging/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/precommit_formatter.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/acs-community-packaging/HEAD/.github/workflows/precommit_formatter.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/acs-community-packaging/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/acs-community-packaging/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /.secrets.baseline: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/acs-community-packaging/HEAD/.secrets.baseline -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/acs-community-packaging/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/acs-community-packaging/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/acs-community-packaging/HEAD/README.md -------------------------------------------------------------------------------- /dev/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/acs-community-packaging/HEAD/dev/README.md -------------------------------------------------------------------------------- /dev/aliases: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/acs-community-packaging/HEAD/dev/aliases -------------------------------------------------------------------------------- /dev/cherry-pick-old-projects-setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/acs-community-packaging/HEAD/dev/cherry-pick-old-projects-setup.sh -------------------------------------------------------------------------------- /dev/dev-acs-amps-overlay/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/acs-community-packaging/HEAD/dev/dev-acs-amps-overlay/pom.xml -------------------------------------------------------------------------------- /dev/dev-repo-amps-overlay/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/acs-community-packaging/HEAD/dev/dev-repo-amps-overlay/pom.xml -------------------------------------------------------------------------------- /dev/dev-share-amps-overlay/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/acs-community-packaging/HEAD/dev/dev-share-amps-overlay/pom.xml -------------------------------------------------------------------------------- /dev/dev-tomcat/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/acs-community-packaging/HEAD/dev/dev-tomcat/pom.xml -------------------------------------------------------------------------------- /dev/dev-tomcat/src/assembly/tomcat-conf.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/acs-community-packaging/HEAD/dev/dev-tomcat/src/assembly/tomcat-conf.xml -------------------------------------------------------------------------------- /dev/dev-tomcat/src/main/tomcat/alfresco-context.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/acs-community-packaging/HEAD/dev/dev-tomcat/src/main/tomcat/alfresco-context.xml -------------------------------------------------------------------------------- /dev/dev-tomcat/src/main/tomcat/shared/classes/alfresco-global.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/acs-community-packaging/HEAD/dev/dev-tomcat/src/main/tomcat/shared/classes/alfresco-global.properties -------------------------------------------------------------------------------- /dev/dev-tomcat/src/main/tomcat/shared/classes/alfresco/extension/custom-log4j2.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/acs-community-packaging/HEAD/dev/dev-tomcat/src/main/tomcat/shared/classes/alfresco/extension/custom-log4j2.properties -------------------------------------------------------------------------------- /dev/dev-tomcat/src/main/tomcat/shared/classes/alfresco/keystore/keystore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/acs-community-packaging/HEAD/dev/dev-tomcat/src/main/tomcat/shared/classes/alfresco/keystore/keystore -------------------------------------------------------------------------------- /dev/dev-tomcat/src/main/tomcat/tomcat-users.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/acs-community-packaging/HEAD/dev/dev-tomcat/src/main/tomcat/tomcat-users.xml -------------------------------------------------------------------------------- /dev/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/acs-community-packaging/HEAD/dev/docker-compose.yml -------------------------------------------------------------------------------- /dev/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/acs-community-packaging/HEAD/dev/pom.xml -------------------------------------------------------------------------------- /distribution-ags/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/acs-community-packaging/HEAD/distribution-ags/pom.xml -------------------------------------------------------------------------------- /distribution-ags/src/assemble/ags-distribution.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/acs-community-packaging/HEAD/distribution-ags/src/assemble/ags-distribution.xml -------------------------------------------------------------------------------- /distribution/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/acs-community-packaging/HEAD/distribution/pom.xml -------------------------------------------------------------------------------- /distribution/src/assembly/distribution.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/acs-community-packaging/HEAD/distribution/src/assembly/distribution.xml -------------------------------------------------------------------------------- /distribution/src/main/resources/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/acs-community-packaging/HEAD/distribution/src/main/resources/README.txt -------------------------------------------------------------------------------- /distribution/src/main/resources/bin/apply_amps.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/acs-community-packaging/HEAD/distribution/src/main/resources/bin/apply_amps.bat -------------------------------------------------------------------------------- /distribution/src/main/resources/bin/apply_amps.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/acs-community-packaging/HEAD/distribution/src/main/resources/bin/apply_amps.sh -------------------------------------------------------------------------------- /distribution/src/main/resources/bin/clean_tomcat.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/acs-community-packaging/HEAD/distribution/src/main/resources/bin/clean_tomcat.bat -------------------------------------------------------------------------------- /distribution/src/main/resources/bin/clean_tomcat.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/acs-community-packaging/HEAD/distribution/src/main/resources/bin/clean_tomcat.sh -------------------------------------------------------------------------------- /distribution/src/main/resources/web-server/conf/Catalina/localhost/alfresco.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/acs-community-packaging/HEAD/distribution/src/main/resources/web-server/conf/Catalina/localhost/alfresco.xml -------------------------------------------------------------------------------- /docker-alfresco/.maven-dockerignore: -------------------------------------------------------------------------------- 1 | target/docker/ -------------------------------------------------------------------------------- /docker-alfresco/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/acs-community-packaging/HEAD/docker-alfresco/Dockerfile -------------------------------------------------------------------------------- /docker-alfresco/ags/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/acs-community-packaging/HEAD/docker-alfresco/ags/Dockerfile -------------------------------------------------------------------------------- /docker-alfresco/ags/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/acs-community-packaging/HEAD/docker-alfresco/ags/pom.xml -------------------------------------------------------------------------------- /docker-alfresco/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/acs-community-packaging/HEAD/docker-alfresco/pom.xml -------------------------------------------------------------------------------- /docker-share/ags/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/acs-community-packaging/HEAD/docker-share/ags/Dockerfile -------------------------------------------------------------------------------- /docker-share/ags/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/acs-community-packaging/HEAD/docker-share/ags/pom.xml -------------------------------------------------------------------------------- /docker-share/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/acs-community-packaging/HEAD/docker-share/pom.xml -------------------------------------------------------------------------------- /l10n.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/acs-community-packaging/HEAD/l10n.properties -------------------------------------------------------------------------------- /pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/acs-community-packaging/HEAD/pom.xml -------------------------------------------------------------------------------- /public-javadoc/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/acs-community-packaging/HEAD/public-javadoc/pom.xml -------------------------------------------------------------------------------- /scripts/ci/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/acs-community-packaging/HEAD/scripts/ci/build.sh -------------------------------------------------------------------------------- /scripts/ci/build_functions.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/acs-community-packaging/HEAD/scripts/ci/build_functions.sh -------------------------------------------------------------------------------- /scripts/ci/cleanup_cache.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/acs-community-packaging/HEAD/scripts/ci/cleanup_cache.sh -------------------------------------------------------------------------------- /scripts/ci/copy_ags_to_release_bucket.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/acs-community-packaging/HEAD/scripts/ci/copy_ags_to_release_bucket.sh -------------------------------------------------------------------------------- /scripts/ci/copy_to_release_bucket.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/acs-community-packaging/HEAD/scripts/ci/copy_to_release_bucket.sh -------------------------------------------------------------------------------- /scripts/ci/init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/acs-community-packaging/HEAD/scripts/ci/init.sh -------------------------------------------------------------------------------- /scripts/ci/maven_release.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/acs-community-packaging/HEAD/scripts/ci/maven_release.sh -------------------------------------------------------------------------------- /scripts/ci/prepare_staging_deploy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/acs-community-packaging/HEAD/scripts/ci/prepare_staging_deploy.sh -------------------------------------------------------------------------------- /scripts/ci/verify_release_tag.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/acs-community-packaging/HEAD/scripts/ci/verify_release_tag.sh -------------------------------------------------------------------------------- /scripts/dev/dev_functions.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/acs-community-packaging/HEAD/scripts/dev/dev_functions.sh -------------------------------------------------------------------------------- /scripts/dev/linkPoms.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/acs-community-packaging/HEAD/scripts/dev/linkPoms.sh -------------------------------------------------------------------------------- /scripts/dev/prepare_buildx.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/acs-community-packaging/HEAD/scripts/dev/prepare_buildx.sh -------------------------------------------------------------------------------- /scripts/dev/start-compose.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/acs-community-packaging/HEAD/scripts/dev/start-compose.sh -------------------------------------------------------------------------------- /scripts/dev/unlinkPoms.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/acs-community-packaging/HEAD/scripts/dev/unlinkPoms.sh -------------------------------------------------------------------------------- /scripts/hooks/check-format-and-headers.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/acs-community-packaging/HEAD/scripts/hooks/check-format-and-headers.sh -------------------------------------------------------------------------------- /tests/environment/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/acs-community-packaging/HEAD/tests/environment/.env -------------------------------------------------------------------------------- /tests/environment/docker-compose-minimal+transforms.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/acs-community-packaging/HEAD/tests/environment/docker-compose-minimal+transforms.yml -------------------------------------------------------------------------------- /tests/environment/docker-compose-minimal.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/acs-community-packaging/HEAD/tests/environment/docker-compose-minimal.yml -------------------------------------------------------------------------------- /tests/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/acs-community-packaging/HEAD/tests/pom.xml -------------------------------------------------------------------------------- /tests/tas-cmis/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/acs-community-packaging/HEAD/tests/tas-cmis/pom.xml -------------------------------------------------------------------------------- /tests/tas-cmis/src/test/resources/alfresco-cmis-context.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/acs-community-packaging/HEAD/tests/tas-cmis/src/test/resources/alfresco-cmis-context.xml -------------------------------------------------------------------------------- /tests/tas-cmis/src/test/resources/cmis-suite.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/acs-community-packaging/HEAD/tests/tas-cmis/src/test/resources/cmis-suite.xml -------------------------------------------------------------------------------- /tests/tas-cmis/src/test/resources/default.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/acs-community-packaging/HEAD/tests/tas-cmis/src/test/resources/default.properties -------------------------------------------------------------------------------- /tests/tas-cmis/src/test/resources/log4j2.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/acs-community-packaging/HEAD/tests/tas-cmis/src/test/resources/log4j2.properties -------------------------------------------------------------------------------- /tests/tas-cmis/src/test/resources/shared-resources/model/tas-model.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/acs-community-packaging/HEAD/tests/tas-cmis/src/test/resources/shared-resources/model/tas-model.xml -------------------------------------------------------------------------------- /tests/tas-cmis/src/test/resources/shared-resources/testdata/cmis-checkIn.txt: -------------------------------------------------------------------------------- 1 | Sp23xfcYhUBYpsXuPFzn8nVQ -------------------------------------------------------------------------------- /tests/tas-cmis/src/test/resources/shared-resources/testdata/cmis-resource: -------------------------------------------------------------------------------- 1 | tas -------------------------------------------------------------------------------- /tests/tas-distribution-zip/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/acs-community-packaging/HEAD/tests/tas-distribution-zip/pom.xml -------------------------------------------------------------------------------- /tests/tas-distribution-zip/src/test/java/org/alfresco/distribution/CheckDistributionZipContents.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/acs-community-packaging/HEAD/tests/tas-distribution-zip/src/test/java/org/alfresco/distribution/CheckDistributionZipContents.java -------------------------------------------------------------------------------- /tests/tas-distribution-zip/src/test/resources/distribution-suite.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/acs-community-packaging/HEAD/tests/tas-distribution-zip/src/test/resources/distribution-suite.xml -------------------------------------------------------------------------------- /tests/tas-email/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/acs-community-packaging/HEAD/tests/tas-email/pom.xml -------------------------------------------------------------------------------- /tests/tas-email/src/test/java/org/alfresco/email/imap/ImapReadMessagesAcsTests.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/acs-community-packaging/HEAD/tests/tas-email/src/test/java/org/alfresco/email/imap/ImapReadMessagesAcsTests.java -------------------------------------------------------------------------------- /tests/tas-email/src/test/resources/alfresco-email-context.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/acs-community-packaging/HEAD/tests/tas-email/src/test/resources/alfresco-email-context.xml -------------------------------------------------------------------------------- /tests/tas-email/src/test/resources/default.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/acs-community-packaging/HEAD/tests/tas-email/src/test/resources/default.properties -------------------------------------------------------------------------------- /tests/tas-email/src/test/resources/email-suite.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/acs-community-packaging/HEAD/tests/tas-email/src/test/resources/email-suite.xml -------------------------------------------------------------------------------- /tests/tas-email/src/test/resources/log4j2.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/acs-community-packaging/HEAD/tests/tas-email/src/test/resources/log4j2.properties -------------------------------------------------------------------------------- /tests/tas-email/src/test/resources/shared-resources/email-runner-suite.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/acs-community-packaging/HEAD/tests/tas-email/src/test/resources/shared-resources/email-runner-suite.xml -------------------------------------------------------------------------------- /tests/tas-email/src/test/resources/shared-resources/email-sanity-suite.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/acs-community-packaging/HEAD/tests/tas-email/src/test/resources/shared-resources/email-sanity-suite.xml -------------------------------------------------------------------------------- /tests/tas-email/src/test/resources/shared-resources/email-suites.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/acs-community-packaging/HEAD/tests/tas-email/src/test/resources/shared-resources/email-suites.xml -------------------------------------------------------------------------------- /tests/tas-email/src/test/resources/shared-resources/tas-email-sanity-suite.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/acs-community-packaging/HEAD/tests/tas-email/src/test/resources/shared-resources/tas-email-sanity-suite.xml -------------------------------------------------------------------------------- /tests/tas-email/src/test/resources/shared-resources/testCount.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/acs-community-packaging/HEAD/tests/tas-email/src/test/resources/shared-resources/testCount.xml -------------------------------------------------------------------------------- /tests/tas-email/src/test/resources/shared-resources/testdata/imap-input-data.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/acs-community-packaging/HEAD/tests/tas-email/src/test/resources/shared-resources/testdata/imap-input-data.xml -------------------------------------------------------------------------------- /tests/tas-email/src/test/resources/shared-resources/testdata/imap-resource: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/tas-integration/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/acs-community-packaging/HEAD/tests/tas-integration/pom.xml -------------------------------------------------------------------------------- /tests/tas-integration/src/test/resources/alfresco-integration-context.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/acs-community-packaging/HEAD/tests/tas-integration/src/test/resources/alfresco-integration-context.xml -------------------------------------------------------------------------------- /tests/tas-integration/src/test/resources/default.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/acs-community-packaging/HEAD/tests/tas-integration/src/test/resources/default.properties -------------------------------------------------------------------------------- /tests/tas-integration/src/test/resources/integration-suite.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/acs-community-packaging/HEAD/tests/tas-integration/src/test/resources/integration-suite.xml -------------------------------------------------------------------------------- /tests/tas-integration/src/test/resources/log4j2.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/acs-community-packaging/HEAD/tests/tas-integration/src/test/resources/log4j2.properties -------------------------------------------------------------------------------- /tests/tas-integration/src/test/resources/shared-resources/testdata/.keepme: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/tas-integration/src/test/resources/shared-resources/testdata/extentionPointTestSuiteTemplate.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/acs-community-packaging/HEAD/tests/tas-integration/src/test/resources/shared-resources/testdata/extentionPointTestSuiteTemplate.xsd -------------------------------------------------------------------------------- /tests/tas-integration/src/test/resources/shared-resources/testdata/flower.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/acs-community-packaging/HEAD/tests/tas-integration/src/test/resources/shared-resources/testdata/flower.jpg -------------------------------------------------------------------------------- /tests/tas-integration/src/test/resources/shared-resources/testdata/my-file.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/acs-community-packaging/HEAD/tests/tas-integration/src/test/resources/shared-resources/testdata/my-file.tif -------------------------------------------------------------------------------- /tests/tas-integration/src/test/resources/shared-resources/testdata/nonemptyupload.txt: -------------------------------------------------------------------------------- 1 | text file to upload -------------------------------------------------------------------------------- /tests/tas-integration/src/test/resources/shared-resources/testdata/test.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/acs-community-packaging/HEAD/tests/tas-integration/src/test/resources/shared-resources/testdata/test.docx -------------------------------------------------------------------------------- /tests/tas-integration/src/test/resources/shared-resources/testdata/test.html: -------------------------------------------------------------------------------- 1 | test 2 | -------------------------------------------------------------------------------- /tests/tas-integration/src/test/resources/shared-resources/testdata/test.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/acs-community-packaging/HEAD/tests/tas-integration/src/test/resources/shared-resources/testdata/test.msg -------------------------------------------------------------------------------- /tests/tas-integration/src/test/resources/shared-resources/testdata/test.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/acs-community-packaging/HEAD/tests/tas-integration/src/test/resources/shared-resources/testdata/test.rtf -------------------------------------------------------------------------------- /tests/tas-integration/src/test/resources/shared-resources/testdata/testUploadFile.txt: -------------------------------------------------------------------------------- 1 | test upload file. -------------------------------------------------------------------------------- /tests/tas-integration/src/test/resources/shared-resources/testdata/testUserShoudDeleteFiles.txt: -------------------------------------------------------------------------------- 1 | test -------------------------------------------------------------------------------- /tests/tas-integration/src/test/resources/shared-resources/testdata/userCSV.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/acs-community-packaging/HEAD/tests/tas-integration/src/test/resources/shared-resources/testdata/userCSV.csv -------------------------------------------------------------------------------- /tests/tas-restapi/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/acs-community-packaging/HEAD/tests/tas-restapi/pom.xml -------------------------------------------------------------------------------- /tests/tas-restapi/src/test/resources/alfresco-restapi-context.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/acs-community-packaging/HEAD/tests/tas-restapi/src/test/resources/alfresco-restapi-context.xml -------------------------------------------------------------------------------- /tests/tas-restapi/src/test/resources/default.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/acs-community-packaging/HEAD/tests/tas-restapi/src/test/resources/default.properties -------------------------------------------------------------------------------- /tests/tas-restapi/src/test/resources/log4j2.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/acs-community-packaging/HEAD/tests/tas-restapi/src/test/resources/log4j2.properties -------------------------------------------------------------------------------- /tests/tas-restapi/src/test/resources/restapi-suite.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/acs-community-packaging/HEAD/tests/tas-restapi/src/test/resources/restapi-suite.xml -------------------------------------------------------------------------------- /tests/tas-restapi/src/test/resources/shared-resources/testdata/UTF-8File.txt: -------------------------------------------------------------------------------- 1 | ∮ E⋅da = Q -------------------------------------------------------------------------------- /tests/tas-restapi/src/test/resources/shared-resources/testdata/avatar.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/acs-community-packaging/HEAD/tests/tas-restapi/src/test/resources/shared-resources/testdata/avatar.jpg -------------------------------------------------------------------------------- /tests/tas-restapi/src/test/resources/shared-resources/testdata/content-zip-test.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/acs-community-packaging/HEAD/tests/tas-restapi/src/test/resources/shared-resources/testdata/content-zip-test.zip -------------------------------------------------------------------------------- /tests/tas-restapi/src/test/resources/shared-resources/testdata/iso8859File.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/acs-community-packaging/HEAD/tests/tas-restapi/src/test/resources/shared-resources/testdata/iso8859File.txt -------------------------------------------------------------------------------- /tests/tas-restapi/src/test/resources/shared-resources/testdata/larger.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/acs-community-packaging/HEAD/tests/tas-restapi/src/test/resources/shared-resources/testdata/larger.pdf -------------------------------------------------------------------------------- /tests/tas-restapi/src/test/resources/shared-resources/testdata/my-file.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/acs-community-packaging/HEAD/tests/tas-restapi/src/test/resources/shared-resources/testdata/my-file.tif -------------------------------------------------------------------------------- /tests/tas-restapi/src/test/resources/shared-resources/testdata/quick/quick.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/acs-community-packaging/HEAD/tests/tas-restapi/src/test/resources/shared-resources/testdata/quick/quick.doc -------------------------------------------------------------------------------- /tests/tas-restapi/src/test/resources/shared-resources/testdata/quick/quick.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/acs-community-packaging/HEAD/tests/tas-restapi/src/test/resources/shared-resources/testdata/quick/quick.docx -------------------------------------------------------------------------------- /tests/tas-restapi/src/test/resources/shared-resources/testdata/quick/quick.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/acs-community-packaging/HEAD/tests/tas-restapi/src/test/resources/shared-resources/testdata/quick/quick.gif -------------------------------------------------------------------------------- /tests/tas-restapi/src/test/resources/shared-resources/testdata/quick/quick.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/acs-community-packaging/HEAD/tests/tas-restapi/src/test/resources/shared-resources/testdata/quick/quick.jpg -------------------------------------------------------------------------------- /tests/tas-restapi/src/test/resources/shared-resources/testdata/quick/quick.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/acs-community-packaging/HEAD/tests/tas-restapi/src/test/resources/shared-resources/testdata/quick/quick.msg -------------------------------------------------------------------------------- /tests/tas-restapi/src/test/resources/shared-resources/testdata/quick/quick.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/acs-community-packaging/HEAD/tests/tas-restapi/src/test/resources/shared-resources/testdata/quick/quick.pdf -------------------------------------------------------------------------------- /tests/tas-restapi/src/test/resources/shared-resources/testdata/quick/quick.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/acs-community-packaging/HEAD/tests/tas-restapi/src/test/resources/shared-resources/testdata/quick/quick.png -------------------------------------------------------------------------------- /tests/tas-restapi/src/test/resources/shared-resources/testdata/quick/quick.ppt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/acs-community-packaging/HEAD/tests/tas-restapi/src/test/resources/shared-resources/testdata/quick/quick.ppt -------------------------------------------------------------------------------- /tests/tas-restapi/src/test/resources/shared-resources/testdata/quick/quick.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/acs-community-packaging/HEAD/tests/tas-restapi/src/test/resources/shared-resources/testdata/quick/quick.pptx -------------------------------------------------------------------------------- /tests/tas-restapi/src/test/resources/shared-resources/testdata/quick/quick.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/acs-community-packaging/HEAD/tests/tas-restapi/src/test/resources/shared-resources/testdata/quick/quick.tiff -------------------------------------------------------------------------------- /tests/tas-restapi/src/test/resources/shared-resources/testdata/quick/quick.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/acs-community-packaging/HEAD/tests/tas-restapi/src/test/resources/shared-resources/testdata/quick/quick.txt -------------------------------------------------------------------------------- /tests/tas-restapi/src/test/resources/shared-resources/testdata/quick/quick.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/acs-community-packaging/HEAD/tests/tas-restapi/src/test/resources/shared-resources/testdata/quick/quick.xls -------------------------------------------------------------------------------- /tests/tas-restapi/src/test/resources/shared-resources/testdata/quick/quick.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/acs-community-packaging/HEAD/tests/tas-restapi/src/test/resources/shared-resources/testdata/quick/quick.xlsx -------------------------------------------------------------------------------- /tests/tas-restapi/src/test/resources/shared-resources/testdata/restapi-resource: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/tas-restapi/src/test/resources/shared-resources/testdata/sampleContent.txt: -------------------------------------------------------------------------------- 1 | Sample text. -------------------------------------------------------------------------------- /tests/tas-restapi/src/test/resources/test-suites/part1-suite.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/acs-community-packaging/HEAD/tests/tas-restapi/src/test/resources/test-suites/part1-suite.xml -------------------------------------------------------------------------------- /tests/tas-restapi/src/test/resources/test-suites/part2-suite.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/acs-community-packaging/HEAD/tests/tas-restapi/src/test/resources/test-suites/part2-suite.xml -------------------------------------------------------------------------------- /tests/tas-restapi/src/test/resources/test-suites/part3-suite.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/acs-community-packaging/HEAD/tests/tas-restapi/src/test/resources/test-suites/part3-suite.xml -------------------------------------------------------------------------------- /tests/tas-webdav/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/acs-community-packaging/HEAD/tests/tas-webdav/pom.xml -------------------------------------------------------------------------------- /tests/tas-webdav/src/test/resources/alfresco-webdav-context.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/acs-community-packaging/HEAD/tests/tas-webdav/src/test/resources/alfresco-webdav-context.xml -------------------------------------------------------------------------------- /tests/tas-webdav/src/test/resources/default.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/acs-community-packaging/HEAD/tests/tas-webdav/src/test/resources/default.properties -------------------------------------------------------------------------------- /tests/tas-webdav/src/test/resources/log4j2.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/acs-community-packaging/HEAD/tests/tas-webdav/src/test/resources/log4j2.properties -------------------------------------------------------------------------------- /tests/tas-webdav/src/test/resources/shared-resources/testdata/nonemptyupload.txt: -------------------------------------------------------------------------------- 1 | text file to upload -------------------------------------------------------------------------------- /tests/tas-webdav/src/test/resources/shared-resources/testdata/textFile.txt: -------------------------------------------------------------------------------- 1 | This is a test. -------------------------------------------------------------------------------- /tests/tas-webdav/src/test/resources/shared-resources/testdata/webdav-resource: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/tas-webdav/src/test/resources/webdav-suite.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/acs-community-packaging/HEAD/tests/tas-webdav/src/test/resources/webdav-suite.xml --------------------------------------------------------------------------------