mirror of
https://github.com/Alfresco/alfresco-community-repo.git
synced 2025-07-31 17:39:05 +00:00
50 lines
1.5 KiB
XML
50 lines
1.5 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>
|
|
<artifactId>alfresco-rm-community</artifactId>
|
|
<name>Alfresco Records Management Community</name>
|
|
<packaging>pom</packaging>
|
|
|
|
<parent>
|
|
<groupId>org.alfresco</groupId>
|
|
<artifactId>alfresco-rm</artifactId>
|
|
<version>2.6.1-SNAPSHOT</version>
|
|
</parent>
|
|
|
|
<licenses>
|
|
<license>
|
|
<name>LGPL 3</name>
|
|
</license>
|
|
</licenses>
|
|
|
|
<modules>
|
|
<module>rm-community-rest-api-explorer</module>
|
|
<module>rm-community-repo</module>
|
|
<module>rm-community-share</module>
|
|
</modules>
|
|
|
|
<dependencyManagement>
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>${alfresco.groupId}</groupId>
|
|
<artifactId>alfresco-parent</artifactId>
|
|
<version>${alfresco.version}</version>
|
|
<type>pom</type>
|
|
<scope>import</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>${alfresco.groupId}</groupId>
|
|
<artifactId>alfresco-share-parent</artifactId>
|
|
<version>${share.version}</version>
|
|
<type>pom</type>
|
|
<scope>import</scope>
|
|
</dependency>
|
|
</dependencies>
|
|
</dependencyManagement>
|
|
|
|
<properties>
|
|
<alfresco.version>5.2.g</alfresco.version>
|
|
<share.version>5.2.f</share.version>
|
|
</properties>
|
|
</project>
|