Skip to content

Latest commit

 

History

History
42 lines (36 loc) · 900 Bytes

README.md

File metadata and controls

42 lines (36 loc) · 900 Bytes

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.