Hamcrest Matchers
This library contains a few convenient utils for Hamcrest matching, including:
XhtmlMatchers- matches XML and XHTML with XPath;RegexMatchers- matches Strings with Regular Expressions;JaxbConverter- converts JAXB-annotated objects into XML.
The only dependency you need is (you can also download jcabi-matchers-1.9.0.jar and add it to the classpath):
<dependency>
<groupId>com.jcabi</groupId>
<artifactId>jcabi-matchers</artifactId>
<version>1.9.0</version>
</dependency>
Don't forget to add these two dependencies to your classpath:
<dependency>
<groupId>org.hamcrest</groupId>
<artifactId>hamcrest-core</artifactId>
<version>1.3</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.hamcrest</groupId>
<artifactId>hamcrest-library</artifactId>
<version>1.3</version>
<scope>test</scope>
</dependency>Cutting Edge Version
If you want to use current version of the product, you can do it with this configuration in your pom.xml:
<repositories>
<repository>
<id>oss.sonatype.org</id>
<url>https://oss.sonatype.org/content/repositories/snapshots/</url>
</repository>
</repositories>
<dependencies>
<dependency>
<groupId>com.jcabi</groupId>
<artifactId>jcabi-matchers</artifactId>
<version>2.0-SNAPSHOT</version>
</dependency>
</dependencies>