tapestry-testify
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>net.sourceforge.tapestrytestify</groupId> <artifactId>tapestry-testify</artifactId> <version>1.0.4</version> </dependency>
<?xml version="1.0"?> <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/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <parent> <groupId>org.sonatype.oss</groupId> <artifactId>oss-parent</artifactId> <version>7</version> </parent> <groupId>net.sourceforge.tapestrytestify</groupId> <artifactId>tapestry-testify</artifactId> <version>1.0.4</version> <packaging>jar</packaging> <name>Tapestry Testify</name> <description>Enhanced testing facilities for Tapestry 5.</description> <url>http://tapestrytestify.sourceforge.net</url> <inceptionYear>2009</inceptionYear> <developers> <developer> <id>pfield</id> <name>Paul Field</name> <email>tapestry@cloudinthesky.co.uk</email> <roles> <role>Troublemaker</role> </roles> <timezone>GMT</timezone> </developer> </developers> <contributors> <contributor> <name>Steve Eynon</name> <roles> <role>Developer</role> <role>Tester</role> </roles> </contributor> </contributors> <licenses> <license> <name>Apache Software License 2.0</name> <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> <distribution>repo</distribution> </license> </licenses> <scm> <connection>scm:git:git://git.code.sf.net/p/tapestrytestify/code</connection> <developerConnection>scm:git:ssh://git.code.sf.net/p/tapestrytestify/code</developerConnection> <url>https://sourceforge.net/p/tapestrytestify/code/</url> </scm> <issueManagement> <system>sourceforge</system> <url>https://sourceforge.net/p/tapestrytestify/tickets/</url> </issueManagement> <distributionManagement> <site> <id>sourceforge.net</id> <url>scp://paulfield,tapestrytestify@shell.sourceforge.net/home/project-web/tapestrytestify/htdocs</url> </site> </distributionManagement> <build> <!-- I prefer resources that are related to a class to live in the same folder as the .java file --> <testResources> <testResource> <directory>src/test/java</directory> <excludes> <exclude>**/*.java</exclude> </excludes> </testResource> </testResources> <plugins> <plugin> <artifactId>maven-compiler-plugin</artifactId> <version>2.3.2</version> <configuration> <source>1.5</source> <target>1.5</target> </configuration> </plugin> <plugin> <artifactId>maven-surefire-plugin</artifactId> <version>2.11</version> <configuration> <suiteXmlFiles> <suiteXmlFile>src/test/conf/testng.xml</suiteXmlFile> </suiteXmlFiles> <argLine>-Xmx500m</argLine> <redirectTestOutputToFile>false</redirectTestOutputToFile> </configuration> </plugin> <plugin> <artifactId>maven-jar-plugin</artifactId> <version>2.3.2</version> <configuration> <archive> <compress>true</compress> <index>true</index> </archive> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>2.1.2</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.8</version> <executions> <execution> <id>attach-javadocs</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-site-plugin</artifactId> <version>3.0</version> <configuration> <reportPlugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-project-info-reports-plugin</artifactId> <version>2.4</version> <configuration> <dependencyDetailsEnabled>false</dependencyDetailsEnabled> <dependencyLocationsEnabled>false</dependencyLocationsEnabled> </configuration> <!-- simpler configuration without reportSets available for usual cases --> <reports> <report>dependencies</report> <report>scm</report> <report>summary</report> <report>project-team</report> <report>license</report> </reports> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>2.8</version> </plugin> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>cobertura-maven-plugin</artifactId> <version>2.5.1</version> </plugin> </reportPlugins> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <version>1.4</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-scm-plugin</artifactId> <version>1.6</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-release-plugin</artifactId> <version>2.2.2</version> <configuration> <pushChanges>false</pushChanges> <localCheckout>true</localCheckout> <tagNameFormat>v@{project.version}</tagNameFormat> </configuration> </plugin> </plugins> <extensions> <extension> <groupId>org.apache.maven.wagon</groupId> <artifactId>wagon-ssh</artifactId> </extension> </extensions> </build> <dependencies> <dependency> <groupId>org.apache.tapestry</groupId> <artifactId>tapestry-core</artifactId> <version>${tapestry-release-version}</version> <scope>compile</scope> </dependency> <dependency> <groupId>org.apache.tapestry</groupId> <artifactId>tapestry-test</artifactId> <version>${tapestry-release-version}</version> <scope>compile</scope> <exclusions> <exclusion> <artifactId>selenium-java</artifactId> <groupId>org.seleniumhq.selenium</groupId> </exclusion> <exclusion> <artifactId>selenium-server</artifactId> <groupId>org.seleniumhq.selenium</groupId> </exclusion> <exclusion> <artifactId>jetty-plus</artifactId> <groupId>org.eclipse.jetty</groupId> </exclusion> <exclusion> <artifactId>jetty-webapp</artifactId> <groupId>org.eclipse.jetty</groupId> </exclusion> <exclusion> <artifactId>org.mortbay.jetty</artifactId> <groupId>jetty</groupId> </exclusion> <exclusion> <artifactId>jetty-jndi</artifactId> <groupId>org.eclipse.jetty</groupId> </exclusion> <exclusion> <artifactId>jetty-server</artifactId> <groupId>org.eclipse.jetty</groupId> </exclusion> <exclusion> <artifactId>catalina</artifactId> <groupId>org.apache.tomcat</groupId> </exclusion> <exclusion> <artifactId>testng</artifactId> <groupId>org.testng</groupId> </exclusion> <exclusion> <artifactId>easymock</artifactId> <groupId>org.easymock</groupId> </exclusion> <exclusion> <artifactId>dbcp</artifactId> <groupId>org.apache.tomcat</groupId> </exclusion> <exclusion> <artifactId>coyote</artifactId> <groupId>org.apache.tomcat</groupId> </exclusion> </exclusions> </dependency> <dependency> <groupId>javax.servlet</groupId> <artifactId>servlet-api</artifactId> <version>2.4</version> <scope>test</scope> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.0</version> <scope>compile</scope> <optional>true</optional> </dependency> <dependency> <groupId>org.mockito</groupId> <artifactId>mockito-core</artifactId> <version>1.7</version> <scope>test</scope> </dependency> <dependency> <groupId>org.testng</groupId> <artifactId>testng</artifactId> <classifier>jdk15</classifier> <version>5.8</version> <scope>compile</scope> </dependency> </dependencies> <properties> <tapestry-release-version>5.3.1</tapestry-release-version> </properties> </project>