hamcrest-optional
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.github.npathai</groupId> <artifactId>hamcrest-optional</artifactId> <version>2.0.0</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <modelVersion>4.0.0</modelVersion> <groupId>com.github.npathai</groupId> <artifactId>hamcrest-optional</artifactId> <version>2.0.0</version> <name>Hamcrest Optional</name> <description>A set of Hamcrest matchers for java.util.Optional.</description> <url>https://github.com/npathai/hamcrest-optional/</url> <licenses> <license> <name>MIT License</name> <url>http://www.opensource.org/licenses/mit-license</url> <distribution>repo</distribution> </license> </licenses> <developers> <developer> <id>narendra.pathai@gmail.com</id> <name>Narendra Pathai</name> <email>narendra.pathai@gmail.com</email> </developer> <developer> <id>mail@stefan-birkner.de</id> <name>Stefan Birkner</name> <email>mail@stefan-birkner.de</email> <url>http://www.stefan-birkner.de</url> </developer> </developers> <scm> <connection>scm:git:git://github.com/npathai/hamcrest-optional.git</connection> <developerConnection>scm:git:git@github.com:npathai/hamcrest-optional.git</developerConnection> <url>https://github.com/npathai/hamcrest-optional/</url> </scm> <dependencies> <dependency> <groupId>org.hamcrest</groupId> <artifactId>hamcrest-core</artifactId> <version>1.3</version> <scope>compile</scope> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>flatten-maven-plugin</artifactId> <version>1.0.0</version> <extensions>true</extensions> </plugin> <plugin> <groupId>org.sonatype.plugins</groupId> <artifactId>nexus-staging-maven-plugin</artifactId> <version>1.6.7</version> <extensions>true</extensions> </plugin> </plugins> </build> </project>