File tree Expand file tree Collapse file tree 2 files changed +11
-5
lines changed Expand file tree Collapse file tree 2 files changed +11
-5
lines changed Original file line number Diff line number Diff line change @@ -28,18 +28,21 @@ This package is meant to be used with Jackson 2.2.x. It provides the three follo
2828
2929## Versions
3030
31- The current verson is ** 1.12** . Its Javadoc is [ available
31+ * ` jackson-coreutils ` is ** 2.0**
32+ * ` jackson-coreutils-equivalence ` is not yet released.
33+
34+ Javadoc is [ available
3235online] ( https://java-json-tools.github.io/jackson-coreutils/index.html ) .
3336
34- Please see file ` RELEASE-NOTES.md ` for more information.
37+ File ` RELEASE-NOTES.md ` has historical information.
3538
3639## Using in Gradle/Maven
3740
3841With Gradle:
3942
4043``` groovy
4144dependencies {
42- compile(group: "com.github.java-json-tools", name: "jackson-coreutils", version: "1.10 ");
45+ compile(group: "com.github.java-json-tools", name: "jackson-coreutils", version: "2.0 ");
4346}
4447```
4548
@@ -49,7 +52,7 @@ With Maven:
4952<dependency >
5053 <groupId >com.github.java-json-tools</groupId >
5154 <artifactId >jackson-coreutils</artifactId >
52- <version >1.10 </version >
55+ <version >2.0 </version >
5356</dependency >
5457```
5558
@@ -102,6 +105,9 @@ will be considered equivalent to:
102105[ 10e-1 , 2.0 , 0.3e1 ]
103106```
104107
108+ As of v2.0, the Guava ` Equivalence ` is in the ` jackson-coreutils-equivalence ` subproject so that
109+ ` jackson-coreutils ` remains Guava-free.
110+
105111### JSON Pointer
106112
107113JSON Pointer is an IETF RFC (6901) which allows to unambiguously address any value into a JSON document
Original file line number Diff line number Diff line change 2121 * Project-specific settings. Unfortunately we cannot put the name in there!
2222 */
2323group = " com.github.java-json-tools" ;
24- version = " 2.0-SNAPSHOT " ;
24+ version = " 2.0" ;
2525sourceCompatibility = JavaVersion . VERSION_1_7 ;
2626targetCompatibility = JavaVersion . VERSION_1_7 ; // defaults to sourceCompatibility
2727
You can’t perform that action at this time.
0 commit comments