mirror of
https://github.com/Alfresco/alfresco-community-repo.git
synced 2025-07-24 17:32:48 +00:00
29 lines
1.1 KiB
XML
29 lines
1.1 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-amps</artifactId>
|
|
<name>AMPs</name>
|
|
<packaging>pom</packaging>
|
|
|
|
<parent>
|
|
<groupId>org.alfresco</groupId>
|
|
<artifactId>alfresco-community-repo</artifactId>
|
|
<version>25.3.0.12</version>
|
|
</parent>
|
|
|
|
<modules>
|
|
<module>share-services</module>
|
|
</modules>
|
|
|
|
<!-- When adding a new AMP, create a profile for it here to add the module. The AMPS environment variable may
|
|
then be used in aliases to optionally build it. The profile will however need to be added to the Github Actions
|
|
build scripts. The share-services AMP is build by default as it is very fast. -->
|
|
<profiles>
|
|
<profile>
|
|
<id>ags</id>
|
|
<modules>
|
|
<module>ags</module>
|
|
</modules>
|
|
</profile>
|
|
</profiles>
|
|
</project>
|