diff --git a/README.md b/README.md
index 90fcc43..6fa8e99 100644
--- a/README.md
+++ b/README.md
@@ -2,6 +2,8 @@
[![License ASL 2.0][ASL 2.0 badge]][ASL 2.0]
[![Build Status][Travis badge]][Travis]
[![Maven Central][Maven Central badge]][Maven]
+/
+[![Maven Central (equivalence)][Maven Central badge equivalence]][Maven equivalence]
## Read me first
@@ -29,7 +31,7 @@ This package is meant to be used with Jackson 2.2.x. It provides the three follo
## Versions
* `jackson-coreutils` is **2.0**
-* `jackson-coreutils-equivalence` is not yet released.
+* `jackson-coreutils-equivalence` is **1.0**
Javadoc is [available
online](https://java-json-tools.github.io/jackson-coreutils/index.html).
@@ -43,6 +45,7 @@ With Gradle:
```groovy
dependencies {
compile(group: "com.github.java-json-tools", name: "jackson-coreutils", version: "2.0");
+ compile(group: "com.github.java-json-tools", name: "jackson-coreutils-equivalence", version: "1.0");
}
```
@@ -54,6 +57,11 @@ With Maven:
jackson-coreutils
2.0
+
+ com.github.java-json-tools
+ jackson-coreutils-equivalence
+ 1.0
+
```
## Description
@@ -219,3 +227,5 @@ if (!ptr.path(node).isMissingNode())
[Travis]: https://travis-ci.com/java-json-tools/jackson-coreutils
[Maven Central badge]: https://img.shields.io/maven-central/v/com.github.java-json-tools/jackson-coreutils.svg
[Maven]: https://search.maven.org/artifact/com.github.java-json-tools/jackson-coreutils
+[Maven Central badge equivalence]: https://img.shields.io/maven-central/v/com.github.java-json-tools/jackson-coreutils-equivalence.svg
+[Maven equivalence]: https://search.maven.org/artifact/com.github.java-json-tools/jackson-coreutils-equivalence
diff --git a/equivalence/project.gradle b/equivalence/project.gradle
index 6e5ce37..e95017b 100644
--- a/equivalence/project.gradle
+++ b/equivalence/project.gradle
@@ -21,7 +21,7 @@
* Project-specific settings. Unfortunately we cannot put the name in there!
*/
group = "com.github.java-json-tools";
-version = "1.0-SNAPSHOT";
+version = "1.0";
sourceCompatibility = JavaVersion.VERSION_1_7;
targetCompatibility = JavaVersion.VERSION_1_7; // defaults to sourceCompatibility
@@ -31,7 +31,7 @@ targetCompatibility = JavaVersion.VERSION_1_7; // defaults to sourceCompatibilit
dependencies {
implementation(group: "com.fasterxml.jackson.core", name: "jackson-databind", version: "2.11.0");
implementation(group: "com.google.guava", name: "guava", version: "28.2-android");
- implementation(group: "com.github.java-json-tools", name: "jackson-coreutils", version: "2.0-SNAPSHOT");
+ implementation(group: "com.github.java-json-tools", name: "jackson-coreutils", version: "2.0");
testImplementation(group: "org.testng", name: "testng", version: "7.1.0") {
exclude(group: "junit", module: "junit");
exclude(group: "org.beanshell", module: "bsh");