continuous-testing-toolkit
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>org.infinitest</groupId>
<artifactId>continuous-testing-toolkit</artifactId>
<version>1.0</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>org.infinitest</groupId>
<artifactId>continuous-testing-toolkit</artifactId>
<packaging>jar</packaging>
<version>1.0</version>
<name>Infinitest Continuous Testing Toolkit</name>
<url>http://infinitest.org</url>
<description>Supporting classes that facilitate continuous testing via Infinitest</description>
<licenses>
<license>
<name>GNU General Public License v2</name>
<url>http://www.gnu.org/licenses/old-licenses/gpl-2.0.html</url>
</license>
</licenses>
<scm>
<connection>scm:svn:http://infinitest.googlecode.com/svn/tags/continuous-testing-toolkit-1.0</connection>
<developerConnection>scm:svn:https://infinitest.googlecode.com/svn/tags/continuous-testing-toolkit-1.0</developerConnection>
<url>http://infinitest.googlecode.com/svn/tags/continuous-testing-toolkit-1.0</url>
</scm>
<developers>
<developer>
<id>pholser</id>
<name>Paul Holser</name>
<email>pholser@alumni.rice.edu</email>
<url>http://www.pholser.com</url>
</developer>
</developers>
<build>
<extensions>
<extension>
<groupId>org.apache.maven.wagon</groupId>
<artifactId>wagon-ssh-external</artifactId>
<version>1.0-alpha-5</version>
</extension>
</extensions>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>2.0.2</version>
<configuration>
<source>1.5</source>
<target>1.5</target>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-eclipse-plugin</artifactId>
<version>2.5.1</version>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>cobertura-maven-plugin</artifactId>
<version>2.2</version>
<configuration>
<check>
<haltOnFailure>true</haltOnFailure>
<totalBranchRate>83</totalBranchRate>
<totalLineRate>90</totalLineRate>
</check>
</configuration>
<executions>
<execution>
<goals>
<goal>clean</goal>
<goal>check</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-checkstyle-plugin</artifactId>
<version>2.1</version>
<executions>
<execution>
<phase>compile</phase>
<goals>
<goal>check</goal>
</goals>
</execution>
</executions>
<configuration>
<configLocation>${basedir}/conf/src-checkstyle.xml</configLocation>
<headerLocation>${basedir}/conf/GPLv2-LICENSE.txt</headerLocation>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-pmd-plugin</artifactId>
<configuration>
<minimumTokens>40</minimumTokens>
<targetJdk>1.5</targetJdk>
</configuration>
<executions>
<execution>
<phase>compile</phase>
<goals>
<goal>cpd-check</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<artifactId>maven-site-plugin</artifactId>
<configuration>
<templateFile>src/site/site.vm</templateFile>
</configuration>
</plugin>
</plugins>
<pluginManagement>
<plugins>
<plugin>
<artifactId>maven-release-plugin</artifactId>
<version>2.0-beta-9</version>
</plugin>
<plugin>
<artifactId>maven-scm-plugin</artifactId>
<version>1.2</version>
</plugin>
</plugins>
</pluginManagement>
</build>
<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.6</version>
</dependency>
<dependency>
<groupId>org.hamcrest</groupId>
<artifactId>hamcrest-all</artifactId>
<version>1.1</version>
</dependency>
<dependency>
<groupId>commons-io</groupId>
<artifactId>commons-io</artifactId>
<version>1.4</version>
</dependency>
<dependency>
<groupId>commons-lang</groupId>
<artifactId>commons-lang</artifactId>
<version>2.4</version>
</dependency>
<dependency>
<groupId>com.google.collections</groupId>
<artifactId>google-collections</artifactId>
<version>1.0-rc1</version>
</dependency>
</dependencies>
<reporting>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<configuration>
<source>1.5</source>
<show>public</show>
<excludePackageNames>org.infinitest.toolkit.internal.*</excludePackageNames>
<links>
<link>http://java.sun.com/j2se/1.5.0/docs/api</link>
</links>
<bottom><![CDATA[<i>© Copyright 2009 Paul R. Holser, Jr. All rights reserved. pholser@alumni.rice.edu</i>]]></bottom>
</configuration>
<reportSets>
<reportSet>
<reports>
<report>javadoc</report>
</reports>
</reportSet>
</reportSets>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>cobertura-maven-plugin</artifactId>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-checkstyle-plugin</artifactId>
<configuration>
<configLocation>${basedir}/conf/src-checkstyle.xml</configLocation>
<headerLocation>${basedir}/conf/GPLv2-LICENSE.txt</headerLocation>
</configuration>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>findbugs-maven-plugin</artifactId>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-pmd-plugin</artifactId>
<configuration>
<minimumTokens>40</minimumTokens>
<targetJdk>1.5</targetJdk>
</configuration>
</plugin>
</plugins>
</reporting>
<distributionManagement>
<repository>
<uniqueVersion>false</uniqueVersion>
<id>continuous-testing-toolkit-sourceforge</id>
<name>Continuous Testing Toolkit Repository</name>
<url>sftp://web.sourceforge.net/home/groups/j/jo/jopt-simple/htdocs/maven</url>
<layout>default</layout>
</repository>
<snapshotRepository>
<uniqueVersion>false</uniqueVersion>
<id>continuous-testing-toolkit-sourceforge-snapshots</id>
<name>Continuous Testing Toolkit Snapshot Repository</name>
<url>sftp://web.sourceforge.net/home/groups/j/jo/jopt-simple/htdocs/maven-snapshots</url>
<layout>default</layout>
</snapshotRepository>
<site>
<id>infinitest</id>
<url>scp://eclipse.infinitest.org/var/www/ctt/</url>
</site>
</distributionManagement>
</project>