Skip to content

Commit 549007e

Browse files
committed
equivalence-1.0
1 parent 4575e2b commit 549007e

File tree

2 files changed

+13
-3
lines changed

2 files changed

+13
-3
lines changed

README.md

+11-1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22
[![License ASL 2.0][ASL 2.0 badge]][ASL 2.0]
33
[![Build Status][Travis badge]][Travis]
44
[![Maven Central][Maven Central badge]][Maven]
5+
/
6+
[![Maven Central (equivalence)][Maven Central badge equivalence]][Maven equivalence]
57

68
## Read me first
79

@@ -29,7 +31,7 @@ This package is meant to be used with Jackson 2.2.x. It provides the three follo
2931
## Versions
3032

3133
* `jackson-coreutils` is **2.0**
32-
* `jackson-coreutils-equivalence` is not yet released.
34+
* `jackson-coreutils-equivalence` is **1.0**
3335

3436
Javadoc is [available
3537
online](https://java-json-tools.github.io/jackson-coreutils/index.html).
@@ -43,6 +45,7 @@ With Gradle:
4345
```groovy
4446
dependencies {
4547
compile(group: "com.github.java-json-tools", name: "jackson-coreutils", version: "2.0");
48+
compile(group: "com.github.java-json-tools", name: "jackson-coreutils-equivalence", version: "1.0");
4649
}
4750
```
4851

@@ -54,6 +57,11 @@ With Maven:
5457
<artifactId>jackson-coreutils</artifactId>
5558
<version>2.0</version>
5659
</dependency>
60+
<dependency>
61+
<groupId>com.github.java-json-tools</groupId>
62+
<artifactId>jackson-coreutils-equivalence</artifactId>
63+
<version>1.0</version>
64+
</dependency>
5765
```
5866

5967
## Description
@@ -219,3 +227,5 @@ if (!ptr.path(node).isMissingNode())
219227
[Travis]: https://travis-ci.com/java-json-tools/jackson-coreutils
220228
[Maven Central badge]: https://img.shields.io/maven-central/v/com.github.java-json-tools/jackson-coreutils.svg
221229
[Maven]: https://search.maven.org/artifact/com.github.java-json-tools/jackson-coreutils
230+
[Maven Central badge equivalence]: https://img.shields.io/maven-central/v/com.github.java-json-tools/jackson-coreutils-equivalence.svg
231+
[Maven equivalence]: https://search.maven.org/artifact/com.github.java-json-tools/jackson-coreutils-equivalence

equivalence/project.gradle

+2-2
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
* Project-specific settings. Unfortunately we cannot put the name in there!
2222
*/
2323
group = "com.github.java-json-tools";
24-
version = "1.0-SNAPSHOT";
24+
version = "1.0";
2525
sourceCompatibility = JavaVersion.VERSION_1_7;
2626
targetCompatibility = JavaVersion.VERSION_1_7; // defaults to sourceCompatibility
2727

@@ -31,7 +31,7 @@ targetCompatibility = JavaVersion.VERSION_1_7; // defaults to sourceCompatibilit
3131
dependencies {
3232
implementation(group: "com.fasterxml.jackson.core", name: "jackson-databind", version: "2.11.0");
3333
implementation(group: "com.google.guava", name: "guava", version: "28.2-android");
34-
implementation(group: "com.github.java-json-tools", name: "jackson-coreutils", version: "2.0-SNAPSHOT");
34+
implementation(group: "com.github.java-json-tools", name: "jackson-coreutils", version: "2.0");
3535
testImplementation(group: "org.testng", name: "testng", version: "7.1.0") {
3636
exclude(group: "junit", module: "junit");
3737
exclude(group: "org.beanshell", module: "bsh");

0 commit comments

Comments
 (0)