Wiki

Clone wiki

zapi-maven-plugin / Home

ZAPI MAVEN Plugin

Current Version: 0.1

zapi-maven-plugin can upload your surefire and failsafe test reports to JIRA.

Features

  • Integration with Zephyr For JIRA
  • Look up tests by their fully qualified class name. Creates it if not found.

Getting the Plugin

The ZAPI Maven Plugin is hosted on bitbucket your pom.xml like this:

<pluginRepository>
	<id>zapi-maven-repo</id>
	<name>Zapi Maven Bitbucket repository</name>
	<url>https://bitbucket.org/zfjdeveloper/zapi-maven-plugin/raw/releases</url>
</pluginRepository>

Add following to your plugins in build section

<build>
    <plugins>
        <plugin>
            <groupId>com.thed.zapi</groupId>
            <artifactId>zapi-maven-plugin</artifactId>
            <version>0.1</version>
                <executions>
                    <execution>
                        <phase>test</phase>
                        <goals>
                            <goal>zapi</goal>
                        </goals>
                    </execution>
                </executions>
        </plugin>
    </plugins>
</build>

For specific plugin configuration options, see the Goals page

  • Requires ZAPI plugin to be enabled

Updated