mirror of
https://github.com/Alfresco/alfresco-community-repo.git
synced 2025-07-31 17:39:05 +00:00
- Simplify dependencies and standardise order - README updated - Green builds - Changes to make Jars in enterprise war match - Changes to make files in enterprise image match - Added travis_wait 40 to the initial build as it can take 20 minutes to download artifacts - Removed NodesTest.siteConsumerWillGet403OnFileWithDisabledInherittedPermissions introduced in 7.0.0 and fails in earlier versions. - GetSiteMember[s]Tests changed in 7.0.0. Setting test back to previous values.
46 lines
1.4 KiB
XML
46 lines
1.4 KiB
XML
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
|
<modelVersion>4.0.0</modelVersion>
|
|
<artifactId>alfresco-community-repo-packaging</artifactId>
|
|
<name>Alfresco Community Repo Packaging</name>
|
|
<packaging>pom</packaging>
|
|
|
|
<parent>
|
|
<groupId>org.alfresco</groupId>
|
|
<artifactId>alfresco-community-repo</artifactId>
|
|
<version>7.183.300-TEST1-SNAPSHOT</version>
|
|
</parent>
|
|
|
|
<profiles>
|
|
<profile>
|
|
<id>fullBuild</id>
|
|
<activation>
|
|
<activeByDefault>true</activeByDefault>
|
|
</activation>
|
|
<modules>
|
|
<module>war</module>
|
|
<module>docker-alfresco</module>
|
|
</modules>
|
|
</profile>
|
|
<profile>
|
|
<id>community</id>
|
|
<modules>
|
|
<module>war</module>
|
|
</modules>
|
|
</profile>
|
|
<profile>
|
|
<id>communityDocker</id>
|
|
<modules>
|
|
<module>war</module>
|
|
<module>docker-alfresco</module>
|
|
</modules>
|
|
</profile>
|
|
<profile>
|
|
<id>all-tas-tests</id>
|
|
<modules>
|
|
<module>tests</module>
|
|
</modules>
|
|
</profile>
|
|
</profiles>
|
|
|
|
</project>
|