| |
| <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"> |
| |
| <!-- Refer to the file ./build-with-maven for instruction on how to use this pom.xml --> |
| |
| <modelVersion>4.0.0</modelVersion> |
| <groupId>org.testng</groupId> |
| <artifactId>testng</artifactId> |
| <packaging>jar</packaging> |
| <name>TestNG</name> |
| <version>6.9.10-SNAPSHOT</version> |
| <description>TestNG is a testing framework.</description> |
| <url>http://testng.org</url> |
| |
| <licenses> |
| <license> |
| <name>Apache License, Version 2.0</name> |
| <url>http://apache.org/licenses/LICENSE-2.0</url> |
| <distribution>repo</distribution> |
| </license> |
| </licenses> |
| |
| <scm> |
| <connection>scm:git:[email protected]:cbeust/testng.git</connection> |
| <developerConnection>scm:git:[email protected]:cbeust/testng.git</developerConnection> |
| <url>[email protected]:cbeust/testng.git</url> |
| </scm> |
| |
| <developers> |
| <developer> |
| <name>Cedric Beust</name> |
| </developer> |
| </developers> |
| |
| <parent> |
| <groupId>org.sonatype.oss</groupId> |
| <artifactId>oss-parent</artifactId> |
| <version>3</version> |
| </parent> |
| |
| <distributionManagement> |
| <repository> |
| <id>bintray</id> |
| <url>https://api.bintray.com/maven/cbeust/maven/testng</url> |
| </repository> |
| </distributionManagement> |
| |
| <dependencies> |
| <dependency> |
| <groupId>org.apache.ant</groupId> |
| <artifactId>ant</artifactId> |
| <version>1.7.0</version> |
| <optional>true</optional> |
| </dependency> |
| |
| <dependency> |
| <groupId>junit</groupId> |
| <artifactId>junit</artifactId> |
| <version>4.10</version> |
| <optional>true</optional> |
| </dependency> |
| |
| <dependency> |
| <groupId>org.beanshell</groupId> |
| <artifactId>bsh</artifactId> |
| <version>2.0b4</version> |
| <!-- |
| <scope>provided</scope> |
| --> |
| </dependency> |
| |
| <dependency> |
| <groupId>com.google.inject</groupId> |
| <artifactId>guice</artifactId> |
| <version>4.0</version> |
| <classifier>no_aop</classifier> |
| <scope>provided</scope> |
| </dependency> |
| |
| <dependency> |
| <groupId>com.beust</groupId> |
| <artifactId>jcommander</artifactId> |
| <version>1.48</version> |
| </dependency> |
| |
| <dependency> |
| <groupId>org.yaml</groupId> |
| <artifactId>snakeyaml</artifactId> |
| <version>1.15</version> |
| <optional>true</optional> |
| </dependency> |
| |
| <dependency> |
| <groupId>org.assertj</groupId> |
| <artifactId>assertj-core</artifactId> |
| <version>2.0.0</version> |
| <scope>test</scope> |
| </dependency> |
| </dependencies> |
| |
| <properties> |
| <version.build.directory>${project.build.directory}/generated-sources/version</version.build.directory> |
| </properties> |
| |
| <build> |
| <resources> |
| <resource> |
| <directory>src/main/resources</directory> |
| <includes> |
| <include>**/VersionTemplateJava</include> |
| </includes> |
| <filtering>true</filtering> |
| <targetPath>${version.build.directory}</targetPath> |
| </resource> |
| <resource> |
| <directory>src/main/resources</directory> |
| </resource> |
| </resources> |
| <plugins> |
| |
| <!-- Rename Version.java --> |
| <plugin> |
| <groupId>com.coderplus.maven.plugins</groupId> |
| <artifactId>copy-rename-maven-plugin</artifactId> |
| <version>1.0.1</version> |
| <executions> |
| <execution> |
| <id>rename-file</id> |
| <phase>process-resources</phase> |
| <goals> |
| <goal>rename</goal> |
| </goals> |
| <configuration> |
| <sourceFile>${version.build.directory}/org/testng/internal/VersionTemplateJava</sourceFile> |
| <destinationFile>${version.build.directory}/org/testng/internal/Version.java</destinationFile> |
| </configuration> |
| </execution> |
| </executions> |
| </plugin> |
| |
| <!-- Release for bintray --> |
| <plugin> |
| <artifactId>maven-release-plugin</artifactId> |
| <configuration> |
| <useReleaseProfile>false</useReleaseProfile> |
| <releaseProfiles>release</releaseProfiles> |
| <autoVersionSubmodules>true</autoVersionSubmodules> |
| </configuration> |
| </plugin> |
| |
| <!-- Generating Javadoc --> |
| <plugin> |
| <groupId>org.apache.maven.plugins</groupId> |
| <artifactId>maven-javadoc-plugin</artifactId> |
| <version>2.10.3</version> |
| <configuration> |
| <failOnError>false</failOnError> |
| <excludePackageNames>*internal</excludePackageNames> |
| </configuration> |
| <executions> |
| <execution> |
| <id>attach-javadocs</id> |
| <goals> |
| <goal>jar</goal> |
| </goals> |
| </execution> |
| </executions> |
| </plugin> |
| |
| <!-- Bundle sources --> |
| |
| <plugin> |
| <groupId>org.apache.maven.plugins</groupId> |
| <artifactId>maven-source-plugin</artifactId> |
| <version>2.1.1</version> |
| <executions> |
| <execution> |
| <id>attach-sources</id> |
| <goals> |
| <goal>jar</goal> |
| </goals> |
| </execution> |
| </executions> |
| </plugin> |
| |
| <!-- Compilation --> |
| <plugin> |
| <groupId>org.apache.maven.plugins</groupId> |
| <artifactId>maven-compiler-plugin</artifactId> |
| <version>3.1</version> |
| <configuration> |
| <source>1.7</source> |
| <target>1.7</target> |
| </configuration> |
| </plugin> |
| |
| <!-- Resource handling --> |
| <plugin> |
| <groupId>org.apache.maven.plugins</groupId> |
| <artifactId>maven-resources-plugin</artifactId> |
| <version>2.4.1</version> |
| <configuration> |
| <encoding>UTF-8</encoding> |
| </configuration> |
| <executions> |
| <execution> |
| <phase>process-sources</phase> |
| </execution> |
| </executions> |
| </plugin> |
| <plugin> |
| <groupId>org.codehaus.mojo</groupId> |
| <artifactId>build-helper-maven-plugin</artifactId> |
| <version>1.9.1</version> |
| <executions> |
| <execution> |
| <phase>generate-sources</phase> |
| <goals> |
| <goal>add-source</goal> |
| </goals> |
| <configuration> |
| <sources> |
| <source>${version.build.directory}</source> |
| </sources> |
| </configuration> |
| </execution> |
| </executions> |
| </plugin> |
| |
| <!-- OSGi manifest creation --> |
| <plugin> |
| <groupId>org.apache.felix</groupId> |
| <artifactId>maven-bundle-plugin</artifactId> |
| <version>2.1.0</version> |
| <executions> |
| <execution> |
| <id>bundle-manifest</id> |
| <phase>process-classes</phase> |
| <goals> |
| <goal>manifest</goal> |
| </goals> |
| <configuration> |
| <instructions> |
| <_versionpolicy>$(@)</_versionpolicy> |
| <Import-Package> |
| bsh.*;version="[2.0.0,3.0.0)";resolution:=optional, |
| com.beust.jcommander.*;version="[1.7.0,3.0.0)";resolution:=optional, |
| com.google.inject.*;version="[1.2,1.3)";resolution:=optional, |
| junit.framework;version="[3.8.1, 5.0.0)";resolution:=optional, |
| org.junit.*;resolution:=optional, |
| org.apache.tools.ant.*;version="[1.7.0, 2.0.0)";resolution:=optional, |
| org.yaml.*;version="[1.6,2.0)";resolution:=optional, |
| !com.beust.testng, |
| !org.testng.*, |
| !com.sun.*, |
| * |
| </Import-Package> |
| </instructions> |
| </configuration> |
| </execution> |
| </executions> |
| </plugin> |
| |
| <!-- Add OSGi manifest in JAR --> |
| <plugin> |
| <groupId>org.apache.maven.plugins</groupId> |
| <artifactId>maven-jar-plugin</artifactId> |
| <version>2.3.1</version> |
| <configuration> |
| <archive> |
| <manifestFile>${project.build.outputDirectory}/META-INF/MANIFEST.MF</manifestFile> |
| </archive> |
| </configuration> |
| </plugin> |
| |
| <!-- Tests --> |
| <plugin> |
| <groupId>org.apache.maven.plugins</groupId> |
| <artifactId>maven-surefire-plugin</artifactId> |
| <version>2.19</version> |
| <configuration> |
| <suiteXmlFiles> |
| <suiteXmlFile>src/test/resources/testng.xml</suiteXmlFile> |
| </suiteXmlFiles> |
| <properties> |
| <property> |
| <name>listener</name> |
| <value>test.invokedmethodlistener.MyListener</value> |
| </property> |
| </properties> |
| <systemPropertyVariables> |
| <test.resources.dir>${project.build.testOutputDirectory}</test.resources.dir> |
| </systemPropertyVariables> |
| </configuration> |
| </plugin> |
| |
| <!-- Signing with gpg --> |
| <plugin> |
| <groupId>org.apache.maven.plugins</groupId> |
| <artifactId>maven-gpg-plugin</artifactId> |
| <version>1.4</version> |
| <executions> |
| <execution> |
| <id>sign-artifacts</id> |
| <phase>verify</phase> |
| <goals> |
| <goal>sign</goal> |
| </goals> |
| </execution> |
| </executions> |
| </plugin> |
| |
| </plugins> |
| |
| </build> |
| |
| |
| <profiles> |
| |
| <!-- bintray profile --> |
| |
| <profile> |
| <id>bintray</id> |
| <build> |
| <plugins> |
| <plugin> |
| <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-javadoc-plugin</artifactId> |
| <version>2.10.3</version> |
| <configuration> |
| <failOnError>false</failOnError> |
| <excludePackageNames>*internal</excludePackageNames> |
| </configuration> |
| <executions> |
| <execution> |
| <id>attach-javadocs</id> |
| <goals> |
| <goal>jar</goal> |
| </goals> |
| </execution> |
| </executions> |
| </plugin> |
| <!-- |
| <plugin> |
| <artifactId>maven-javadoc-plugin</artifactId> |
| <executions> |
| <execution> |
| <id>attach-javadocs</id> |
| <goals> |
| <goal>jar</goal> |
| </goals> |
| </execution> |
| </executions> |
| </plugin> |
| --> |
| </plugins> |
| </build> |
| </profile> |
| |
| <profile> |
| <!-- When activated, download dependencies from the snapshot repo --> |
| <id>snapshot</id> |
| |
| <repositories> |
| <repository> |
| <id>nexus-snapshot-repository</id> |
| <url>https://oss.sonatype.org/content/repositories/snapshots/</url> |
| </repository> |
| </repositories> |
| |
| <dependencies> |
| <dependency> |
| <groupId>org.apache.ant</groupId> |
| <artifactId>ant</artifactId> |
| <version>1.7.0</version> |
| <optional>true</optional> |
| </dependency> |
| <dependency> |
| <groupId>junit</groupId> |
| <artifactId>junit</artifactId> |
| <version>4.11</version> |
| <optional>true</optional> |
| </dependency> |
| <dependency> |
| <groupId>org.beanshell</groupId> |
| <artifactId>bsh</artifactId> |
| <version>2.0b4</version> |
| <!-- |
| <scope>provided</scope> |
| --> |
| </dependency> |
| <dependency> |
| <groupId>com.google.inject</groupId> |
| <artifactId>guice</artifactId> |
| <version>2.0</version> |
| <scope>provided</scope> |
| </dependency> |
| <dependency> |
| <groupId>com.beust</groupId> |
| <artifactId>jcommander</artifactId> |
| <version>1.48</version> |
| </dependency> |
| </dependencies> |
| |
| </profile> |
| </profiles> |
| |
| </project> |