toughday2
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>com.adobe.qe</groupId>
<artifactId>toughday2</artifactId>
<version>0.9.2</version>
</dependency><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>
<groupId>com.adobe.qe</groupId>
<artifactId>toughday2</artifactId>
<packaging>jar</packaging>
<version>0.9.2</version>
<name>toughday2</name>
<url>https://adobe.com</url>
<description>-</description>
<licenses>
<license>
<name>License Agreement</name>
<url>http://adobe.com/go/terms</url>
<distribution>repo</distribution>
</license>
</licenses>
<organization>
<name>Adobe</name>
<url>http://www.adobe.com/</url>
</organization>
<developers>
<developer>
<name>Adobe</name>
<email>repo@adobe.com</email>
<organization>Adobe</organization>
<organizationUrl>http://www.adobe.com</organizationUrl>
</developer>
</developers>
<properties>
<sample.path>${project.basedir}/../toughday_sample/target</sample.path>
<javadoc.opts>-Xdoclint:none</javadoc.opts>
</properties>
<scm>
<connection>scm:git:git@git.corp.adobe.com:QE/toughday2.git</connection>
<developerConnection>scm:git:git@git.corp.adobe.com:QE/toughday2.git</developerConnection>
<url>https://git.corp.adobe.com/QE/toughday2/tree/master/toughday</url>
<tag>toughday2-0.9.2</tag>
</scm>
<distributionManagement>
<repository>
<id>${releaseRepository-Id}</id>
<name>${releaseRepository-Name}</name>
<url>${releaseRepository-URL}</url>
</repository>
<snapshotRepository>
<id>${snapshotRepository-Id}</id>
<name>${snapshotRepository-Name}</name>
<url>${snapshotRepository-URL}</url>
<uniqueVersion>false</uniqueVersion>
</snapshotRepository>
</distributionManagement>
<build>
<pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-release-plugin</artifactId>
<version>2.5.3</version>
<configuration>
<checkModificationExcludes>
<checkModificationExclude>dependency-reduced-pom.xml</checkModificationExclude>
<checkModificationExclude>target/dependency-reduced-pom.xml</checkModificationExclude>
</checkModificationExcludes>
<localCheckout>true</localCheckout>
<releaseProfiles>release</releaseProfiles>
<arguments>-Dsample.path=${sample.path} </arguments>
</configuration>
</plugin>
</plugins>
</pluginManagement>
<plugins>
<!-- copy toughday sample content zip in the jar -->
<plugin>
<artifactId>maven-resources-plugin</artifactId>
<version>3.0.1</version>
<executions>
<execution>
<id>copy-toughdaysample</id>
<phase>generate-resources</phase>
<goals>
<goal>copy-resources</goal>
</goals>
<configuration>
<outputDirectory>${project.build.outputDirectory}</outputDirectory>
<overwrite>true</overwrite>
<resources>
<resource>
<directory>${sample.path}</directory>
<includes>
<include>toughday_sample-*.zip</include>
</includes>
</resource>
</resources>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.3</version>
<configuration>
<source>1.8</source>
<target>1.8</target>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>2.9</version>
<executions>
<execution>
<id>attach-javadocs</id>
<goals>
<goal>jar</goal>
</goals>
<configuration>
<additionalparam>${javadoc.opts}</additionalparam>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-shade-plugin</artifactId>
<version>2.4.1</version>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>shade</goal>
</goals>
<configuration>
<createDependencyReducedPom>false</createDependencyReducedPom>
<filters>
<filter>
<artifact>*</artifact>
<excludes>
<exclude>META-INF/*.SF</exclude>
<exclude>META-INF/*.DSA</exclude>
<exclude>META-INF/*.RSA</exclude>
</excludes>
</filter>
</filters>
<transformers>
<transformer implementation="org.apache.maven.plugins.shade.resource.ManifestResourceTransformer">
<mainClass>com.adobe.qe.toughday.Main</mainClass>
</transformer>
</transformers>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>2.20</version>
<configuration>
<dependenciesToScan>
<dependency>com.adobe.qe:toughday2-api</dependency>
</dependenciesToScan>
</configuration>
</plugin>
</plugins>
<extensions>
<extension>
<groupId>org.kuali.maven.wagons</groupId>
<artifactId>maven-s3-wagon</artifactId>
<version>1.2.1</version>
</extension>
</extensions>
</build>
<dependencies>
<dependency>
<groupId>org.reflections</groupId>
<artifactId>reflections</artifactId>
<version>0.9.11</version>
</dependency>
<dependency>
<groupId>com.adobe.qe</groupId>
<artifactId>toughday2-api</artifactId>
<version>0.9.2</version>
</dependency>
<dependency>
<groupId>com.adobe.qe</groupId>
<artifactId>toughday2-api</artifactId>
<version>0.9.2</version>
<type>test-jar</type>
</dependency>
<dependency>
<groupId>com.adobe.qe</groupId>
<artifactId>aem-td2-core-tests</artifactId>
<version>0.9.2</version>
</dependency>
<!-- Force third-party libraries to use slf4j -->
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>jcl-over-slf4j</artifactId>
<version>1.7.25</version>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>jul-to-slf4j</artifactId>
<version>1.7.25</version>
</dependency>
<!-- Get slf4j from it-framework to log to log4j -->
<dependency>
<groupId>org.apache.logging.log4j</groupId>
<artifactId>log4j-slf4j-impl</artifactId>
<version>2.4.1</version>
</dependency>
<dependency>
<groupId>javax.servlet</groupId>
<artifactId>javax.servlet-api</artifactId>
<version>3.1.0</version>
</dependency>
<!-- Logging -->
<dependency>
<groupId>com.fasterxml.jackson.dataformat</groupId>
<artifactId>jackson-dataformat-yaml</artifactId>
<version>2.5.0</version>
</dependency>
<dependency>
<groupId>org.apache.httpcomponents</groupId>
<artifactId>httpclient</artifactId>
<version>4.5.1</version>
</dependency>
<dependency>
<groupId>org.apache.httpcomponents</groupId>
<artifactId>httpcore</artifactId>
<version>4.4.3</version>
</dependency>
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-io</artifactId>
<version>1.3.2</version>
</dependency>
<dependency>
<groupId>org.apache.sling</groupId>
<artifactId>org.apache.sling.testing.clients</artifactId>
<version>1.1.12</version>
</dependency>
<!-- https://mvnrepository.com/artifact/org.apache.pdfbox/pdfbox -->
<dependency>
<groupId>org.apache.pdfbox</groupId>
<artifactId>pdfbox</artifactId>
<version>2.0.3</version>
</dependency>
<dependency>
<groupId>org.apache.sling</groupId>
<artifactId>org.apache.sling.commons.html</artifactId>
<version>1.0.0</version>
</dependency>
<!-- https://mvnrepository.com/artifact/org.yaml/snakeyaml -->
<dependency>
<groupId>org.yaml</groupId>
<artifactId>snakeyaml</artifactId>
<version>1.17</version>
</dependency>
<!-- https://mvnrepository.com/artifact/org.hdrhistogram/HdrHistogram -->
<dependency>
<groupId>org.hdrhistogram</groupId>
<artifactId>HdrHistogram</artifactId>
<version>2.1.9</version>
</dependency>
<!-- https://mvnrepository.com/artifact/com.google.code.gson/gson -->
<dependency>
<groupId>com.google.code.gson</groupId>
<artifactId>gson</artifactId>
<version>2.8.0</version>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.11</version>
<scope>test</scope>
</dependency>
</dependencies>
</project>