maven-qalab-plugin
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>net.objectlab</groupId>
<artifactId>maven-qalab-plugin</artifactId>
<version>2.1</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>net.objectlab</groupId>
<artifactId>maven-qalab-plugin</artifactId>
<packaging>maven-plugin</packaging>
<!-- this is the Maven 2 Version of the QALab plugin -->
<version>2.1</version>
<name>QALab Plugin for Maven 2</name>
<url>http://qalab.sourceforge.net</url>
<licenses>
<license>
<name>GNU General Public License</name>
<url>http://www.gnu.org/copyleft/gpl.html</url>
</license>
</licenses>
<description>
A Maven 2 compatible plugin for QALab.
</description>
<inceptionYear>2005</inceptionYear>
<organization>
<name>Dave Sag acting as an individual</name>
<url>http://www.davesag.com</url>
</organization>
<developers>
<developer>
<id>davesag</id>
<name>Dave Sag</name>
<email>davesag at sourceforge dot net</email>
<url>http://www.davesag.com</url>
<organization>private</organization>
<organizationUrl>http://www.davesag.com</organizationUrl>
<timezone>+1</timezone>
<roles>
<role>Project Lead</role>
<role>Developer</role>
</roles>
</developer>
</developers>
<contributors>
<contributor>
<name>Benoit Xhenseval</name>
<timezone>+0</timezone>
<roles>
<role>QALab Project Originator</role>
</roles>
</contributor>
</contributors>
<!-- we are using CVS for our source control. -->
<scm>
<connection>scm:cvs:pserver:anonymous@cvs.sourceforge.net:/cvsroot/qalab:maven2-qalab-plugin</connection>
<developerConnection>scm:cvs:ext:cvs.sourceforge.net:/cvsroot/qalab:maven2-qalab-plugin</developerConnection>
<url>http://cvs.sourceforge.net/cgi-bin/viewcvs.cgi/qalab/maven2-qalab-plugin/</url>
</scm>
<mailingLists>
<mailingList>
<name>QALab Users</name>
<subscribe>http://lists.sourceforge.net/lists/listinfo/qalab-users</subscribe>
<unsubscribe>http://lists.sourceforge.net/lists/listinfo/qalab-users</unsubscribe>
<archive>http://sourceforge.net/mailarchive/forum.php?forum=qalab-users</archive>
</mailingList>
</mailingLists>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>1.4</source>
<target>1.4</target>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>2.0-beta-2.1</version>
<configuration>
<source>1.4</source>
</configuration>
</plugin>
<!--
config of plugins tied to specific phases
-->
<!-- do the checkstyle checks as part of the verify phase. -->
<plugin>
<artifactId>maven-checkstyle-plugin</artifactId>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>org.apache.maven</groupId>
<artifactId>maven-plugin-api</artifactId>
<version>2.0</version>
</dependency>
<dependency>
<groupId>org.apache.maven.reporting</groupId>
<artifactId>maven-reporting-impl</artifactId>
<version>2.0</version>
</dependency>
<dependency>
<groupId>net.objectlab</groupId>
<artifactId>qalab</artifactId>
<version>0.7.2</version>
</dependency>
<dependency>
<groupId>xalan</groupId>
<artifactId>xalan</artifactId>
<version>2.7.0</version>
</dependency>
<dependency>
<groupId>commons-io</groupId>
<artifactId>commons-io</artifactId>
<version>1.1</version>
<scope>test</scope>
</dependency>
<!-- needed cos qalab does not declare its dependencies
<dependency>
<groupId>xerces</groupId>
<artifactId>xercesImpl</artifactId>
<version>2.6.2</version>
</dependency>
<dependency>
<groupId>xerces</groupId>
<artifactId>xmlParserAPIs</artifactId>
<version>2.6.2</version>
</dependency>
<dependency>
<groupId>jfree</groupId>
<artifactId>jfreechart</artifactId>
<version>0.9.21</version>
</dependency>
<dependency>
<groupId>jfree</groupId>
<artifactId>jcommon</artifactId>
<version>0.9.6</version>
</dependency>
-->
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>3.8.1</version>
<scope>test</scope>
</dependency>
</dependencies>
<!--
generate reports for PMD, Checkstyle, Findbugs, QALab, Cobertura
and surefire (unit tests).
-->
<reporting>
<plugins>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>changes-maven-plugin</artifactId>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>changelog-maven-plugin</artifactId>
</plugin>
<plugin>
<artifactId>maven-javadoc-plugin</artifactId>
<configuration>
<source>1.4</source>
</configuration>
</plugin>
<!-- checkstyle -->
<plugin>
<artifactId>maven-checkstyle-plugin</artifactId>
</plugin>
<!-- surefire unit tests -->
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>surefire-report-maven-plugin</artifactId>
</plugin>
</plugins>
</reporting>
</project>