Allure Cucumber-JVM Adaptor

Sonatype helps open source projects to set up Maven repositories on https://oss.sonatype.org/

License

License

Categories

Categories

Cucumber Application Testing & Monitoring Dex General Purpose Libraries Utility
GroupId

GroupId

ru.yandex.qatools.allure
ArtifactId

ArtifactId

allure-cucumber-jvm-adaptor
Last Version

Last Version

1.6.4
Release Date

Release Date

Type

Type

jar
Description

Description

Allure Cucumber-JVM Adaptor
Sonatype helps open source projects to set up Maven repositories on https://oss.sonatype.org/
Source Code Management

Source Code Management

https://github.com/allure-framework/allure-cucumber-jvm-adaptor

Download allure-cucumber-jvm-adaptor

How to add to project

<!-- https://jarcasting.com/artifacts/ru.yandex.qatools.allure/allure-cucumber-jvm-adaptor/ -->
<dependency>
    <groupId>ru.yandex.qatools.allure</groupId>
    <artifactId>allure-cucumber-jvm-adaptor</artifactId>
    <version>1.6.4</version>
</dependency>
// https://jarcasting.com/artifacts/ru.yandex.qatools.allure/allure-cucumber-jvm-adaptor/
implementation 'ru.yandex.qatools.allure:allure-cucumber-jvm-adaptor:1.6.4'
// https://jarcasting.com/artifacts/ru.yandex.qatools.allure/allure-cucumber-jvm-adaptor/
implementation ("ru.yandex.qatools.allure:allure-cucumber-jvm-adaptor:1.6.4")
'ru.yandex.qatools.allure:allure-cucumber-jvm-adaptor:jar:1.6.4'
<dependency org="ru.yandex.qatools.allure" name="allure-cucumber-jvm-adaptor" rev="1.6.4">
  <artifact name="allure-cucumber-jvm-adaptor" type="jar" />
</dependency>
@Grapes(
@Grab(group='ru.yandex.qatools.allure', module='allure-cucumber-jvm-adaptor', version='1.6.4')
)
libraryDependencies += "ru.yandex.qatools.allure" % "allure-cucumber-jvm-adaptor" % "1.6.4"
[ru.yandex.qatools.allure/allure-cucumber-jvm-adaptor "1.6.4"]

Dependencies

compile (9)

Group / Artifact Type Version
ru.yandex.qatools.allure : allure-core pom 1.5.2
ru.yandex.qatools.allure : allure-java-aspects jar 1.5.2
ru.yandex.qatools.allure : allure-commons jar 1.5.2
info.cukes : cucumber-junit jar 1.2.5
info.cukes : cucumber-core jar 1.2.5
info.cukes : cucumber-java jar 1.2.5
org.apache.commons : commons-lang3 jar 3.3.2
info.cukes : gherkin jar 2.12.2
commons-logging : commons-logging-api jar 1.1

Project Modules

There are no modules declared in this project.

[DEPRICATED]

Please follow https://github.com/allure-framework/allure-java

Allure Cucumber-JVM Adaptor

This adaptor allows to generate allure xml reports after cucumber-jvm tests execution.

Example project

Example projects is located at: https://github.com/allure-examples/allure-cucumber-jvm-example

Usage

Simply add allure-allure-cucumber-jvm-adaptor as dependency to your project and add build section with adaptor plugin:

<project>
...
    <dependencies>
        <dependency>
            <groupId>ru.yandex.qatools.allure</groupId>
            <artifactId>allure-cucumber-jvm-adaptor</artifactId>
            <version>1.6.1</version>
        </dependency>
    </dependencies>
        <build>
        <plugins>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-surefire-plugin</artifactId>
                <version>2.19.1</version>
                <configuration>
                    <testFailureIgnore>false</testFailureIgnore>
                   <argLine>
                        -javaagent:${settings.localRepository}/org/aspectj/aspectjweaver/${aspectj.version}/aspectjweaver-${aspectj.version}.jar
                        -Dcucumber.options="--plugin ru.yandex.qatools.allure.cucumberjvm.AllureReporter"
                    </argLine>                   
                </configuration>
                <dependencies>
                    <dependency>
                        <groupId>org.aspectj</groupId>
                        <artifactId>aspectjweaver</artifactId>
                        <version>1.7.4</version>
                    </dependency>
                </dependencies>
            </plugin>
        </plugins>
    </build>
</project>

Then execute mvn clean test goal. After tests executed allure xml files will be placed in target/allure-results/ directory

release Maven Central build

ru.yandex.qatools.allure

Allure Framework

A flexible lightweight multi-language test report tool

Versions

Version
1.6.4
1.6.3
1.6.2
1.6.1
1.6
1.5.1
1.5
1.4
1.3
1.2
1.1
1.0