-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
181 additions
and
179 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,179 +1,181 @@ | ||
<?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> | ||
|
||
<groupId>org.alfresco.tas</groupId> | ||
<artifactId>share-test</artifactId> | ||
<version>6.2.0.0-SNAPSHOT</version> | ||
<packaging>jar</packaging> | ||
|
||
<distributionManagement> | ||
<snapshotRepository> | ||
<id>alfresco-internal-snapshots</id> | ||
<url> | ||
https://nexus.alfresco.com/nexus/contecheckAlfrescoOneLogoInVersiondialognt/repositories/internal-snapshots/ | ||
</url> | ||
</snapshotRepository> | ||
<repository> | ||
<id>alfresco-internal</id> | ||
<url>https://nexus.alfresco.com/nexus/content/repositories/internal-releases/</url> | ||
</repository> | ||
</distributionManagement> | ||
|
||
<properties> | ||
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> | ||
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> | ||
<maven-compiler-plugin.version>3.8.0</maven-compiler-plugin.version> | ||
<maven-remote-resources.version>1.6.0</maven-remote-resources.version> | ||
<maven-jar-plugin.version>3.1.0</maven-jar-plugin.version> | ||
<suiteXmlFile>src/test/resources/test-suites</suiteXmlFile> | ||
<tas.utility.version>3.0.41</tas.utility.version> | ||
<tas.cmis.version>1.13</tas.cmis.version> | ||
<tas.restapi.version>1.43</tas.restapi.version> | ||
<apache.poi.version>4.1.2</apache.poi.version> | ||
<java.version>11</java.version> | ||
</properties> | ||
|
||
<dependencies> | ||
<dependency> | ||
<groupId>io.github.bonigarcia</groupId> | ||
<artifactId>webdrivermanager</artifactId> | ||
<version>4.2.2</version> | ||
</dependency> | ||
|
||
<dependency> | ||
<groupId>org.projectlombok</groupId> | ||
<artifactId>lombok</artifactId> | ||
<version>1.18.12</version> | ||
<scope>provided</scope> | ||
</dependency> | ||
|
||
<dependency> | ||
<groupId>commons-net</groupId> | ||
<artifactId>commons-net</artifactId> | ||
<version>3.6</version> | ||
</dependency> | ||
|
||
<dependency> | ||
<groupId>org.alfresco.tas</groupId> | ||
<artifactId>utility</artifactId> | ||
<version>${tas.utility.version}</version> | ||
</dependency> | ||
|
||
<dependency> | ||
<groupId>org.uncommons</groupId> | ||
<artifactId>reportng</artifactId> | ||
<version>1.1.2</version> | ||
<scope>test</scope> | ||
<exclusions> | ||
<exclusion> | ||
<groupId>org.testng</groupId> | ||
<artifactId>testng</artifactId> | ||
</exclusion> | ||
<exclusion> | ||
<groupId>seleniumhq.selenium</groupId> | ||
<artifactId>selenium-java</artifactId> | ||
</exclusion> | ||
</exclusions> | ||
</dependency> | ||
|
||
<dependency> | ||
<groupId>commons-collections</groupId> | ||
<artifactId>commons-collections</artifactId> | ||
<version>3.2.2</version> | ||
</dependency> | ||
|
||
<dependency> | ||
<groupId>org.alfresco.tas</groupId> | ||
<artifactId>cmis</artifactId> | ||
<version>${tas.cmis.version}</version> | ||
</dependency> | ||
|
||
<dependency> | ||
<groupId>org.alfresco.tas</groupId> | ||
<artifactId>restapi</artifactId> | ||
<version>${tas.restapi.version}</version> | ||
</dependency> | ||
|
||
</dependencies> | ||
|
||
<build> | ||
<pluginManagement> | ||
<plugins> | ||
<plugin> | ||
<artifactId>maven-remote-resources-plugin</artifactId> | ||
<version>${maven-remote-resources.version}</version> | ||
</plugin> | ||
</plugins> | ||
</pluginManagement> | ||
<plugins> | ||
<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-compiler-plugin</artifactId> | ||
<version>${maven-compiler-plugin.version}</version> | ||
<configuration> | ||
<release>${java.version}</release> | ||
<showWarnings>true</showWarnings> | ||
<showDeprecation>true</showDeprecation> | ||
</configuration> | ||
</plugin> | ||
|
||
<plugin> | ||
<artifactId>maven-deploy-plugin</artifactId> | ||
<version>3.0.0-M1</version> | ||
<executions> | ||
<execution> | ||
<id>default-deploy</id> | ||
<phase>deploy</phase> | ||
<goals> | ||
<goal>deploy</goal> | ||
</goals> | ||
</execution> | ||
</executions> | ||
</plugin> | ||
|
||
<plugin> | ||
<groupId>org.apache.maven.plugins</groupId> | ||
<artifactId>maven-surefire-plugin</artifactId> | ||
<version>3.0.0-M5</version> | ||
<configuration> | ||
<forkCount>2</forkCount> | ||
<reuseForks>true</reuseForks> | ||
<suiteXmlFiles> | ||
<suiteXmlFile>${suiteXmlFile}</suiteXmlFile> | ||
</suiteXmlFiles> | ||
</configuration> | ||
</plugin> | ||
|
||
<plugin> | ||
<groupId>org.apache.maven.plugins</groupId> | ||
<artifactId>maven-remote-resources-plugin</artifactId> | ||
<configuration> | ||
<resourceBundles> | ||
<resourceBundle>org.alfresco.tas:utility:${tas.utility.version}</resourceBundle> | ||
</resourceBundles> | ||
</configuration> | ||
<executions> | ||
<execution> | ||
<goals> | ||
<goal>process</goal> | ||
</goals> | ||
</execution> | ||
</executions> | ||
</plugin> | ||
</plugins> | ||
</build> | ||
</project> | ||
<?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> | ||
|
||
<groupId>org.alfresco.tas</groupId> | ||
<artifactId>share-test</artifactId> | ||
<version>6.2.0.0-SNAPSHOT</version> | ||
<packaging>jar</packaging> | ||
|
||
<distributionManagement> | ||
<snapshotRepository> | ||
<id>alfresco-internal-snapshots</id> | ||
<url> | ||
https://nexus.alfresco.com/nexus/contecheckAlfrescoOneLogoInVersiondialognt/repositories/internal-snapshots/ | ||
</url> | ||
</snapshotRepository> | ||
<repository> | ||
<id>alfresco-internal</id> | ||
<url>https://nexus.alfresco.com/nexus/content/repositories/internal-releases/</url> | ||
</repository> | ||
</distributionManagement> | ||
|
||
<properties> | ||
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> | ||
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> | ||
<maven-compiler-plugin.version>3.8.0</maven-compiler-plugin.version> | ||
<maven-remote-resources.version>1.6.0</maven-remote-resources.version> | ||
<maven-jar-plugin.version>3.1.0</maven-jar-plugin.version> | ||
<suiteXmlFile>src/test/resources/test-suites</suiteXmlFile> | ||
<suite-name></suite-name> | ||
<tas.utility.version>3.0.41</tas.utility.version> | ||
<tas.cmis.version>1.13</tas.cmis.version> | ||
<tas.restapi.version>1.43</tas.restapi.version> | ||
<apache.poi.version>4.1.2</apache.poi.version> | ||
<java.version>11</java.version> | ||
</properties> | ||
|
||
<dependencies> | ||
<dependency> | ||
<groupId>io.github.bonigarcia</groupId> | ||
<artifactId>webdrivermanager</artifactId> | ||
<version>4.2.2</version> | ||
</dependency> | ||
|
||
<dependency> | ||
<groupId>org.projectlombok</groupId> | ||
<artifactId>lombok</artifactId> | ||
<version>1.18.12</version> | ||
<scope>provided</scope> | ||
</dependency> | ||
|
||
<dependency> | ||
<groupId>commons-net</groupId> | ||
<artifactId>commons-net</artifactId> | ||
<version>3.6</version> | ||
</dependency> | ||
|
||
<dependency> | ||
<groupId>org.alfresco.tas</groupId> | ||
<artifactId>utility</artifactId> | ||
<version>${tas.utility.version}</version> | ||
</dependency> | ||
|
||
<dependency> | ||
<groupId>org.uncommons</groupId> | ||
<artifactId>reportng</artifactId> | ||
<version>1.1.2</version> | ||
<scope>test</scope> | ||
<exclusions> | ||
<exclusion> | ||
<groupId>org.testng</groupId> | ||
<artifactId>testng</artifactId> | ||
</exclusion> | ||
<exclusion> | ||
<groupId>seleniumhq.selenium</groupId> | ||
<artifactId>selenium-java</artifactId> | ||
</exclusion> | ||
</exclusions> | ||
</dependency> | ||
|
||
<dependency> | ||
<groupId>commons-collections</groupId> | ||
<artifactId>commons-collections</artifactId> | ||
<version>3.2.2</version> | ||
</dependency> | ||
|
||
<dependency> | ||
<groupId>org.alfresco.tas</groupId> | ||
<artifactId>cmis</artifactId> | ||
<version>${tas.cmis.version}</version> | ||
</dependency> | ||
|
||
<dependency> | ||
<groupId>org.alfresco.tas</groupId> | ||
<artifactId>restapi</artifactId> | ||
<version>${tas.restapi.version}</version> | ||
</dependency> | ||
|
||
</dependencies> | ||
|
||
<build> | ||
<pluginManagement> | ||
<plugins> | ||
<plugin> | ||
<artifactId>maven-remote-resources-plugin</artifactId> | ||
<version>${maven-remote-resources.version}</version> | ||
</plugin> | ||
</plugins> | ||
</pluginManagement> | ||
<plugins> | ||
<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-compiler-plugin</artifactId> | ||
<version>${maven-compiler-plugin.version}</version> | ||
<configuration> | ||
<release>${java.version}</release> | ||
<showWarnings>true</showWarnings> | ||
<showDeprecation>true</showDeprecation> | ||
</configuration> | ||
</plugin> | ||
|
||
<plugin> | ||
<artifactId>maven-deploy-plugin</artifactId> | ||
<version>3.0.0-M1</version> | ||
<executions> | ||
<execution> | ||
<id>default-deploy</id> | ||
<phase>deploy</phase> | ||
<goals> | ||
<goal>deploy</goal> | ||
</goals> | ||
</execution> | ||
</executions> | ||
</plugin> | ||
|
||
<plugin> | ||
<groupId>org.apache.maven.plugins</groupId> | ||
<artifactId>maven-surefire-plugin</artifactId> | ||
<version>3.0.0-M5</version> | ||
<configuration> | ||
<forkCount>2</forkCount> | ||
<reuseForks>true</reuseForks> | ||
<reportNameSuffix>${suite-name}</reportNameSuffix> | ||
<suiteXmlFiles> | ||
<suiteXmlFile>${suiteXmlFile}</suiteXmlFile> | ||
</suiteXmlFiles> | ||
</configuration> | ||
</plugin> | ||
|
||
<plugin> | ||
<groupId>org.apache.maven.plugins</groupId> | ||
<artifactId>maven-remote-resources-plugin</artifactId> | ||
<configuration> | ||
<resourceBundles> | ||
<resourceBundle>org.alfresco.tas:utility:${tas.utility.version}</resourceBundle> | ||
</resourceBundles> | ||
</configuration> | ||
<executions> | ||
<execution> | ||
<goals> | ||
<goal>process</goal> | ||
</goals> | ||
</execution> | ||
</executions> | ||
</plugin> | ||
</plugins> | ||
</build> | ||
</project> |