Skip to content

Commit 4faf3e8

Browse files
Release 1.0.0 (#3)
1 parent 7a74979 commit 4faf3e8

File tree

2 files changed

+31
-1
lines changed

2 files changed

+31
-1
lines changed

README.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# hamcrest-composites
22

3+
## What's New? ##
4+
5+
* The latest version (1.0.0) is now available at the [Maven Central Repository](https://search.maven.org/search?q=hamcrest-composites).
6+
37
## What Is It? ##
48

59
`hamcrest-composites` is a collection of [Hamcrest](https://github.com/hamcrest/JavaHamcrest) matchers for comparing complex Java objects with [better testability](#is-it-compatible-with-standard-hamcrest).

pom.xml

Lines changed: 27 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<groupId>org.cornutum.testing</groupId>
88
<artifactId>hamcrest-composites</artifactId>
99
<packaging>jar</packaging>
10-
<version>0.0.1-SNAPSHOT</version>
10+
<version>1.0.0</version>
1111

1212
<name>Hamcrest Composites</name>
1313
<description>Better testability for comparision of complex Java objects</description>
@@ -45,6 +45,17 @@
4545
<system>GitHub</system>
4646
<url>https://github.com/Cornutum/hamcrest-composites/issues</url>
4747
</issueManagement>
48+
49+
<distributionManagement>
50+
<snapshotRepository>
51+
<id>ossrh</id>
52+
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
53+
</snapshotRepository>
54+
<repository>
55+
<id>ossrh</id>
56+
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
57+
</repository>
58+
</distributionManagement>
4859

4960
<properties>
5061
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
@@ -81,6 +92,17 @@
8192
</execution>
8293
</executions>
8394
</plugin>
95+
<plugin>
96+
<groupId>org.sonatype.plugins</groupId>
97+
<artifactId>nexus-staging-maven-plugin</artifactId>
98+
<version>1.6.8</version>
99+
<extensions>true</extensions>
100+
<configuration>
101+
<serverId>ossrh</serverId>
102+
<nexusUrl>https://oss.sonatype.org/</nexusUrl>
103+
<autoReleaseAfterClose>true</autoReleaseAfterClose>
104+
</configuration>
105+
</plugin>
84106
<plugin>
85107
<groupId>org.apache.maven.plugins</groupId>
86108
<artifactId>maven-release-plugin</artifactId>
@@ -159,6 +181,10 @@
159181
<groupId>org.apache.maven.plugins</groupId>
160182
<artifactId>maven-source-plugin</artifactId>
161183
</plugin>
184+
<plugin>
185+
<groupId>org.sonatype.plugins</groupId>
186+
<artifactId>nexus-staging-maven-plugin</artifactId>
187+
</plugin>
162188
</plugins>
163189
</build>
164190

0 commit comments

Comments
 (0)