mirror of
https://github.com/Alfresco/alfresco-community-repo.git
synced 2025-07-31 17:39:05 +00:00
Apply git configs (line endings)
This commit is contained in:
68
.gitignore
vendored
68
.gitignore
vendored
@@ -1,34 +1,34 @@
|
|||||||
*.class
|
*.class
|
||||||
|
|
||||||
# Eclipse
|
# Eclipse
|
||||||
.classpath
|
.classpath
|
||||||
.settings
|
.settings
|
||||||
.project
|
.project
|
||||||
|
|
||||||
# Intellij
|
# Intellij
|
||||||
.idea/
|
.idea/
|
||||||
*.iml
|
*.iml
|
||||||
*.iws
|
*.iws
|
||||||
|
|
||||||
# Mac
|
# Mac
|
||||||
.DS_Store
|
.DS_Store
|
||||||
|
|
||||||
# Maven
|
# Maven
|
||||||
target
|
target
|
||||||
*.log
|
*.log
|
||||||
*.log.*
|
*.log.*
|
||||||
|
|
||||||
# Mobile Tools for Java (J2ME)
|
# Mobile Tools for Java (J2ME)
|
||||||
|
|
||||||
.mtj
|
.mtj
|
||||||
.tmp/
|
.tmp/
|
||||||
|
|
||||||
# Package Files #
|
# Package Files #
|
||||||
|
|
||||||
*.jar
|
*.jar
|
||||||
*.war
|
*.war
|
||||||
*.ear
|
*.ear
|
||||||
|
|
||||||
# virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml
|
# virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml
|
||||||
|
|
||||||
hs_err_pid*
|
hs_err_pid*
|
||||||
|
@@ -1,118 +1,118 @@
|
|||||||
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
<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">
|
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
|
||||||
<modelVersion>4.0.0</modelVersion>
|
<modelVersion>4.0.0</modelVersion>
|
||||||
<parent>
|
<parent>
|
||||||
<groupId>org.alfresco</groupId>
|
<groupId>org.alfresco</groupId>
|
||||||
<artifactId>full-community-packaging</artifactId>
|
<artifactId>full-community-packaging</artifactId>
|
||||||
<version>6.0.0-SNAPSHOT</version>
|
<version>6.0.0-SNAPSHOT</version>
|
||||||
<relativePath>../pom.xml</relativePath>
|
<relativePath>../pom.xml</relativePath>
|
||||||
</parent>
|
</parent>
|
||||||
<artifactId>alfresco-content-services-community-full-distribution</artifactId>
|
<artifactId>alfresco-content-services-community-full-distribution</artifactId>
|
||||||
<packaging>pom</packaging>
|
<packaging>pom</packaging>
|
||||||
<name>Alfresco Content Services Community Full Distribution</name>
|
<name>Alfresco Content Services Community Full Distribution</name>
|
||||||
|
|
||||||
<!-- To replace in share-config-custom.xml -->
|
<!-- To replace in share-config-custom.xml -->
|
||||||
<properties>
|
<properties>
|
||||||
<BITROCK_TOMCAT_PORT>8080</BITROCK_TOMCAT_PORT>
|
<BITROCK_TOMCAT_PORT>8080</BITROCK_TOMCAT_PORT>
|
||||||
</properties>
|
</properties>
|
||||||
|
|
||||||
<dependencies>
|
<dependencies>
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.alfresco</groupId>
|
<groupId>org.alfresco</groupId>
|
||||||
<artifactId>alfresco-content-services-community-distribution</artifactId>
|
<artifactId>alfresco-content-services-community-distribution</artifactId>
|
||||||
<type>zip</type>
|
<type>zip</type>
|
||||||
<exclusions>
|
<exclusions>
|
||||||
<exclusion>
|
<exclusion>
|
||||||
<groupId>*</groupId>
|
<groupId>*</groupId>
|
||||||
<artifactId>*</artifactId>
|
<artifactId>*</artifactId>
|
||||||
</exclusion>
|
</exclusion>
|
||||||
</exclusions>
|
</exclusions>
|
||||||
</dependency>
|
</dependency>
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.alfresco</groupId>
|
<groupId>org.alfresco</groupId>
|
||||||
<artifactId>alfresco-solr4-distribution</artifactId>
|
<artifactId>alfresco-solr4-distribution</artifactId>
|
||||||
<type>zip</type>
|
<type>zip</type>
|
||||||
<exclusions>
|
<exclusions>
|
||||||
<exclusion>
|
<exclusion>
|
||||||
<groupId>*</groupId>
|
<groupId>*</groupId>
|
||||||
<artifactId>*</artifactId>
|
<artifactId>*</artifactId>
|
||||||
</exclusion>
|
</exclusion>
|
||||||
</exclusions>
|
</exclusions>
|
||||||
</dependency>
|
</dependency>
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.alfresco</groupId>
|
<groupId>org.alfresco</groupId>
|
||||||
<artifactId>alfresco-content-services-share-distribution</artifactId>
|
<artifactId>alfresco-content-services-share-distribution</artifactId>
|
||||||
<type>zip</type>
|
<type>zip</type>
|
||||||
<exclusions>
|
<exclusions>
|
||||||
<exclusion>
|
<exclusion>
|
||||||
<groupId>*</groupId>
|
<groupId>*</groupId>
|
||||||
<artifactId>*</artifactId>
|
<artifactId>*</artifactId>
|
||||||
</exclusion>
|
</exclusion>
|
||||||
</exclusions>
|
</exclusions>
|
||||||
</dependency>
|
</dependency>
|
||||||
</dependencies>
|
</dependencies>
|
||||||
|
|
||||||
<build>
|
<build>
|
||||||
<finalName>${project.artifactId}-${installer.version.name}</finalName>
|
<finalName>${project.artifactId}-${installer.version.name}</finalName>
|
||||||
<resources>
|
<resources>
|
||||||
<resource>
|
<resource>
|
||||||
<directory>src/main/resources</directory>
|
<directory>src/main/resources</directory>
|
||||||
<filtering>true</filtering>
|
<filtering>true</filtering>
|
||||||
</resource>
|
</resource>
|
||||||
</resources>
|
</resources>
|
||||||
<plugins>
|
<plugins>
|
||||||
<plugin>
|
<plugin>
|
||||||
<artifactId>maven-dependency-plugin</artifactId>
|
<artifactId>maven-dependency-plugin</artifactId>
|
||||||
<executions>
|
<executions>
|
||||||
<execution>
|
<execution>
|
||||||
<id>extract-keystore</id>
|
<id>extract-keystore</id>
|
||||||
<phase>generate-resources</phase>
|
<phase>generate-resources</phase>
|
||||||
<goals>
|
<goals>
|
||||||
<goal>unpack</goal>
|
<goal>unpack</goal>
|
||||||
</goals>
|
</goals>
|
||||||
<configuration>
|
<configuration>
|
||||||
<artifactItems>
|
<artifactItems>
|
||||||
<artifactItem>
|
<artifactItem>
|
||||||
<groupId>org.alfresco</groupId>
|
<groupId>org.alfresco</groupId>
|
||||||
<artifactId>alfresco-content-services-community-distribution</artifactId>
|
<artifactId>alfresco-content-services-community-distribution</artifactId>
|
||||||
<type>zip</type>
|
<type>zip</type>
|
||||||
</artifactItem>
|
</artifactItem>
|
||||||
<artifactItem>
|
<artifactItem>
|
||||||
<groupId>org.alfresco</groupId>
|
<groupId>org.alfresco</groupId>
|
||||||
<artifactId>alfresco-solr4-distribution</artifactId>
|
<artifactId>alfresco-solr4-distribution</artifactId>
|
||||||
<type>zip</type>
|
<type>zip</type>
|
||||||
<outputDirectory>${project.build.directory}/dependency/solr4</outputDirectory>
|
<outputDirectory>${project.build.directory}/dependency/solr4</outputDirectory>
|
||||||
</artifactItem>
|
</artifactItem>
|
||||||
<artifactItem>
|
<artifactItem>
|
||||||
<groupId>org.alfresco</groupId>
|
<groupId>org.alfresco</groupId>
|
||||||
<artifactId>alfresco-content-services-share-distribution</artifactId>
|
<artifactId>alfresco-content-services-share-distribution</artifactId>
|
||||||
<type>zip</type>
|
<type>zip</type>
|
||||||
</artifactItem>
|
</artifactItem>
|
||||||
</artifactItems>
|
</artifactItems>
|
||||||
</configuration>
|
</configuration>
|
||||||
</execution>
|
</execution>
|
||||||
</executions>
|
</executions>
|
||||||
</plugin>
|
</plugin>
|
||||||
|
|
||||||
<plugin>
|
<plugin>
|
||||||
<artifactId>maven-assembly-plugin</artifactId>
|
<artifactId>maven-assembly-plugin</artifactId>
|
||||||
<executions>
|
<executions>
|
||||||
<execution>
|
<execution>
|
||||||
<id>make-assembly</id>
|
<id>make-assembly</id>
|
||||||
<phase>package</phase>
|
<phase>package</phase>
|
||||||
<goals>
|
<goals>
|
||||||
<goal>single</goal>
|
<goal>single</goal>
|
||||||
</goals>
|
</goals>
|
||||||
<configuration>
|
<configuration>
|
||||||
<appendAssemblyId>false</appendAssemblyId>
|
<appendAssemblyId>false</appendAssemblyId>
|
||||||
<descriptors>
|
<descriptors>
|
||||||
<descriptor>src/assembly/full-distribution.xml</descriptor>
|
<descriptor>src/assembly/full-distribution.xml</descriptor>
|
||||||
</descriptors>
|
</descriptors>
|
||||||
</configuration>
|
</configuration>
|
||||||
</execution>
|
</execution>
|
||||||
</executions>
|
</executions>
|
||||||
</plugin>
|
</plugin>
|
||||||
</plugins>
|
</plugins>
|
||||||
</build>
|
</build>
|
||||||
|
|
||||||
</project>
|
</project>
|
||||||
|
@@ -1,62 +1,62 @@
|
|||||||
<assembly xmlns="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.2" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
<assembly xmlns="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.2" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
||||||
xsi:schemaLocation="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.2 http://maven.apache.org/xsd/assembly-1.1.2.xsd">
|
xsi:schemaLocation="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.2 http://maven.apache.org/xsd/assembly-1.1.2.xsd">
|
||||||
<id>distribution</id>
|
<id>distribution</id>
|
||||||
|
|
||||||
<includeBaseDirectory>false</includeBaseDirectory>
|
<includeBaseDirectory>false</includeBaseDirectory>
|
||||||
|
|
||||||
<formats>
|
<formats>
|
||||||
<format>zip</format>
|
<format>zip</format>
|
||||||
</formats>
|
</formats>
|
||||||
|
|
||||||
<fileSets>
|
<fileSets>
|
||||||
<!-- Local resources: README, etc. -->
|
<!-- Local resources: README, etc. -->
|
||||||
<fileSet>
|
<fileSet>
|
||||||
<directory>target/classes</directory>
|
<directory>target/classes</directory>
|
||||||
<outputDirectory></outputDirectory>
|
<outputDirectory></outputDirectory>
|
||||||
</fileSet>
|
</fileSet>
|
||||||
|
|
||||||
<!-- Platform Community Distribution -->
|
<!-- Platform Community Distribution -->
|
||||||
<fileSet>
|
<fileSet>
|
||||||
<directory>${project.build.directory}/dependency/alfresco-content-services-community-distribution-${dependency.acs-community-packaging.version}</directory>
|
<directory>${project.build.directory}/dependency/alfresco-content-services-community-distribution-${dependency.acs-community-packaging.version}</directory>
|
||||||
<outputDirectory/>
|
<outputDirectory/>
|
||||||
</fileSet>
|
</fileSet>
|
||||||
|
|
||||||
<!-- Platform Enterprise Distribution -->
|
<!-- Platform Enterprise Distribution -->
|
||||||
<fileSet>
|
<fileSet>
|
||||||
<directory>${project.build.directory}/dependency/alfresco-content-services-distribution-${dependency.acs-packaging.version}</directory>
|
<directory>${project.build.directory}/dependency/alfresco-content-services-distribution-${dependency.acs-packaging.version}</directory>
|
||||||
<outputDirectory/>
|
<outputDirectory/>
|
||||||
</fileSet>
|
</fileSet>
|
||||||
|
|
||||||
<!-- Solr4 Distribution -->
|
<!-- Solr4 Distribution -->
|
||||||
<fileSet>
|
<fileSet>
|
||||||
<directory>${project.build.directory}/dependency/solr4</directory>
|
<directory>${project.build.directory}/dependency/solr4</directory>
|
||||||
<outputDirectory>solr4</outputDirectory>
|
<outputDirectory>solr4</outputDirectory>
|
||||||
<excludes>
|
<excludes>
|
||||||
<exclude>solr4.war</exclude>
|
<exclude>solr4.war</exclude>
|
||||||
</excludes>
|
</excludes>
|
||||||
</fileSet>
|
</fileSet>
|
||||||
<fileSet>
|
<fileSet>
|
||||||
<directory>${project.build.directory}/dependency/solr4</directory>
|
<directory>${project.build.directory}/dependency/solr4</directory>
|
||||||
<outputDirectory>web-server/webapps</outputDirectory>
|
<outputDirectory>web-server/webapps</outputDirectory>
|
||||||
<includes>
|
<includes>
|
||||||
<include>solr4.war</include>
|
<include>solr4.war</include>
|
||||||
</includes>
|
</includes>
|
||||||
</fileSet>
|
</fileSet>
|
||||||
|
|
||||||
<!-- Share -->
|
<!-- Share -->
|
||||||
<fileSet>
|
<fileSet>
|
||||||
<directory>${project.build.directory}/dependency/alfresco-content-services-share-distribution-${alfresco.share.version}</directory>
|
<directory>${project.build.directory}/dependency/alfresco-content-services-share-distribution-${alfresco.share.version}</directory>
|
||||||
<outputDirectory/>
|
<outputDirectory/>
|
||||||
<includes>
|
<includes>
|
||||||
<include>web-server/**</include>
|
<include>web-server/**</include>
|
||||||
<include>modules/**</include>
|
<include>modules/**</include>
|
||||||
<include>amps/**</include>
|
<include>amps/**</include>
|
||||||
</includes>
|
</includes>
|
||||||
</fileSet>
|
</fileSet>
|
||||||
<fileSet>
|
<fileSet>
|
||||||
<directory>${project.build.directory}/dependency/alfresco-content-services-share-distribution-${alfresco.share.version}/web-extension-samples</directory>
|
<directory>${project.build.directory}/dependency/alfresco-content-services-share-distribution-${alfresco.share.version}/web-extension-samples</directory>
|
||||||
<outputDirectory>web-server/shared/classes/alfresco/web-extension</outputDirectory>
|
<outputDirectory>web-server/shared/classes/alfresco/web-extension</outputDirectory>
|
||||||
</fileSet>
|
</fileSet>
|
||||||
</fileSets>
|
</fileSets>
|
||||||
|
|
||||||
</assembly>
|
</assembly>
|
||||||
|
@@ -1,8 +1,8 @@
|
|||||||
Alfresco Community (Build: ${installer.version.name})
|
Alfresco Community (Build: ${installer.version.name})
|
||||||
===============================
|
===============================
|
||||||
|
|
||||||
Contains:
|
Contains:
|
||||||
- Alfresco Content Services Community: ${dependency.acs-community-packaging.version}
|
- Alfresco Content Services Community: ${dependency.acs-community-packaging.version}
|
||||||
- Alfresco Share: ${alfresco.share.version}
|
- Alfresco Share: ${alfresco.share.version}
|
||||||
|
|
||||||
For users of Alfresco Community Edition, more information on this release is available at https://community.alfresco.com/community/ecm
|
For users of Alfresco Community Edition, more information on this release is available at https://community.alfresco.com/community/ecm
|
||||||
|
@@ -1,15 +1,15 @@
|
|||||||
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
<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">
|
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
|
||||||
<modelVersion>4.0.0</modelVersion>
|
<modelVersion>4.0.0</modelVersion>
|
||||||
<artifactId>alfresco-installer-resources</artifactId>
|
<artifactId>alfresco-installer-resources</artifactId>
|
||||||
<packaging>jar</packaging>
|
<packaging>jar</packaging>
|
||||||
<name>Alfresco Content Services Installer Resources</name>
|
<name>Alfresco Content Services Installer Resources</name>
|
||||||
|
|
||||||
<parent>
|
<parent>
|
||||||
<groupId>org.alfresco</groupId>
|
<groupId>org.alfresco</groupId>
|
||||||
<artifactId>full-community-packaging</artifactId>
|
<artifactId>full-community-packaging</artifactId>
|
||||||
<version>6.0.0-SNAPSHOT</version>
|
<version>6.0.0-SNAPSHOT</version>
|
||||||
<relativePath>../pom.xml</relativePath>
|
<relativePath>../pom.xml</relativePath>
|
||||||
</parent>
|
</parent>
|
||||||
|
|
||||||
</project>
|
</project>
|
||||||
|
@@ -1,63 +1,63 @@
|
|||||||
<component>
|
<component>
|
||||||
<name>aosmodule</name>
|
<name>aosmodule</name>
|
||||||
<description>Alfresco Office Services</description>
|
<description>Alfresco Office Services</description>
|
||||||
<detailedDescription>Select this module to allow applications that can talk to a SharePoint server to talk to your Alfresco Content Services installation.</detailedDescription>
|
<detailedDescription>Select this module to allow applications that can talk to a SharePoint server to talk to your Alfresco Content Services installation.</detailedDescription>
|
||||||
<canBeEdited>1</canBeEdited>
|
<canBeEdited>1</canBeEdited>
|
||||||
<selected>1</selected>
|
<selected>1</selected>
|
||||||
<show>1</show>
|
<show>1</show>
|
||||||
<shouldPackRuleList>
|
<shouldPackRuleList>
|
||||||
<isTrue value="${aosmodule_component_enabled}" />
|
<isTrue value="${aosmodule_component_enabled}" />
|
||||||
</shouldPackRuleList>
|
</shouldPackRuleList>
|
||||||
<parameterList>
|
<parameterList>
|
||||||
<booleanParameter name="aosmodule_component_enabled" ask="0" value="1" />
|
<booleanParameter name="aosmodule_component_enabled" ask="0" value="1" />
|
||||||
</parameterList>
|
</parameterList>
|
||||||
<initializationActionList>
|
<initializationActionList>
|
||||||
<setInstallerVariable name="component(aosmodule).detailedDescription" value="Select this module to allow applications that can talk to a SharePoint server to talk to your Alfresco Content Services installation
(proprietary module licensed under the Alfresco Component License).">
|
<setInstallerVariable name="component(aosmodule).detailedDescription" value="Select this module to allow applications that can talk to a SharePoint server to talk to your Alfresco Content Services installation
(proprietary module licensed under the Alfresco Component License).">
|
||||||
<ruleList>
|
<ruleList>
|
||||||
<compareText text="${alfresco_edition}" value="community"/>
|
<compareText text="${alfresco_edition}" value="community"/>
|
||||||
</ruleList>
|
</ruleList>
|
||||||
</setInstallerVariable>
|
</setInstallerVariable>
|
||||||
</initializationActionList>
|
</initializationActionList>
|
||||||
<folderList>
|
<folderList>
|
||||||
<folder>
|
<folder>
|
||||||
<name>programfiles</name>
|
<name>programfiles</name>
|
||||||
<description>Program Files</description>
|
<description>Program Files</description>
|
||||||
<destination>${alfresco_amps_directory}</destination>
|
<destination>${alfresco_amps_directory}</destination>
|
||||||
<platforms>all</platforms>
|
<platforms>all</platforms>
|
||||||
<distributionFileList>
|
<distributionFileList>
|
||||||
<distributionFile origin="${aos_module_distribution_folder}/alfresco-aos-module-*.amp" allowWildcards="1" />
|
<distributionFile origin="${aos_module_distribution_folder}/alfresco-aos-module-*.amp" allowWildcards="1" />
|
||||||
</distributionFileList>
|
</distributionFileList>
|
||||||
<actionList>
|
<actionList>
|
||||||
<setInstallerVariable name="alfresco_apply_amps" value="1"/>
|
<setInstallerVariable name="alfresco_apply_amps" value="1"/>
|
||||||
</actionList>
|
</actionList>
|
||||||
</folder>
|
</folder>
|
||||||
<folder>
|
<folder>
|
||||||
<name>vtibinwarfile</name>
|
<name>vtibinwarfile</name>
|
||||||
<description>//War Files</description>
|
<description>//War Files</description>
|
||||||
<destination>${installdiralfresco}</destination>
|
<destination>${installdiralfresco}</destination>
|
||||||
<distributionFileList>
|
<distributionFileList>
|
||||||
<distributionFile origin="${aos_module_distribution_folder}/_vti_bin.war" allowWildcards="1" />
|
<distributionFile origin="${aos_module_distribution_folder}/_vti_bin.war" allowWildcards="1" />
|
||||||
</distributionFileList>
|
</distributionFileList>
|
||||||
</folder>
|
</folder>
|
||||||
<folder>
|
<folder>
|
||||||
<name>aosmodulecustomextensions</name>
|
<name>aosmodulecustomextensions</name>
|
||||||
<description>Program Files</description>
|
<description>Program Files</description>
|
||||||
<destination>${alfresco_shared_directory}/alfresco/extension</destination>
|
<destination>${alfresco_shared_directory}/alfresco/extension</destination>
|
||||||
<platforms>all</platforms>
|
<platforms>all</platforms>
|
||||||
<actionList>
|
<actionList>
|
||||||
<alfrescoConfigure alfrescoFiles="*/*"/>
|
<alfrescoConfigure alfrescoFiles="*/*"/>
|
||||||
</actionList>
|
</actionList>
|
||||||
<distributionFileList>
|
<distributionFileList>
|
||||||
<distributionFile origin="${aos_module_distribution_folder}/extension/*" allowWildcards="1" />
|
<distributionFile origin="${aos_module_distribution_folder}/extension/*" allowWildcards="1" />
|
||||||
</distributionFileList>
|
</distributionFileList>
|
||||||
</folder>
|
</folder>
|
||||||
<folder>
|
<folder>
|
||||||
<name>aosmodulelicenses</name>
|
<name>aosmodulelicenses</name>
|
||||||
<description>//Alfresco Licenses</description>
|
<description>//Alfresco Licenses</description>
|
||||||
<destination>${alfresco_base_application_directory}/licenses</destination>
|
<destination>${alfresco_base_application_directory}/licenses</destination>
|
||||||
<distributionFileList>
|
<distributionFileList>
|
||||||
<distributionFile origin="${aos_module_distribution_folder}/*-license.txt" allowWildcards="1" />
|
<distributionFile origin="${aos_module_distribution_folder}/*-license.txt" allowWildcards="1" />
|
||||||
</distributionFileList>
|
</distributionFileList>
|
||||||
</folder>
|
</folder>
|
||||||
</folderList>
|
</folderList>
|
||||||
</component>
|
</component>
|
||||||
|
@@ -1,40 +1,40 @@
|
|||||||
<component>
|
<component>
|
||||||
<name>alfrescogoogledocs</name>
|
<name>alfrescogoogledocs</name>
|
||||||
<description>Google Docs Integration</description>
|
<description>Google Docs Integration</description>
|
||||||
<detailedDescription>Include Google Docs Integration Features.</detailedDescription>
|
<detailedDescription>Include Google Docs Integration Features.</detailedDescription>
|
||||||
<canBeEdited>1</canBeEdited>
|
<canBeEdited>1</canBeEdited>
|
||||||
<selected>1</selected>
|
<selected>1</selected>
|
||||||
<show>1</show>
|
<show>1</show>
|
||||||
<shouldPackRuleList>
|
<shouldPackRuleList>
|
||||||
<isTrue value="${alfrescogoogledocs_component_enabled}" />
|
<isTrue value="${alfrescogoogledocs_component_enabled}" />
|
||||||
</shouldPackRuleList>
|
</shouldPackRuleList>
|
||||||
<parameterList>
|
<parameterList>
|
||||||
<booleanParameter name="alfrescogoogledocs_component_enabled" ask="0" value="1" />
|
<booleanParameter name="alfrescogoogledocs_component_enabled" ask="0" value="1" />
|
||||||
</parameterList>
|
</parameterList>
|
||||||
<folderList>
|
<folderList>
|
||||||
<folder>
|
<folder>
|
||||||
<description>Program Files</description>
|
<description>Program Files</description>
|
||||||
<destination>${alfresco_amps_directory}</destination>
|
<destination>${alfresco_amps_directory}</destination>
|
||||||
<name>googledocs</name>
|
<name>googledocs</name>
|
||||||
<platforms>all</platforms>
|
<platforms>all</platforms>
|
||||||
<distributionFileList>
|
<distributionFileList>
|
||||||
<distributionFile origin="${alfresco_amps_source_directory}/alfresco-googledocs-repo-*.amp" allowWildcards="1" />
|
<distributionFile origin="${alfresco_amps_source_directory}/alfresco-googledocs-repo-*.amp" allowWildcards="1" />
|
||||||
</distributionFileList>
|
</distributionFileList>
|
||||||
<actionList>
|
<actionList>
|
||||||
<setInstallerVariable name="alfresco_apply_amps" value="1"/>
|
<setInstallerVariable name="alfresco_apply_amps" value="1"/>
|
||||||
</actionList>
|
</actionList>
|
||||||
</folder>
|
</folder>
|
||||||
<folder>
|
<folder>
|
||||||
<description>Program Files</description>
|
<description>Program Files</description>
|
||||||
<destination>${alfresco_amps_share_directory}</destination>
|
<destination>${alfresco_amps_share_directory}</destination>
|
||||||
<name>googledocsshare</name>
|
<name>googledocsshare</name>
|
||||||
<platforms>all</platforms>
|
<platforms>all</platforms>
|
||||||
<distributionFileList>
|
<distributionFileList>
|
||||||
<distributionFile origin="${alfresco_amps_source_directory}/alfresco-googledocs-share-*.amp" allowWildcards="1" />
|
<distributionFile origin="${alfresco_amps_source_directory}/alfresco-googledocs-share-*.amp" allowWildcards="1" />
|
||||||
</distributionFileList>
|
</distributionFileList>
|
||||||
<actionList>
|
<actionList>
|
||||||
<setInstallerVariable name="alfresco_apply_amps_share" value="1"/>
|
<setInstallerVariable name="alfresco_apply_amps_share" value="1"/>
|
||||||
</actionList>
|
</actionList>
|
||||||
</folder>
|
</folder>
|
||||||
</folderList>
|
</folderList>
|
||||||
</component>
|
</component>
|
@@ -1,175 +1,175 @@
|
|||||||
<project default="extract-all" xmlns:unless="ant:unless" xmlns:if="ant:if" >
|
<project default="extract-all" xmlns:unless="ant:unless" xmlns:if="ant:if" >
|
||||||
|
|
||||||
<target name="extract-all" depends="extract-binaries, extract-installbuilder"/>
|
<target name="extract-all" depends="extract-binaries, extract-installbuilder"/>
|
||||||
|
|
||||||
<target name="extract-binaries">
|
<target name="extract-binaries">
|
||||||
<antcall target="all-binaries" unless:set="shareInstaller" />
|
<antcall target="all-binaries" unless:set="shareInstaller" />
|
||||||
<antcall target="share-binaries" if:set="shareInstaller" />
|
<antcall target="share-binaries" if:set="shareInstaller" />
|
||||||
</target>
|
</target>
|
||||||
|
|
||||||
<target name="all-binaries" depends="extract-base, extract-platform"/>
|
<target name="all-binaries" depends="extract-base, extract-platform"/>
|
||||||
<target name="share-binaries" depends="extract-base"/>
|
<target name="share-binaries" depends="extract-base"/>
|
||||||
|
|
||||||
<target name="extract-base">
|
<target name="extract-base">
|
||||||
<extract-base-for targetPlatform="linux" unless:set="skipLinInstaller" />
|
<extract-base-for targetPlatform="linux" unless:set="skipLinInstaller" />
|
||||||
<extract-base-for targetPlatform="win64" unless:set="skipWinInstaller" />
|
<extract-base-for targetPlatform="win64" unless:set="skipWinInstaller" />
|
||||||
</target>
|
</target>
|
||||||
|
|
||||||
<target name="extract-platform">
|
<target name="extract-platform">
|
||||||
<extract-platform-for targetPlatform="linux" unless:set="skipLinInstaller" />
|
<extract-platform-for targetPlatform="linux" unless:set="skipLinInstaller" />
|
||||||
<extract-platform-for targetPlatform="win64" unless:set="skipWinInstaller" />
|
<extract-platform-for targetPlatform="win64" unless:set="skipWinInstaller" />
|
||||||
</target>
|
</target>
|
||||||
|
|
||||||
<macrodef name="extract-base-for">
|
<macrodef name="extract-base-for">
|
||||||
<attribute name="targetPlatform" />
|
<attribute name="targetPlatform" />
|
||||||
|
|
||||||
<sequential>
|
<sequential>
|
||||||
<echo>Extracting binaries for @{targetPlatform}</echo>
|
<echo>Extracting binaries for @{targetPlatform}</echo>
|
||||||
<!-- Set binaries folder depending on the platform -->
|
<!-- Set binaries folder depending on the platform -->
|
||||||
<local name="bin.folder"/>
|
<local name="bin.folder"/>
|
||||||
<condition property="bin.folder" value="${project.build.directory}/binaries-linux-x64">
|
<condition property="bin.folder" value="${project.build.directory}/binaries-linux-x64">
|
||||||
<equals arg1="@{targetPlatform}" arg2="linux" />
|
<equals arg1="@{targetPlatform}" arg2="linux" />
|
||||||
</condition>
|
</condition>
|
||||||
<condition property="bin.folder" value="${project.build.directory}/binaries-windows-x64">
|
<condition property="bin.folder" value="${project.build.directory}/binaries-windows-x64">
|
||||||
<equals arg1="@{targetPlatform}" arg2="win64" />
|
<equals arg1="@{targetPlatform}" arg2="win64" />
|
||||||
</condition>
|
</condition>
|
||||||
|
|
||||||
<!-- Accommodate poor Cygwin users -->
|
<!-- Accommodate poor Cygwin users -->
|
||||||
<pathconvert property="maven.localrepo" targetos="unix">
|
<pathconvert property="maven.localrepo" targetos="unix">
|
||||||
<map from="C:" to="/c" />
|
<map from="C:" to="/c" />
|
||||||
<map from="D:" to="/d" />
|
<map from="D:" to="/d" />
|
||||||
<map from="E:" to="/e" />
|
<map from="E:" to="/e" />
|
||||||
<path>
|
<path>
|
||||||
<pathelement path="${settings.localRepository}"/>
|
<pathelement path="${settings.localRepository}"/>
|
||||||
</path>
|
</path>
|
||||||
</pathconvert>
|
</pathconvert>
|
||||||
|
|
||||||
<mkdir dir="${bin.folder}" />
|
<mkdir dir="${bin.folder}" />
|
||||||
|
|
||||||
<!-- Check if platform is windows -->
|
<!-- Check if platform is windows -->
|
||||||
<local name="isPlatformWindows"/>
|
<local name="isPlatformWindows"/>
|
||||||
<condition property="isPlatformWindows">
|
<condition property="isPlatformWindows">
|
||||||
<equals arg1="@{targetPlatform}" arg2="win64" />
|
<equals arg1="@{targetPlatform}" arg2="win64" />
|
||||||
</condition>
|
</condition>
|
||||||
|
|
||||||
<echo> Extracting Common...</echo>
|
<echo> Extracting Common...</echo>
|
||||||
<exec failonerror="true" executable="tar" dir="${bin.folder}" unless:set="isPlatformWindows">
|
<exec failonerror="true" executable="tar" dir="${bin.folder}" unless:set="isPlatformWindows">
|
||||||
<arg value="xf" />
|
<arg value="xf" />
|
||||||
<arg value="${maven.localrepo}/org/alfresco/installer-common/${installer.common.version}/installer-common-${installer.common.version}-@{targetPlatform}.tgz" />
|
<arg value="${maven.localrepo}/org/alfresco/installer-common/${installer.common.version}/installer-common-${installer.common.version}-@{targetPlatform}.tgz" />
|
||||||
</exec>
|
</exec>
|
||||||
|
|
||||||
<echo> Extracting Tomcat...</echo>
|
<echo> Extracting Tomcat...</echo>
|
||||||
<exec failonerror="true" executable="tar" dir="${bin.folder}">
|
<exec failonerror="true" executable="tar" dir="${bin.folder}">
|
||||||
<arg value="xf" />
|
<arg value="xf" />
|
||||||
<arg value="${maven.localrepo}/org/apache/tomcat/tomcat/${installer.tomcat.version}/tomcat-${installer.tomcat.version}-@{targetPlatform}.tgz" />
|
<arg value="${maven.localrepo}/org/apache/tomcat/tomcat/${installer.tomcat.version}/tomcat-${installer.tomcat.version}-@{targetPlatform}.tgz" />
|
||||||
</exec>
|
</exec>
|
||||||
<!-- Delete ROOT folder in Tomcat -->
|
<!-- Delete ROOT folder in Tomcat -->
|
||||||
<delete dir="${bin.folder}/apache-tomcat/webapps/ROOT"/>
|
<delete dir="${bin.folder}/apache-tomcat/webapps/ROOT"/>
|
||||||
|
|
||||||
<echo> Extracting Java...</echo>
|
<echo> Extracting Java...</echo>
|
||||||
<exec failonerror="true" executable="tar" dir="${bin.folder}">
|
<exec failonerror="true" executable="tar" dir="${bin.folder}">
|
||||||
<arg value="xf" />
|
<arg value="xf" />
|
||||||
<arg value="${maven.localrepo}/com/oracle/java/jre/${installer.java.version}/jre-${installer.java.version}-@{targetPlatform}.tgz" />
|
<arg value="${maven.localrepo}/com/oracle/java/jre/${installer.java.version}/jre-${installer.java.version}-@{targetPlatform}.tgz" />
|
||||||
</exec>
|
</exec>
|
||||||
|
|
||||||
<echo> Extracting Manager...</echo>
|
<echo> Extracting Manager...</echo>
|
||||||
<exec failonerror="true" executable="tar" dir="${bin.folder}">
|
<exec failonerror="true" executable="tar" dir="${bin.folder}">
|
||||||
<arg value="xf" />
|
<arg value="xf" />
|
||||||
<arg value="${maven.localrepo}/org/alfresco/manager/${installer.manager.version}/manager-${installer.manager.version}-@{targetPlatform}.tgz" />
|
<arg value="${maven.localrepo}/org/alfresco/manager/${installer.manager.version}/manager-${installer.manager.version}-@{targetPlatform}.tgz" />
|
||||||
</exec>
|
</exec>
|
||||||
</sequential>
|
</sequential>
|
||||||
</macrodef>
|
</macrodef>
|
||||||
|
|
||||||
<macrodef name="extract-platform-for">
|
<macrodef name="extract-platform-for">
|
||||||
<attribute name="targetPlatform" />
|
<attribute name="targetPlatform" />
|
||||||
|
|
||||||
<sequential>
|
<sequential>
|
||||||
<echo>Extracting binaries for @{targetPlatform}</echo>
|
<echo>Extracting binaries for @{targetPlatform}</echo>
|
||||||
<!-- Set binaries folder depending on the platform -->
|
<!-- Set binaries folder depending on the platform -->
|
||||||
<local name="bin.folder"/>
|
<local name="bin.folder"/>
|
||||||
<condition property="bin.folder" value="${project.build.directory}/binaries-linux-x64">
|
<condition property="bin.folder" value="${project.build.directory}/binaries-linux-x64">
|
||||||
<equals arg1="@{targetPlatform}" arg2="linux" />
|
<equals arg1="@{targetPlatform}" arg2="linux" />
|
||||||
</condition>
|
</condition>
|
||||||
<condition property="bin.folder" value="${project.build.directory}/binaries-windows-x64">
|
<condition property="bin.folder" value="${project.build.directory}/binaries-windows-x64">
|
||||||
<equals arg1="@{targetPlatform}" arg2="win64" />
|
<equals arg1="@{targetPlatform}" arg2="win64" />
|
||||||
</condition>
|
</condition>
|
||||||
|
|
||||||
<!-- LibreOffice is the same for win32 and win64 -->
|
<!-- LibreOffice is the same for win32 and win64 -->
|
||||||
<local name="isPlatformWindows"/>
|
<local name="isPlatformWindows"/>
|
||||||
<condition property="isPlatformWindows">
|
<condition property="isPlatformWindows">
|
||||||
<equals arg1="@{targetPlatform}" arg2="win64" />
|
<equals arg1="@{targetPlatform}" arg2="win64" />
|
||||||
</condition>
|
</condition>
|
||||||
<local name="libreoffice.platform"/>
|
<local name="libreoffice.platform"/>
|
||||||
<condition property="libreoffice.platform" value="windows" else="@{targetPlatform}">
|
<condition property="libreoffice.platform" value="windows" else="@{targetPlatform}">
|
||||||
<isset property="isPlatformWindows"/>
|
<isset property="isPlatformWindows"/>
|
||||||
</condition>
|
</condition>
|
||||||
|
|
||||||
<local name="alfrescoPdfRenderer.platform"/>
|
<local name="alfrescoPdfRenderer.platform"/>
|
||||||
<condition property="alfrescoPdfRenderer.platform" value="win64" else="@{targetPlatform}">
|
<condition property="alfrescoPdfRenderer.platform" value="win64" else="@{targetPlatform}">
|
||||||
<isset property="isPlatformWindows"/>
|
<isset property="isPlatformWindows"/>
|
||||||
</condition>
|
</condition>
|
||||||
|
|
||||||
<!-- Accommodate poor Cygwin users -->
|
<!-- Accommodate poor Cygwin users -->
|
||||||
<pathconvert property="maven.localrepo" targetos="unix">
|
<pathconvert property="maven.localrepo" targetos="unix">
|
||||||
<map from="C:" to="/c" />
|
<map from="C:" to="/c" />
|
||||||
<path>
|
<path>
|
||||||
<pathelement path="${settings.localRepository}"/>
|
<pathelement path="${settings.localRepository}"/>
|
||||||
</path>
|
</path>
|
||||||
</pathconvert>
|
</pathconvert>
|
||||||
|
|
||||||
<mkdir dir="${bin.folder}" />
|
<mkdir dir="${bin.folder}" />
|
||||||
|
|
||||||
<echo> Extracting PostgreSQL...</echo>
|
<echo> Extracting PostgreSQL...</echo>
|
||||||
<exec failonerror="true" executable="tar" dir="${bin.folder}">
|
<exec failonerror="true" executable="tar" dir="${bin.folder}">
|
||||||
<arg value="xf" />
|
<arg value="xf" />
|
||||||
<arg value="${maven.localrepo}/org/postgresql/postgresql-distribution/${installer.postgresql.version}/postgresql-distribution-${installer.postgresql.version}-@{targetPlatform}.tgz" />
|
<arg value="${maven.localrepo}/org/postgresql/postgresql-distribution/${installer.postgresql.version}/postgresql-distribution-${installer.postgresql.version}-@{targetPlatform}.tgz" />
|
||||||
</exec>
|
</exec>
|
||||||
|
|
||||||
<echo> Extracting LibreOffice...</echo>
|
<echo> Extracting LibreOffice...</echo>
|
||||||
<exec failonerror="true" executable="tar" dir="${bin.folder}">
|
<exec failonerror="true" executable="tar" dir="${bin.folder}">
|
||||||
<arg value="xf" />
|
<arg value="xf" />
|
||||||
<arg value="${maven.localrepo}/org/libreoffice/libreoffice-dist/${installer.libreoffice.version}/libreoffice-dist-${installer.libreoffice.version}-${libreoffice.platform}.tgz" />
|
<arg value="${maven.localrepo}/org/libreoffice/libreoffice-dist/${installer.libreoffice.version}/libreoffice-dist-${installer.libreoffice.version}-${libreoffice.platform}.tgz" />
|
||||||
</exec>
|
</exec>
|
||||||
|
|
||||||
<echo> Extracting ImageMagick...</echo>
|
<echo> Extracting ImageMagick...</echo>
|
||||||
<exec failonerror="true" executable="tar" dir="${bin.folder}">
|
<exec failonerror="true" executable="tar" dir="${bin.folder}">
|
||||||
<arg value="xf" />
|
<arg value="xf" />
|
||||||
<arg value="${maven.localrepo}/org/imagemagick/imagemagick-distribution/${installer.imagemagick.version}/imagemagick-distribution-${installer.imagemagick.version}-@{targetPlatform}.tgz" />
|
<arg value="${maven.localrepo}/org/imagemagick/imagemagick-distribution/${installer.imagemagick.version}/imagemagick-distribution-${installer.imagemagick.version}-@{targetPlatform}.tgz" />
|
||||||
</exec>
|
</exec>
|
||||||
|
|
||||||
<mkdir dir="${bin.folder}/alfresco-pdf-renderer"/>
|
<mkdir dir="${bin.folder}/alfresco-pdf-renderer"/>
|
||||||
<echo> Extracting Alfresco Pdf Renderer...</echo>
|
<echo> Extracting Alfresco Pdf Renderer...</echo>
|
||||||
<exec failonerror="true" executable="tar" dir="${bin.folder}/alfresco-pdf-renderer">
|
<exec failonerror="true" executable="tar" dir="${bin.folder}/alfresco-pdf-renderer">
|
||||||
<arg value="xf" />
|
<arg value="xf" />
|
||||||
<arg value="${maven.localrepo}/org/alfresco/alfresco-pdf-renderer/${installer.alfresco-pdf-renderer.version}/alfresco-pdf-renderer-${installer.alfresco-pdf-renderer.version}-${alfrescoPdfRenderer.platform}.tgz" />
|
<arg value="${maven.localrepo}/org/alfresco/alfresco-pdf-renderer/${installer.alfresco-pdf-renderer.version}/alfresco-pdf-renderer-${installer.alfresco-pdf-renderer.version}-${alfrescoPdfRenderer.platform}.tgz" />
|
||||||
</exec>
|
</exec>
|
||||||
|
|
||||||
</sequential>
|
</sequential>
|
||||||
</macrodef>
|
</macrodef>
|
||||||
|
|
||||||
<target name="extract-installbuilder">
|
<target name="extract-installbuilder">
|
||||||
<echo> Check running platform for Installbuilder...</echo>
|
<echo> Check running platform for Installbuilder...</echo>
|
||||||
<condition property="runningPlatform" value="linux">
|
<condition property="runningPlatform" value="linux">
|
||||||
<os family="unix" />
|
<os family="unix" />
|
||||||
</condition>
|
</condition>
|
||||||
<condition property="runningPlatform" value="win">
|
<condition property="runningPlatform" value="win">
|
||||||
<os family="windows" />
|
<os family="windows" />
|
||||||
</condition>
|
</condition>
|
||||||
|
|
||||||
<!-- Accommodate poor Cygwin users -->
|
<!-- Accommodate poor Cygwin users -->
|
||||||
<pathconvert property="maven.localrepo" targetos="unix">
|
<pathconvert property="maven.localrepo" targetos="unix">
|
||||||
<map from="C:" to="/c" />
|
<map from="C:" to="/c" />
|
||||||
<path>
|
<path>
|
||||||
<pathelement path="${settings.localRepository}"/>
|
<pathelement path="${settings.localRepository}"/>
|
||||||
</path>
|
</path>
|
||||||
</pathconvert>
|
</pathconvert>
|
||||||
|
|
||||||
<echo> Extracting Installbuilder...</echo>
|
<echo> Extracting Installbuilder...</echo>
|
||||||
<mkdir dir="${project.build.directory}/installbuilder" />
|
<mkdir dir="${project.build.directory}/installbuilder" />
|
||||||
<exec failonerror="true" executable="tar" dir="${project.build.directory}/installbuilder">
|
<exec failonerror="true" executable="tar" dir="${project.build.directory}/installbuilder">
|
||||||
<arg value="xzf" />
|
<arg value="xzf" />
|
||||||
<arg value="${maven.localrepo}/com/bitnami/installbuilder/${installer.installbuilder.version}/installbuilder-${installer.installbuilder.version}-${runningPlatform}.tgz" />
|
<arg value="${maven.localrepo}/com/bitnami/installbuilder/${installer.installbuilder.version}/installbuilder-${installer.installbuilder.version}-${runningPlatform}.tgz" />
|
||||||
</exec>
|
</exec>
|
||||||
</target>
|
</target>
|
||||||
|
|
||||||
</project>
|
</project>
|
||||||
|
630
pom.xml
630
pom.xml
@@ -1,315 +1,315 @@
|
|||||||
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
<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">
|
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
|
||||||
<modelVersion>4.0.0</modelVersion>
|
<modelVersion>4.0.0</modelVersion>
|
||||||
<parent>
|
<parent>
|
||||||
<groupId>org.alfresco</groupId>
|
<groupId>org.alfresco</groupId>
|
||||||
<artifactId>alfresco-super-pom</artifactId>
|
<artifactId>alfresco-super-pom</artifactId>
|
||||||
<version>6</version>
|
<version>6</version>
|
||||||
</parent>
|
</parent>
|
||||||
<artifactId>full-community-packaging</artifactId>
|
<artifactId>full-community-packaging</artifactId>
|
||||||
<version>6.0.0-SNAPSHOT</version>
|
<version>6.0.0-SNAPSHOT</version>
|
||||||
<packaging>pom</packaging>
|
<packaging>pom</packaging>
|
||||||
<name>Alfresco Content Services Community Full Packaging</name>
|
<name>Alfresco Content Services Community Full Packaging</name>
|
||||||
|
|
||||||
<scm>
|
<scm>
|
||||||
<connection>scm:git:https://git.alfresco.com/Repository/full-community-packaging.gitt</connection>
|
<connection>scm:git:https://git.alfresco.com/Repository/full-community-packaging.gitt</connection>
|
||||||
<developerConnection>scm:git:https://git.alfresco.com/Repository/full-community-packaging.git</developerConnection>
|
<developerConnection>scm:git:https://git.alfresco.com/Repository/full-community-packaging.git</developerConnection>
|
||||||
<url>https://git.alfresco.com/Repository/full-community-packaging.git</url>
|
<url>https://git.alfresco.com/Repository/full-community-packaging.git</url>
|
||||||
<tag>HEAD</tag>
|
<tag>HEAD</tag>
|
||||||
</scm>
|
</scm>
|
||||||
|
|
||||||
<properties>
|
<properties>
|
||||||
<!-- Community Packaging version -->
|
<!-- Community Packaging version -->
|
||||||
<dependency.acs-community-packaging.version>6.0.b-SNAPSHOT</dependency.acs-community-packaging.version>
|
<dependency.acs-community-packaging.version>6.0.b-SNAPSHOT</dependency.acs-community-packaging.version>
|
||||||
|
|
||||||
<!-- Alfresco Share version -->
|
<!-- Alfresco Share version -->
|
||||||
<alfresco.share.version>5.2.2-SNAPSHOT</alfresco.share.version>
|
<alfresco.share.version>5.2.2-SNAPSHOT</alfresco.share.version>
|
||||||
|
|
||||||
<!-- Alfresco GoogleDocs integration version -->
|
<!-- Alfresco GoogleDocs integration version -->
|
||||||
<alfresco.googledocs.version>3.0.4.2</alfresco.googledocs.version>
|
<alfresco.googledocs.version>3.0.4.2</alfresco.googledocs.version>
|
||||||
|
|
||||||
<!-- Alfresco Office Services Module -->
|
<!-- Alfresco Office Services Module -->
|
||||||
<alfresco.aos-module.version>1.1.7</alfresco.aos-module.version>
|
<alfresco.aos-module.version>1.1.7</alfresco.aos-module.version>
|
||||||
|
|
||||||
<alfresco.solr.version>6.1</alfresco.solr.version>
|
<alfresco.solr.version>6.1</alfresco.solr.version>
|
||||||
<alfresco.solr4.version>6.5</alfresco.solr4.version>
|
<alfresco.solr4.version>6.5</alfresco.solr4.version>
|
||||||
|
|
||||||
<!-- Versions of binaries packaged in the installer -->
|
<!-- Versions of binaries packaged in the installer -->
|
||||||
<installer.common.version>5.2-20170508</installer.common.version>
|
<installer.common.version>5.2-20170508</installer.common.version>
|
||||||
<installer.tomcat.version>7.0.59-alfresco-distribution</installer.tomcat.version>
|
<installer.tomcat.version>7.0.59-alfresco-distribution</installer.tomcat.version>
|
||||||
<installer.java.version>1.8.0_111</installer.java.version>
|
<installer.java.version>1.8.0_111</installer.java.version>
|
||||||
<installer.postgresql.version>9.4.4-20151016</installer.postgresql.version>
|
<installer.postgresql.version>9.4.4-20151016</installer.postgresql.version>
|
||||||
<installer.libreoffice.version>5.2.1-alfresco</installer.libreoffice.version>
|
<installer.libreoffice.version>5.2.1-alfresco</installer.libreoffice.version>
|
||||||
<installer.ghostscript.version>8.64</installer.ghostscript.version>
|
<installer.ghostscript.version>8.64</installer.ghostscript.version>
|
||||||
<installer.imagemagick.version>7.0.5</installer.imagemagick.version>
|
<installer.imagemagick.version>7.0.5</installer.imagemagick.version>
|
||||||
<installer.manager.version>1.0</installer.manager.version>
|
<installer.manager.version>1.0</installer.manager.version>
|
||||||
<installer.alfresco-pdf-renderer.version>1.0</installer.alfresco-pdf-renderer.version>
|
<installer.alfresco-pdf-renderer.version>1.0</installer.alfresco-pdf-renderer.version>
|
||||||
|
|
||||||
<!-- Build timestamp for installer file name -->
|
<!-- Build timestamp for installer file name -->
|
||||||
<installer.build.timestamp>${maven.build.timestamp}</installer.build.timestamp>
|
<installer.build.timestamp>${maven.build.timestamp}</installer.build.timestamp>
|
||||||
<maven.build.timestamp.format>yyyyMMdd</maven.build.timestamp.format>
|
<maven.build.timestamp.format>yyyyMMdd</maven.build.timestamp.format>
|
||||||
|
|
||||||
<!-- Install builder version -->
|
<!-- Install builder version -->
|
||||||
<installer.installbuilder.version>15.10.1</installer.installbuilder.version>
|
<installer.installbuilder.version>15.10.1</installer.installbuilder.version>
|
||||||
|
|
||||||
<!--
|
<!--
|
||||||
Set externally as "-ea", "-ga", "-la" or left empty
|
Set externally as "-ea", "-ga", "-la" or left empty
|
||||||
As the releasable artifacts are never published to nexus, the version is affecting only filenames
|
As the releasable artifacts are never published to nexus, the version is affecting only filenames
|
||||||
-->
|
-->
|
||||||
<alfresco.release.availability></alfresco.release.availability>
|
<alfresco.release.availability></alfresco.release.availability>
|
||||||
<installer.version.name>${project.version}${alfresco.release.availability}</installer.version.name>
|
<installer.version.name>${project.version}${alfresco.release.availability}</installer.version.name>
|
||||||
<alfresco.package.name>alfresco-community</alfresco.package.name>
|
<alfresco.package.name>alfresco-community</alfresco.package.name>
|
||||||
<alfresco.distribution.name>${alfresco.package.name}-distribution</alfresco.distribution.name>
|
<alfresco.distribution.name>${alfresco.package.name}-distribution</alfresco.distribution.name>
|
||||||
</properties>
|
</properties>
|
||||||
|
|
||||||
<modules>
|
<modules>
|
||||||
<module>distribution</module>
|
<module>distribution</module>
|
||||||
<module>public-javadoc</module>
|
<module>public-javadoc</module>
|
||||||
<module>installer-resources</module>
|
<module>installer-resources</module>
|
||||||
<module>installer</module>
|
<module>installer</module>
|
||||||
</modules>
|
</modules>
|
||||||
|
|
||||||
<dependencyManagement>
|
<dependencyManagement>
|
||||||
<dependencies>
|
<dependencies>
|
||||||
<!-- Import packaging dependency management -->
|
<!-- Import packaging dependency management -->
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.alfresco</groupId>
|
<groupId>org.alfresco</groupId>
|
||||||
<artifactId>acs-community-packaging</artifactId>
|
<artifactId>acs-community-packaging</artifactId>
|
||||||
<version>${dependency.acs-community-packaging.version}</version>
|
<version>${dependency.acs-community-packaging.version}</version>
|
||||||
<type>pom</type>
|
<type>pom</type>
|
||||||
<scope>import</scope>
|
<scope>import</scope>
|
||||||
</dependency>
|
</dependency>
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.alfresco</groupId>
|
<groupId>org.alfresco</groupId>
|
||||||
<artifactId>alfresco-content-services-community-distribution</artifactId>
|
<artifactId>alfresco-content-services-community-distribution</artifactId>
|
||||||
<version>${dependency.acs-community-packaging.version}</version>
|
<version>${dependency.acs-community-packaging.version}</version>
|
||||||
<type>zip</type>
|
<type>zip</type>
|
||||||
</dependency>
|
</dependency>
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.alfresco.aos-module</groupId>
|
<groupId>org.alfresco.aos-module</groupId>
|
||||||
<artifactId>alfresco-aos-module</artifactId>
|
<artifactId>alfresco-aos-module</artifactId>
|
||||||
<version>${alfresco.aos-module.version}</version>
|
<version>${alfresco.aos-module.version}</version>
|
||||||
<type>amp</type>
|
<type>amp</type>
|
||||||
</dependency>
|
</dependency>
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.alfresco.aos-module</groupId>
|
<groupId>org.alfresco.aos-module</groupId>
|
||||||
<artifactId>alfresco-aos-module-distributionzip</artifactId>
|
<artifactId>alfresco-aos-module-distributionzip</artifactId>
|
||||||
<version>${alfresco.aos-module.version}</version>
|
<version>${alfresco.aos-module.version}</version>
|
||||||
<type>zip</type>
|
<type>zip</type>
|
||||||
</dependency>
|
</dependency>
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.alfresco.aos-module</groupId>
|
<groupId>org.alfresco.aos-module</groupId>
|
||||||
<artifactId>alfresco-vti-bin</artifactId>
|
<artifactId>alfresco-vti-bin</artifactId>
|
||||||
<version>${alfresco.aos-module.version}</version>
|
<version>${alfresco.aos-module.version}</version>
|
||||||
<type>war</type>
|
<type>war</type>
|
||||||
</dependency>
|
</dependency>
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.alfresco</groupId>
|
<groupId>org.alfresco</groupId>
|
||||||
<artifactId>alfresco-content-services-share-distribution</artifactId>
|
<artifactId>alfresco-content-services-share-distribution</artifactId>
|
||||||
<version>${alfresco.share.version}</version>
|
<version>${alfresco.share.version}</version>
|
||||||
<type>zip</type>
|
<type>zip</type>
|
||||||
</dependency>
|
</dependency>
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.alfresco</groupId>
|
<groupId>org.alfresco</groupId>
|
||||||
<artifactId>alfresco-share-services</artifactId>
|
<artifactId>alfresco-share-services</artifactId>
|
||||||
<version>${alfresco.share.version}</version>
|
<version>${alfresco.share.version}</version>
|
||||||
<type>amp</type>
|
<type>amp</type>
|
||||||
</dependency>
|
</dependency>
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.alfresco</groupId>
|
<groupId>org.alfresco</groupId>
|
||||||
<artifactId>share</artifactId>
|
<artifactId>share</artifactId>
|
||||||
<version>${alfresco.share.version}</version>
|
<version>${alfresco.share.version}</version>
|
||||||
<type>war</type>
|
<type>war</type>
|
||||||
</dependency>
|
</dependency>
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.alfresco</groupId>
|
<groupId>org.alfresco</groupId>
|
||||||
<artifactId>alfresco-solr1-distribution</artifactId>
|
<artifactId>alfresco-solr1-distribution</artifactId>
|
||||||
<version>${alfresco.solr.version}</version>
|
<version>${alfresco.solr.version}</version>
|
||||||
<type>zip</type>
|
<type>zip</type>
|
||||||
</dependency>
|
</dependency>
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.alfresco</groupId>
|
<groupId>org.alfresco</groupId>
|
||||||
<artifactId>alfresco-solr4-distribution</artifactId>
|
<artifactId>alfresco-solr4-distribution</artifactId>
|
||||||
<version>${alfresco.solr4.version}</version>
|
<version>${alfresco.solr4.version}</version>
|
||||||
<type>zip</type>
|
<type>zip</type>
|
||||||
</dependency>
|
</dependency>
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.alfresco</groupId>
|
<groupId>org.alfresco</groupId>
|
||||||
<artifactId>alfresco-wcmqs-distribution</artifactId>
|
<artifactId>alfresco-wcmqs-distribution</artifactId>
|
||||||
<version>${alfresco.share.version}</version>
|
<version>${alfresco.share.version}</version>
|
||||||
<type>zip</type>
|
<type>zip</type>
|
||||||
</dependency>
|
</dependency>
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.alfresco</groupId>
|
<groupId>org.alfresco</groupId>
|
||||||
<artifactId>alfresco-wcmqs-web</artifactId>
|
<artifactId>alfresco-wcmqs-web</artifactId>
|
||||||
<version>${alfresco.share.version}</version>
|
<version>${alfresco.share.version}</version>
|
||||||
<classifier>classes</classifier>
|
<classifier>classes</classifier>
|
||||||
</dependency>
|
</dependency>
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.alfresco</groupId>
|
<groupId>org.alfresco</groupId>
|
||||||
<artifactId>alfresco-wcmqs-client-api</artifactId>
|
<artifactId>alfresco-wcmqs-client-api</artifactId>
|
||||||
<version>${alfresco.share.version}</version>
|
<version>${alfresco.share.version}</version>
|
||||||
</dependency>
|
</dependency>
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.alfresco.integrations</groupId>
|
<groupId>org.alfresco.integrations</groupId>
|
||||||
<artifactId>alfresco-googledocs-repo</artifactId>
|
<artifactId>alfresco-googledocs-repo</artifactId>
|
||||||
<version>${alfresco.googledocs.version}</version>
|
<version>${alfresco.googledocs.version}</version>
|
||||||
<type>amp</type>
|
<type>amp</type>
|
||||||
</dependency>
|
</dependency>
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.alfresco.integrations</groupId>
|
<groupId>org.alfresco.integrations</groupId>
|
||||||
<artifactId>alfresco-googledocs-share</artifactId>
|
<artifactId>alfresco-googledocs-share</artifactId>
|
||||||
<version>${alfresco.googledocs.version}</version>
|
<version>${alfresco.googledocs.version}</version>
|
||||||
<type>amp</type>
|
<type>amp</type>
|
||||||
</dependency>
|
</dependency>
|
||||||
|
|
||||||
<!-- Common -->
|
<!-- Common -->
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.alfresco</groupId>
|
<groupId>org.alfresco</groupId>
|
||||||
<artifactId>installer-common</artifactId>
|
<artifactId>installer-common</artifactId>
|
||||||
<version>${installer.common.version}</version>
|
<version>${installer.common.version}</version>
|
||||||
<classifier>linux</classifier>
|
<classifier>linux</classifier>
|
||||||
<type>tgz</type>
|
<type>tgz</type>
|
||||||
</dependency>
|
</dependency>
|
||||||
|
|
||||||
<!-- Tomcat -->
|
<!-- Tomcat -->
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.apache.tomcat</groupId>
|
<groupId>org.apache.tomcat</groupId>
|
||||||
<artifactId>tomcat</artifactId>
|
<artifactId>tomcat</artifactId>
|
||||||
<version>${installer.tomcat.version}</version>
|
<version>${installer.tomcat.version}</version>
|
||||||
<classifier>linux</classifier>
|
<classifier>linux</classifier>
|
||||||
<type>tgz</type>
|
<type>tgz</type>
|
||||||
</dependency>
|
</dependency>
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.apache.tomcat</groupId>
|
<groupId>org.apache.tomcat</groupId>
|
||||||
<artifactId>tomcat</artifactId>
|
<artifactId>tomcat</artifactId>
|
||||||
<version>${installer.tomcat.version}</version>
|
<version>${installer.tomcat.version}</version>
|
||||||
<classifier>win64</classifier>
|
<classifier>win64</classifier>
|
||||||
<type>tgz</type>
|
<type>tgz</type>
|
||||||
</dependency>
|
</dependency>
|
||||||
|
|
||||||
<!-- PostgreSQL -->
|
<!-- PostgreSQL -->
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.postgresql</groupId>
|
<groupId>org.postgresql</groupId>
|
||||||
<artifactId>postgresql-distribution</artifactId>
|
<artifactId>postgresql-distribution</artifactId>
|
||||||
<version>${installer.postgresql.version}</version>
|
<version>${installer.postgresql.version}</version>
|
||||||
<classifier>linux</classifier>
|
<classifier>linux</classifier>
|
||||||
<type>tgz</type>
|
<type>tgz</type>
|
||||||
</dependency>
|
</dependency>
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.postgresql</groupId>
|
<groupId>org.postgresql</groupId>
|
||||||
<artifactId>postgresql-distribution</artifactId>
|
<artifactId>postgresql-distribution</artifactId>
|
||||||
<version>${installer.postgresql.version}</version>
|
<version>${installer.postgresql.version}</version>
|
||||||
<classifier>win64</classifier>
|
<classifier>win64</classifier>
|
||||||
<type>tgz</type>
|
<type>tgz</type>
|
||||||
</dependency>
|
</dependency>
|
||||||
|
|
||||||
<!-- Java -->
|
<!-- Java -->
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>com.oracle.java</groupId>
|
<groupId>com.oracle.java</groupId>
|
||||||
<artifactId>jre</artifactId>
|
<artifactId>jre</artifactId>
|
||||||
<version>${installer.java.version}</version>
|
<version>${installer.java.version}</version>
|
||||||
<classifier>linux</classifier>
|
<classifier>linux</classifier>
|
||||||
<type>tgz</type>
|
<type>tgz</type>
|
||||||
</dependency>
|
</dependency>
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>com.oracle.java</groupId>
|
<groupId>com.oracle.java</groupId>
|
||||||
<artifactId>jre</artifactId>
|
<artifactId>jre</artifactId>
|
||||||
<version>${installer.java.version}</version>
|
<version>${installer.java.version}</version>
|
||||||
<classifier>win64</classifier>
|
<classifier>win64</classifier>
|
||||||
<type>tgz</type>
|
<type>tgz</type>
|
||||||
</dependency>
|
</dependency>
|
||||||
|
|
||||||
<!-- LibreOffice -->
|
<!-- LibreOffice -->
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.libreoffice</groupId>
|
<groupId>org.libreoffice</groupId>
|
||||||
<artifactId>libreoffice-dist</artifactId>
|
<artifactId>libreoffice-dist</artifactId>
|
||||||
<version>${installer.libreoffice.version}</version>
|
<version>${installer.libreoffice.version}</version>
|
||||||
<classifier>linux</classifier>
|
<classifier>linux</classifier>
|
||||||
<type>tgz</type>
|
<type>tgz</type>
|
||||||
</dependency>
|
</dependency>
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.libreoffice</groupId>
|
<groupId>org.libreoffice</groupId>
|
||||||
<artifactId>libreoffice-dist</artifactId>
|
<artifactId>libreoffice-dist</artifactId>
|
||||||
<version>${installer.libreoffice.version}</version>
|
<version>${installer.libreoffice.version}</version>
|
||||||
<classifier>windows</classifier>
|
<classifier>windows</classifier>
|
||||||
<type>tgz</type>
|
<type>tgz</type>
|
||||||
</dependency>
|
</dependency>
|
||||||
|
|
||||||
<!-- Alfresco Pdf Renderer -->
|
<!-- Alfresco Pdf Renderer -->
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.alfresco</groupId>
|
<groupId>org.alfresco</groupId>
|
||||||
<artifactId>alfresco-pdf-renderer</artifactId>
|
<artifactId>alfresco-pdf-renderer</artifactId>
|
||||||
<version>${installer.alfresco-pdf-renderer.version}</version>
|
<version>${installer.alfresco-pdf-renderer.version}</version>
|
||||||
<classifier>linux</classifier>
|
<classifier>linux</classifier>
|
||||||
<type>tgz</type>
|
<type>tgz</type>
|
||||||
</dependency>
|
</dependency>
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.alfresco</groupId>
|
<groupId>org.alfresco</groupId>
|
||||||
<artifactId>alfresco-pdf-renderer</artifactId>
|
<artifactId>alfresco-pdf-renderer</artifactId>
|
||||||
<version>${installer.alfresco-pdf-renderer.version}</version>
|
<version>${installer.alfresco-pdf-renderer.version}</version>
|
||||||
<classifier>win64</classifier>
|
<classifier>win64</classifier>
|
||||||
<type>tgz</type>
|
<type>tgz</type>
|
||||||
</dependency>
|
</dependency>
|
||||||
|
|
||||||
<!-- ImageMagick -->
|
<!-- ImageMagick -->
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.imagemagick</groupId>
|
<groupId>org.imagemagick</groupId>
|
||||||
<artifactId>imagemagick-distribution</artifactId>
|
<artifactId>imagemagick-distribution</artifactId>
|
||||||
<version>${installer.imagemagick.version}</version>
|
<version>${installer.imagemagick.version}</version>
|
||||||
<classifier>linux</classifier>
|
<classifier>linux</classifier>
|
||||||
<type>tgz</type>
|
<type>tgz</type>
|
||||||
</dependency>
|
</dependency>
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.imagemagick</groupId>
|
<groupId>org.imagemagick</groupId>
|
||||||
<artifactId>imagemagick-distribution</artifactId>
|
<artifactId>imagemagick-distribution</artifactId>
|
||||||
<version>${installer.imagemagick.version}</version>
|
<version>${installer.imagemagick.version}</version>
|
||||||
<classifier>win64</classifier>
|
<classifier>win64</classifier>
|
||||||
<type>tgz</type>
|
<type>tgz</type>
|
||||||
</dependency>
|
</dependency>
|
||||||
|
|
||||||
<!-- Installbuilder -->
|
<!-- Installbuilder -->
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>com.bitnami</groupId>
|
<groupId>com.bitnami</groupId>
|
||||||
<artifactId>installbuilder</artifactId>
|
<artifactId>installbuilder</artifactId>
|
||||||
<version>${installer.installbuilder.version}</version>
|
<version>${installer.installbuilder.version}</version>
|
||||||
<classifier>linux</classifier>
|
<classifier>linux</classifier>
|
||||||
<type>tgz</type>
|
<type>tgz</type>
|
||||||
</dependency>
|
</dependency>
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>com.bitnami</groupId>
|
<groupId>com.bitnami</groupId>
|
||||||
<artifactId>installbuilder</artifactId>
|
<artifactId>installbuilder</artifactId>
|
||||||
<version>${installer.installbuilder.version}</version>
|
<version>${installer.installbuilder.version}</version>
|
||||||
<classifier>win</classifier>
|
<classifier>win</classifier>
|
||||||
<type>tgz</type>
|
<type>tgz</type>
|
||||||
</dependency>
|
</dependency>
|
||||||
|
|
||||||
<!-- Manager -->
|
<!-- Manager -->
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.alfresco</groupId>
|
<groupId>org.alfresco</groupId>
|
||||||
<artifactId>manager</artifactId>
|
<artifactId>manager</artifactId>
|
||||||
<version>${installer.manager.version}</version>
|
<version>${installer.manager.version}</version>
|
||||||
<classifier>linux</classifier>
|
<classifier>linux</classifier>
|
||||||
<type>tgz</type>
|
<type>tgz</type>
|
||||||
</dependency>
|
</dependency>
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.alfresco</groupId>
|
<groupId>org.alfresco</groupId>
|
||||||
<artifactId>manager</artifactId>
|
<artifactId>manager</artifactId>
|
||||||
<version>${installer.manager.version}</version>
|
<version>${installer.manager.version}</version>
|
||||||
<classifier>win64</classifier>
|
<classifier>win64</classifier>
|
||||||
<type>tgz</type>
|
<type>tgz</type>
|
||||||
</dependency>
|
</dependency>
|
||||||
</dependencies>
|
</dependencies>
|
||||||
</dependencyManagement>
|
</dependencyManagement>
|
||||||
|
|
||||||
<distributionManagement>
|
<distributionManagement>
|
||||||
<repository>
|
<repository>
|
||||||
<id>alfresco-internal</id>
|
<id>alfresco-internal</id>
|
||||||
<url>https://artifacts.alfresco.com/nexus/content/repositories/enterprise-releases</url>
|
<url>https://artifacts.alfresco.com/nexus/content/repositories/enterprise-releases</url>
|
||||||
</repository>
|
</repository>
|
||||||
<snapshotRepository>
|
<snapshotRepository>
|
||||||
<id>alfresco-internal-snapshots</id>
|
<id>alfresco-internal-snapshots</id>
|
||||||
<url>https://artifacts.alfresco.com/nexus/content/repositories/internal-snapshots</url>
|
<url>https://artifacts.alfresco.com/nexus/content/repositories/internal-snapshots</url>
|
||||||
</snapshotRepository>
|
</snapshotRepository>
|
||||||
</distributionManagement>
|
</distributionManagement>
|
||||||
</project>
|
</project>
|
||||||
|
Reference in New Issue
Block a user