mirror of
https://github.com/Alfresco/acs-community-packaging.git
synced 2026-09-16 18:13:21 +00:00
68 lines
3.0 KiB
XML
68 lines
3.0 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>content-services-community-full-docker-share</artifactId>
|
|
<name>ACS Community full Docker image builder for Share</name>
|
|
<packaging>pom</packaging>
|
|
|
|
<parent>
|
|
<groupId>org.alfresco</groupId>
|
|
<artifactId>full-community-packaging</artifactId>
|
|
<version>6.0.1-SNAPSHOT</version>
|
|
<relativePath>../pom.xml</relativePath>
|
|
</parent>
|
|
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>org.alfresco</groupId>
|
|
<artifactId>alfresco-mmt</artifactId>
|
|
<version>${dependency.alfresco-mmt.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.alfresco.integrations</groupId>
|
|
<artifactId>alfresco-googledocs-share</artifactId>
|
|
<version>${alfresco.googledocs.version}</version>
|
|
<type>amp</type>
|
|
</dependency>
|
|
</dependencies>
|
|
|
|
<build>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-dependency-plugin</artifactId>
|
|
<version>3.0.2</version>
|
|
<executions>
|
|
<execution>
|
|
<id>copy-resources</id>
|
|
<phase>process-resources</phase>
|
|
<goals>
|
|
<goal>copy</goal>
|
|
</goals>
|
|
<configuration>
|
|
<artifactItems>
|
|
<artifactItem>
|
|
<groupId>org.alfresco</groupId>
|
|
<artifactId>alfresco-mmt</artifactId>
|
|
<version>${dependency.alfresco-mmt.version}</version>
|
|
<type>jar</type>
|
|
<overWrite>false</overWrite>
|
|
<outputDirectory>${project.build.directory}/alfresco-mmt</outputDirectory>
|
|
</artifactItem>
|
|
<artifactItem>
|
|
<groupId>org.alfresco.integrations</groupId>
|
|
<artifactId>alfresco-googledocs-share</artifactId>
|
|
<version>${alfresco.googledocs.version}</version>
|
|
<type>amp</type>
|
|
<overWrite>false</overWrite>
|
|
<outputDirectory>${project.build.directory}/amps_share</outputDirectory>
|
|
</artifactItem>
|
|
</artifactItems>
|
|
</configuration>
|
|
</execution>
|
|
</executions>
|
|
</plugin>
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
</project> |