org.bulbit.maven:bulb-maven-plugin

Maven plugin what exports XML report about tests compatible with Jira plugin made by bulbit.org.

License

License

Categories

Categories

Maven Build Tools
GroupId

GroupId

org.bulbit.maven
ArtifactId

ArtifactId

bulb-maven-plugin
Last Version

Last Version

1.0.1
Release Date

Release Date

Type

Type

maven-plugin
Description

Description

org.bulbit.maven:bulb-maven-plugin
Maven plugin what exports XML report about tests compatible with Jira plugin made by bulbit.org.
Source Code Management

Source Code Management

http://github.com/JanisU/bulb-maven-plugin/tree/master

Download bulb-maven-plugin

How to add to project

<plugin>
    <groupId>org.bulbit.maven</groupId>
    <artifactId>bulb-maven-plugin</artifactId>
    <version>1.0.1</version>
</plugin>

Dependencies

compile (4)

Group / Artifact Type Version
org.apache.maven : maven-plugin-api jar 3.3.9
org.apache.maven : maven-core jar 3.3.9
org.apache.maven : maven-compat jar 3.3.9
com.github.javaparser : javaparser-core jar 2.5.1

provided (2)

Group / Artifact Type Version
org.apache.maven : maven-artifact jar 3.3.9
org.apache.maven.plugin-tools : maven-plugin-annotations jar 3.4

test (3)

Group / Artifact Type Version
junit : junit jar 4.12
org.apache.maven.plugin-testing : maven-plugin-testing-harness jar 3.3.0
org.apache.maven.shared : maven-verifier jar 1.6

Project Modules

There are no modules declared in this project.

Bulb Maven Plugin

Introduction

Bulb Maven pluging is a maven plugin what exports XML test report in a format compatible with Bulb for JIRA plugin.

Usage

Document your tests like this:


Add following to your pom.xml file:

...
<build>
    <plugins>
        <plugin>
            <groupId>org.bulbit.maven</groupId>
            <artifactId>bulb-maven-plugin</artifactId>
            <version>1.0.1</version>
            <configuration>
            </configuration>
            <executions>
                <execution>
                    <phase>test</phase>
                    <goals>
                        <goal>testreport</goal>
                    </goals>
                </execution>
            </executions>
        </plugin>
    </plugins>
</build>
...

Run:

mvn clean install

Use report under target/trackerTestReport.xml with Bulb for JIRA plugin.

Versions

Version
1.0.1
1.0.0