allure-cucumber-jvm-adaptor
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>io.tapack</groupId> <artifactId>allure-cucumber-jvm-adaptor</artifactId> <version>0.2</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> <groupId>io.tapack</groupId> <artifactId>allure-cucumber-jvm-adaptor</artifactId> <version>0.2</version> <name>Allure Cucumber-JVM Adaptor</name> <description> This adaptor allows to generate allure xml reports after cucumber-jvm Junit test execution. (Scenario -> Test) </description> <url>https://github.com/tapack/allure-cucumber-jvm-adaptor</url> <licenses> <license> <name>The Apache Software License, Version 2.0</name> <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> <distribution>repo</distribution> </license> </licenses> <scm> <url>https://github.com/tapack/allure-cucumber-jvm-adaptor</url> <connection>scm:git@github.com:tapack/allure-cucumber-jvm-adaptor.git</connection> <developerConnection>scm:git:git@github.com:tapack/allure-cucumber-jvm-adaptor.git</developerConnection> <tag>allure-cucumber-jvm-adaptor-0.2</tag> </scm> <issueManagement> <system>GitHub Issues</system> <url>https://github.com/tapack/allure-cucumber-jvm-adaptor/issues</url> </issueManagement> <developers> <developer> <id>mdolinin</id> <name>Mike Dolinin</name> <email>mdolinin@tapack.io</email> </developer> </developers> <distributionManagement> <repository> <id>bintray</id> <url>https://api.bintray.com/maven/mdolinin/maven/allure-cucumber-jvm-adaptor</url> </repository> </distributionManagement> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> <maven.compiler.source>1.7</maven.compiler.source> <maven.compiler.target>1.7</maven.compiler.target> <compiler.version>1.7</compiler.version> <allure.version>1.4.22</allure.version> <cucumberjvm.version>1.2.4</cucumberjvm.version> <aspectj.version>1.8.4</aspectj.version> <commons-lang3.version>3.3.2</commons-lang3.version> <gherkin.version>2.12.2</gherkin.version> <slf4j-simple.version>1.7.14</slf4j-simple.version> </properties> <dependencies> <dependency> <groupId>ru.yandex.qatools.allure</groupId> <artifactId>allure-core</artifactId> <version>${allure.version}</version> <type>pom</type> </dependency> <dependency> <groupId>ru.yandex.qatools.allure</groupId> <artifactId>allure-java-aspects</artifactId> <version>${allure.version}</version> <type>jar</type> </dependency> <dependency> <groupId>ru.yandex.qatools.allure</groupId> <artifactId>allure-commons</artifactId> <version>${allure.version}</version> <type>jar</type> </dependency> <dependency> <groupId>info.cukes</groupId> <artifactId>cucumber-junit</artifactId> <version>${cucumberjvm.version}</version> <type>jar</type> </dependency> <dependency> <groupId>info.cukes</groupId> <artifactId>cucumber-core</artifactId> <version>${cucumberjvm.version}</version> <type>jar</type> </dependency> <dependency> <groupId>info.cukes</groupId> <artifactId>cucumber-java</artifactId> <version>${cucumberjvm.version}</version> <type>jar</type> </dependency> <dependency> <groupId>org.apache.commons</groupId> <artifactId>commons-lang3</artifactId> <version>${commons-lang3.version}</version> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-simple</artifactId> <version>${slf4j-simple.version}</version> </dependency> <dependency> <groupId>info.cukes</groupId> <artifactId>gherkin</artifactId> <version>${gherkin.version}</version> <type>jar</type> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>3.5.1</version> <configuration> <encoding>UTF-8</encoding> </configuration> </plugin> <plugin> <artifactId>maven-release-plugin</artifactId> <version>2.5.3</version> <configuration> <useReleaseProfile>false</useReleaseProfile> <releaseProfiles>release</releaseProfiles> <autoVersionSubmodules>true</autoVersionSubmodules> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <version>2.18.1</version> <configuration> <forkCount>0</forkCount> <!-- parallel execution configuration --> <!--<parallel>classes</parallel>--> <!--<useUnlimitedThreads>true</useUnlimitedThreads>--> <includes> <include>**/*Test.java</include> </includes> <testFailureIgnore>true</testFailureIgnore> <argLine> -javaagent:${settings.localRepository}/org/aspectj/aspectjweaver/${aspectj.version}/aspectjweaver-${aspectj.version}.jar </argLine> <properties> <property> <name>listener</name> <value>io.tapack.allure.cucumberjvm.AllureCucumberListener</value> </property> </properties> </configuration> <dependencies> <dependency> <groupId>org.aspectj</groupId> <artifactId>aspectjweaver</artifactId> <version>${aspectj.version}</version> </dependency> </dependencies> </plugin> <plugin> <groupId>ru.yandex.qatools.allure</groupId> <artifactId>allure-maven-plugin</artifactId> <version>2.5</version> <executions> <execution> <id>allure-report</id> <phase>post-integration-test</phase> <goals> <goal>report</goal> </goals> </execution> </executions> </plugin> </plugins> </build> <profiles> <profile> <id>release</id> <build> <plugins> <plugin> <artifactId>maven-source-plugin</artifactId> <executions> <execution> <id>attach-sources</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> </profiles> </project>