passfailreport-maven-plugin
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>com.github.gtxtreme21</groupId>
<artifactId>passfailreport-maven-plugin</artifactId>
<version>1.3</version>
</dependency><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/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>com.github.gtxtreme21</groupId>
<artifactId>passfailreport-maven-plugin</artifactId>
<packaging>maven-plugin</packaging>
<version>1.3</version>
<name>Jmeter PassFailReport</name>
<description>A plugin that builds a simple report by reading Jmeter jtl result files with Maven.</description>
<url>http://github.com/gtxtreme21/PassFailReport</url>
<parent>
<groupId>org.sonatype.oss</groupId>
<artifactId>oss-parent</artifactId>
<version>7</version>
</parent>
<licenses>
<license>
<name>GNU GENERAL PUBLIC LICENSE</name>
<url>http://www.gnu.org/licenses/gpl.txt</url>
<distribution>repo</distribution>
</license>
</licenses>
<scm>
<connection>scm:git:git@github.com:gtxtreme21/PassFailReport.git</connection>
<developerConnection>scm:git:git@github.com:gtxtreme21/PassFailReport.git</developerConnection>
<url>http://github.com/gtxtreme21/PassFailReport.git</url>
</scm>
<distributionManagement>
<site>
<id>passfailreport-maven-plugin-repo</id>
<name>Public Repo</name>
<url>https://github.com/gtxtreme21/passfailreport-maven-plugin-repo</url>
</site>
</distributionManagement>
<issueManagement>
<system>GitHub</system>
<url>https://github.com/gtxtreme21/PassFailReport/issues</url>
</issueManagement>
<developers>
<developer>
<id>gtxtreme21</id>
<name>Gary Tipton</name>
<email>gary.tipton21@gmail.com</email>
</developer>
</developers>
<dependencies>
<dependency>
<groupId>org.apache.maven</groupId>
<artifactId>maven-plugin-api</artifactId>
<version>2.0</version>
</dependency>
<dependency>
<groupId>commons-lang</groupId>
<artifactId>commons-lang</artifactId>
<version>2.4</version>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.10</version>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>2.2.1</version>
<executions>
<execution>
<id>attach-sources</id>
<phase>verify</phase>
<goals>
<goal>jar-no-fork</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>2.7</version>
<executions>
<execution>
<id>attach-javadocs</id>
<phase>verify</phase>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>