wpt-sample-junit
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>com.ttdev</groupId>
<artifactId>wpt-sample-junit</artifactId>
<version>3.0.3</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>
<artifactId>wicket-page-test</artifactId>
<groupId>com.ttdev</groupId>
<version>3.0.3</version>
</parent>
<groupId>com.ttdev</groupId>
<artifactId>wpt-sample-junit</artifactId>
<version>${wpt.version}</version>
<name>wpt-sample-junit</name>
<packaging>war</packaging>
<dependencies>
<dependency>
<groupId>com.ttdev</groupId>
<artifactId>wpt-core</artifactId>
<version>${wpt.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.ttdev</groupId>
<artifactId>wpt-runtime-spring</artifactId>
<version>${wpt.version}</version>
</dependency>
<!--
You must include the unit testing framework you prefer (eg, TestNG)
in your app. Here, use JUnit as the purpose of this sample is to show
how to use JUnit with Wicket Page Test.
-->
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.8.1</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-simple</artifactId>
<version>${slf4j.version}</version>
</dependency>
<dependency>
<groupId>org.apache.wicket</groupId>
<artifactId>wicket-extensions</artifactId>
<version>${wicket.version}</version>
</dependency>
<dependency>
<groupId>javax.servlet</groupId>
<artifactId>servlet-api</artifactId>
<version>2.5</version>
<scope>provided</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<configuration>
<includes>
<include>**/MyTestSuite.java</include>
</includes>
</configuration>
</plugin>
</plugins>
</build>
</project>