mirror of
https://github.com/Alfresco/alfresco-community-repo.git
synced 2025-07-24 17:32:48 +00:00
195 lines
6.2 KiB
XML
195 lines
6.2 KiB
XML
<?xml version="1.0"?>
|
|
<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>
|
|
<groupId>org.alfresco.tas</groupId>
|
|
<artifactId>cmis</artifactId>
|
|
<name>alfresco-tas-cmis</name>
|
|
<version>1.3-SNAPSHOT</version>
|
|
<parent>
|
|
<groupId>org.alfresco</groupId>
|
|
<artifactId>alfresco-super-pom</artifactId>
|
|
<version>10</version>
|
|
</parent>
|
|
|
|
<organization>
|
|
<name>Alfresco Software</name>
|
|
<url>http://www.alfresco.com/</url>
|
|
</organization>
|
|
<developers>
|
|
<developer>
|
|
<name>Paul Brodner</name>
|
|
<roles>
|
|
<role>Test Automation Architect</role>
|
|
</roles>
|
|
</developer>
|
|
</developers>
|
|
<properties>
|
|
<maven.build.sourceVersion>11</maven.build.sourceVersion>
|
|
<suiteXmlFile>src/main/resources/shared-resources/cmis-suites.xml</suiteXmlFile>
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
<tas.utility.version>3.0.8</tas.utility.version>
|
|
<maven-remote-resources.version>1.5</maven-remote-resources.version>
|
|
<chemistry-opencmis-commons-api>1.0.0</chemistry-opencmis-commons-api>
|
|
<maven-jar-plugin.version>3.1.1</maven-jar-plugin.version>
|
|
<maven-release.version>2.5.3</maven-release.version>
|
|
<java.version>11</java.version>
|
|
</properties>
|
|
|
|
<scm>
|
|
<connection>scm:git:https://github.com/Alfresco/alfresco-tas-cmis.git</connection>
|
|
<developerConnection>scm:git:https://github.com/Alfresco/alfresco-tas-cmis.git</developerConnection>
|
|
<url>https://github.com/Alfresco/alfresco-tas-cmis</url>
|
|
<tag>HEAD</tag>
|
|
</scm>
|
|
|
|
<issueManagement>
|
|
<system>JIRA</system>
|
|
<url>https://issues.alfresco.com/jira/browse/</url>
|
|
</issueManagement>
|
|
|
|
<distributionManagement>
|
|
<repository>
|
|
<id>alfresco-public</id>
|
|
<url>https://artifacts.alfresco.com/nexus/content/repositories/releases</url>
|
|
</repository>
|
|
<snapshotRepository>
|
|
<id>alfresco-public</id>
|
|
<url>https://artifacts.alfresco.com/nexus/content/repositories/snapshots</url>
|
|
</snapshotRepository>
|
|
</distributionManagement>
|
|
|
|
<!-- Alfresco Repository -->
|
|
<repositories>
|
|
<repository>
|
|
<id>alfresco-public</id>
|
|
<url>https://artifacts.alfresco.com/nexus/content/groups/public</url>
|
|
</repository>
|
|
</repositories>
|
|
|
|
<build>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
<configuration>
|
|
<release>${java.version}</release>
|
|
<showWarnings>true</showWarnings>
|
|
<showDeprecation>true</showDeprecation>
|
|
</configuration>
|
|
</plugin>
|
|
<plugin>
|
|
<artifactId>maven-release-plugin</artifactId>
|
|
<version>${maven-release.version}</version>
|
|
<configuration>
|
|
<tagNameFormat>v@{project.version}</tagNameFormat>
|
|
</configuration>
|
|
</plugin>
|
|
<!-- attach tests -->
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-jar-plugin</artifactId>
|
|
<version>${maven-jar-plugin.version}</version>
|
|
<executions>
|
|
<execution>
|
|
<goals>
|
|
<goal>test-jar</goal>
|
|
</goals>
|
|
</execution>
|
|
</executions>
|
|
</plugin>
|
|
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-source-plugin</artifactId>
|
|
<executions>
|
|
<execution>
|
|
<id>attach-sources</id>
|
|
<goals>
|
|
<goal>jar</goal>
|
|
</goals>
|
|
</execution>
|
|
</executions>
|
|
</plugin>
|
|
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-remote-resources-plugin</artifactId>
|
|
<version>${maven-remote-resources.version}</version>
|
|
<configuration>
|
|
<includes>
|
|
<include>shared-resources/**/*</include>
|
|
</includes>
|
|
<resourceBundles>
|
|
<resourceBundle>org.alfresco.tas:utility:${tas.utility.version}</resourceBundle>
|
|
</resourceBundles>
|
|
</configuration>
|
|
<executions>
|
|
<execution>
|
|
<goals>
|
|
<goal>process</goal>
|
|
<goal>bundle</goal>
|
|
</goals>
|
|
</execution>
|
|
</executions>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-javadoc-plugin</artifactId>
|
|
<configuration>
|
|
<doclint>none</doclint>
|
|
</configuration>
|
|
<executions>
|
|
<execution>
|
|
<id>attach-javadocs</id>
|
|
<goals>
|
|
<goal>jar</goal>
|
|
</goals>
|
|
</execution>
|
|
</executions>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>org.jboss.resteasy</groupId>
|
|
<artifactId>resteasy-jackson2-provider</artifactId>
|
|
<version>3.6.3.Final</version>
|
|
</dependency>
|
|
|
|
<!-- alfresco tester settings -->
|
|
<dependency>
|
|
<groupId>org.alfresco.tas</groupId>
|
|
<artifactId>utility</artifactId>
|
|
<version>${tas.utility.version}</version>
|
|
</dependency>
|
|
|
|
<!-- open cmis settings -->
|
|
<dependency>
|
|
<groupId>org.apache.chemistry.opencmis</groupId>
|
|
<artifactId>chemistry-opencmis-commons-api</artifactId>
|
|
<version>${chemistry-opencmis-commons-api}</version>
|
|
</dependency>
|
|
</dependencies>
|
|
|
|
<reporting>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-project-info-reports-plugin</artifactId>
|
|
<version>2.9</version>
|
|
<reportSets>
|
|
<reportSet>
|
|
<reports>
|
|
<report>dependencies</report>
|
|
<report>issue-tracking</report>
|
|
<report>scm</report>
|
|
</reports>
|
|
</reportSet>
|
|
</reportSets>
|
|
</plugin>
|
|
</plugins>
|
|
</reporting>
|
|
|
|
</project>
|