mirror of
https://github.com/Alfresco/acs-community-packaging.git
synced 2026-09-16 18:13:21 +00:00
126229 adavis: Merged 5.1.N (5.1.2) to 5.2.N (5.2.1)
126219 adavis: Merged 5.0.N (5.0.4) to 5.1.N (5.1.2) (PARTIAL MERGE)
126218 adavis: Merged 5.0.3 (5.0.3.5) to 5.0.N (5.0.4)
126215 adavis: Removal of the Update Assistant
git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/services/full-installer/trunk@126230 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
105 lines
4.4 KiB
XML
105 lines
4.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/maven-v4_0_0.xsd">
|
|
<modelVersion>4.0.0</modelVersion>
|
|
<parent>
|
|
<groupId>org.alfresco</groupId>
|
|
<artifactId>alfresco-super-pom</artifactId>
|
|
<version>6</version>
|
|
</parent>
|
|
<artifactId>alfresco-full-installation</artifactId>
|
|
<version>5.2-SNAPSHOT</version>
|
|
<packaging>pom</packaging>
|
|
<name>Alfresco Full Installation</name>
|
|
|
|
<properties>
|
|
<!-- Alfresco Platform version -->
|
|
<alfresco.platform.version>5.2-SNAPSHOT</alfresco.platform.version>
|
|
|
|
<!-- Alfresco Share version -->
|
|
<alfresco.share.version>5.2-SNAPSHOT</alfresco.share.version>
|
|
|
|
<!-- Alfresco GoogleDocs integration version -->
|
|
<alfresco.googledocs.version>3.0.3</alfresco.googledocs.version>
|
|
|
|
<!-- Alfresco Office Services Module -->
|
|
<alfresco.aos-module.version>1.1</alfresco.aos-module.version>
|
|
|
|
<!-- Versions of binaries packaged in the installer -->
|
|
<installer.common.version>5.1-20151118</installer.common.version>
|
|
<installer.tomcat.version>7.0.59-alfresco-distribution</installer.tomcat.version>
|
|
<installer.java.version>1.8.0_65</installer.java.version>
|
|
<installer.postgresql.version>9.4.4-20151016</installer.postgresql.version>
|
|
<installer.libreoffice.version>4.4.5-20151016</installer.libreoffice.version>
|
|
<installer.ghostscript.version>8.64</installer.ghostscript.version>
|
|
<installer.imagemagick.version>6.9.1</installer.imagemagick.version>
|
|
|
|
<!-- Build timestamp for installer file name -->
|
|
<installer.build.timestamp>${maven.build.timestamp}</installer.build.timestamp>
|
|
<maven.build.timestamp.format>yyyyMMdd</maven.build.timestamp.format>
|
|
|
|
<!-- Install builder version -->
|
|
<installer.installbuilder.version>15.10.1</installer.installbuilder.version>
|
|
|
|
<!--
|
|
Build number (Default value is used unless overridden by command line)
|
|
Default value: SNAPSHOT-0
|
|
-->
|
|
<installer.build.number>SNAPSHOT-0</installer.build.number>
|
|
|
|
<!--
|
|
Installer version that will be used in the final name.
|
|
- ${installer.build.timestamp}-${installer.build.number} (SNAPSHOT version)
|
|
-->
|
|
<installer.version.name>${installer.build.timestamp}-${installer.build.number}</installer.version.name>
|
|
|
|
<alfresco.package.name>alfresco-community</alfresco.package.name>
|
|
<alfresco.distribution.name>${alfresco.package.name}-distribution</alfresco.distribution.name>
|
|
</properties>
|
|
|
|
<modules>
|
|
<module>distribution</module>
|
|
<module>public-javadoc</module>
|
|
</modules>
|
|
|
|
<profiles>
|
|
<profile>
|
|
<id>community</id>
|
|
<activation>
|
|
<activeByDefault>true</activeByDefault>
|
|
</activation>
|
|
<modules>
|
|
<module>installer</module>
|
|
</modules>
|
|
</profile>
|
|
<profile>
|
|
<id>enterprise</id>
|
|
<modules>
|
|
<module>enterprise-war-for-ear</module>
|
|
<module>ear</module>
|
|
<module>enterprise-distribution</module>
|
|
<module>enterprise-installer</module>
|
|
</modules>
|
|
</profile>
|
|
<profile>
|
|
<id>release</id>
|
|
<properties>
|
|
<maven.build.timestamp.format>yyyyMM</maven.build.timestamp.format>
|
|
<!--
|
|
Installer version that will be used in the final name.
|
|
- ${installer.build.timestamp}-EA (Early Access release version)
|
|
- ${installer.build.timestamp}-LA (Limited Access release version)
|
|
- ${installer.build.timestamp}-GA (General Availability release version)
|
|
-->
|
|
<installer.version.name>${installer.build.timestamp}${release.availability}</installer.version.name>
|
|
</properties>
|
|
</profile>
|
|
</profiles>
|
|
|
|
<distributionManagement>
|
|
<snapshotRepository>
|
|
<id>alfresco-internal-snapshots</id>
|
|
<url>https://artifacts.alfresco.com/nexus/content/repositories/internal-snapshots</url>
|
|
</snapshotRepository>
|
|
</distributionManagement>
|
|
</project>
|