Hamcrest Core.
This is the core API of hamcrest matcher framework to be used by third-party framework providers. This includes the a foundation set of matcher implementations for common operations..
Here is the list of declaration for hamcrest-core. If you use Maven you can use the following code to add the dependency for this POM file.
<dependency> <groupId>org.hamcrest</groupId> <artifactId>hamcrest-core</artifactId> <version>1.3</version> </dependency>
If you think this Maven repository POM file listing for hamcrest-core is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
The following table lists the most popular artifacts which are depending on hamcrest-core-1.3. Their categories and depend by count are also listed.
Category | Artifact | Depended By Count |
---|---|---|
Spring | spring-test 4.1.1.RELEASE Spring TestContext Framework | 5 |
JUnit | junit 4.12 JUnit is a unit testing framework for Java, created by Erich Gamma and Kent Beck. | 25 |
Spring | spring-test 4.1.3.RELEASE Spring TestContext Framework | 5 |
JUnit | junit 4.11 JUnit is a regression testing framework written by Erich Gamma and Kent Beck. It is used by the developer who implements unit tests in Java. | 2031 |
Library | core 1.0.9 Serenity core libraries | 6 |
Database | jdbi 2.53 jDBI is designed to provide convenient tabular data access in Java(tm). It uses the Java collections framework for query results, provides a convenient means of externalizing sql statements, and provides named parameter support for any database being used. | 17 |
JUnit | spock-core 0.7-groovy-1.8 Spock is a testing and specification framework for Java and Groovy applications. What makes it stand out from the crowd is its beautiful and highly expressive specification language. Thanks to its JUnit runner, Spock is compatible with most IDEs, build tools, and continuous integration servers. Spo... | 107 |
Database | jdbi 2.51 jDBI is designed to provide convenient tabular data access in Java(tm). It uses the Java collections framework for query results, provides a convenient means of externalizing sql statements, and provides named parameter support for any database being used. | 32 |
Spring | spring-test 3.2.9.RELEASE Spring TestContext Framework | 7 |
Chart | jfreechart 1.0.17 JFreeChart is a class library, written in Java, for generating charts. Utilising the Java2D APIs, it currently supports bar charts, pie charts, line charts, XY-plots and time series plots. | 5 |
Library | core 1.0.16 Serenity core libraries | 7 |
JUnit | junit 4.12-beta-2 JUnit is a unit testing framework for Java, created by Erich Gamma and Kent Beck. | 6 |
Library | core 1.0.23 Serenity core libraries | 6 |
Spring | spring-test 3.2.8.RELEASE Spring TestContext Framework | 37 |
Library | core 1.0.21 Serenity core libraries | 5 |
Library | core 1.0.12 Serenity core libraries | 5 |
Asynchronous | awaitility 1.6.0 A Java DSL for synchronizing asynchronous operations | 6 |
XML Graphics | poi 3.11-beta2 Apache POI - Java API To Access Microsoft Format Files | 6 |
JUnit | spock-core 0.7-groovy-2.0 Spock is a testing and specification framework for Java and Groovy applications. What makes it stand out from the crowd is its beautiful and highly expressive specification language. Thanks to its JUnit runner, Spock is compatible with most IDEs, build tools, and continuous integration servers. Spo... | 151 |
Spring | spring-test 4.0.3.RELEASE Spring TestContext Framework | 8 |
Library | core 1.0.14 Serenity core libraries | 5 |
Testing | hamcrest-library 1.3 Hamcrest library of matcher implementations. | 143 |
Spring | spring-test 4.0.2.RELEASE Spring TestContext Framework | 15 |
Log | logstash-logback-encoder 2.8 Logback encoder which will output events as Logstash-compatible JSON | 7 |
The following packages are defined in the hamcrest-core-1.3.jar
org.hamcrest org.hamcrest.core org.hamcrest.internal
Here is the content of the POM file.
<?xml version="1.0" encoding="ISO-8859-1"?> <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> <parent> <groupId>org.hamcrest</groupId> <artifactId>hamcrest-parent</artifactId> <version>1.3</version> </parent> <artifactId>hamcrest-core</artifactId> <packaging>jar</packaging> <name>Hamcrest Core</name> <description> This is the core API of hamcrest matcher framework to be used by third-party framework providers. This includes the a foundation set of matcher implementations for common operations. </description> </project>