thucydides-jira-zephyr-adaptor
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>net.thucydides.plugins.jira</groupId> <artifactId>thucydides-jira-zephyr-adaptor</artifactId> <version>0.9.244</version> </dependency>
<?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> <parent> <artifactId>thucydides</artifactId> <groupId>net.thucydides</groupId> <version>0.9.244</version> </parent> <groupId>net.thucydides.plugins.jira</groupId> <artifactId>thucydides-jira-zephyr-adaptor</artifactId> <version>0.9.244</version> <name>thucydides-jira-zephyr-adaptor</name> <packaging>jar</packaging> <description>Read Thucydides requirements from JIRA Story and Epic cards</description> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <thucydides.version>0.9.244</thucydides.version> <thucydides.jira.version>0.9.244</thucydides.jira.version> </properties> <scm> <connection>scm:git:git@github.com:thucydides-webtests/thucydides-jira-zephyr-adaptor.git</connection> <developerConnection>scm:git:git@github.com:thucydides-webtests/thucydides-jira-zephyr-adaptor.git</developerConnection> <url>scm:git:git@github.com:thucydides-webtests/thucydides-jira-zephyr-adaptor.git</url> </scm> <dependencies> <dependency> <groupId>net.thucydides</groupId> <artifactId>thucydides-core</artifactId> <version>${thucydides.version}</version> </dependency> <dependency> <groupId>net.thucydides</groupId> <artifactId>thucydides-junit</artifactId> <version>${thucydides.version}</version> </dependency> <dependency> <groupId>net.thucydides.plugins.jira</groupId> <artifactId>thucydides-jira-plugin</artifactId> <version>${thucydides.jira.version}</version> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-simple</artifactId> <version>1.6.1</version> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.11</version> <scope>test</scope> </dependency> <dependency> <groupId>com.googlecode.lambdaj</groupId> <artifactId>lambdaj</artifactId> <version>2.3.3</version> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <version>2.17</version> <configuration> <skip>true</skip> </configuration> </plugin> <plugin> <artifactId>maven-failsafe-plugin</artifactId> <version>2.17</version> <configuration> <includes> <include>**/When*.java</include> </includes> </configuration> <executions> <execution> <goals> <goal>integration-test</goal> <goal>verify</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>2.9</version> </plugin> <plugin> <groupId>net.thucydides.maven.plugins</groupId> <artifactId>maven-thucydides-plugin</artifactId> <version>${thucydides.version}</version> <executions> <execution> <id>thucydides-reports</id> <phase>post-integration-test</phase> <goals> <goal>aggregate</goal> </goals> </execution> </executions> </plugin> </plugins> </build> </project>