Junit probe for Probe Dock.
- Java 6+
In your pom file, add the following dependency:
<dependency>
<groupId>io.probedock.client</groupId>
<artifactId>probedock-junit</artifactId>
<version>0.5.2</version>
<scope>test</scope>
</dependency>
Configure your maven surefire plugin to add a Junit listener:
<plugins>
<!-- Add the Maven Surefire plugin or adapt its configuration. -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>2.16</version>
<configuration>
<properties>
<property>
<name>listener</name>
<value>io.probedock.client.junit.ProbeListener</value>
</property>
</properties>
</configuration>
</plugin>
</plugins>
- Fork
- Create a topic branch -
git checkout -b my_feature
- Push to your branch -
git push origin my_feature
- Create a pull request from your branch
Please add a changelog entry with your name for new features and bug fixes.
Probe Dock Junit is licensed under the MIT License. See LICENSE.txt for the full license.