RM-4617 (Update Repo/Share dependency for RM Community)

This commit is contained in:
Tuna Aksoy
2017-01-27 17:04:16 +00:00
parent 385d6fca1d
commit a9be95d781

View File

@@ -146,6 +146,24 @@
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-dependency-plugin</artifactId>
<executions>
<execution>
<id>fetch-share-services-amp</id>
<phase>process-test-resources</phase>
<goals>
<goal>copy</goal>
</goals>
<configuration>
<artifactItems>
<artifactItem>
<groupId>org.alfresco</groupId>
<artifactId>alfresco-share-services</artifactId>
<version>${share.version}</version>
<type>amp</type>
</artifactItem>
</artifactItems>
<outputDirectory>${project.build.directory}</outputDirectory>
</configuration>
</execution>
<execution>
<id>unpack-alfresco</id>
<phase>prepare-package</phase>
@@ -188,6 +206,18 @@
<goal>install</goal>
</goals>
</execution>
<execution>
<id>install-share-services-amp</id>
<goals>
<goal>install</goal>
</goals>
<phase>prepare-package</phase>
<configuration>
<backup>true</backup>
<ampLocation>${project.build.directory}/alfresco-share-services-${share.version}.amp</ampLocation>
<warLocation>${app.amp.client.war.folder}</warLocation>
</configuration>
</execution>
</executions>
</plugin>
<plugin>