mirror of
https://github.com/Alfresco/alfresco-community-repo.git
synced 2025-07-31 17:39:05 +00:00
52 lines
1.8 KiB
XML
52 lines
1.8 KiB
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<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-rm-automation-community-rest-api</artifactId>
|
|
<name>Alfresco Records Management Automation Community REST API</name>
|
|
|
|
<parent>
|
|
<groupId>org.alfresco</groupId>
|
|
<artifactId>alfresco-rm-automation</artifactId>
|
|
<version>2.6-SNAPSHOT</version>
|
|
</parent>
|
|
|
|
<properties>
|
|
<alfresco.rm.share>alfresco-rm-community-share</alfresco.rm.share>
|
|
<alfresco.rm.repo>alfresco-rm-community-repo</alfresco.rm.repo>
|
|
</properties>
|
|
|
|
<build>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.codehaus.mojo</groupId>
|
|
<artifactId>license-maven-plugin</artifactId>
|
|
<configuration>
|
|
<licenseName>alfresco_community</licenseName>
|
|
<licenseResolver>file:${project.parent.parent.basedir}/license</licenseResolver>
|
|
<descriptionTemplate>${project.parent.parent.basedir}/license/description.ftl</descriptionTemplate>
|
|
</configuration>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>org.alfresco.tas</groupId>
|
|
<artifactId>restapi-test</artifactId>
|
|
<version>2.0.0</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.alfresco.tas</groupId>
|
|
<artifactId>restapi-test</artifactId>
|
|
<version>2.0.0</version>
|
|
<type>test-jar</type>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.jglue.fluent-json</groupId>
|
|
<artifactId>fluent-json</artifactId>
|
|
<version>2.0.0</version>
|
|
</dependency>
|
|
</dependencies>
|
|
</project>
|