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
28
28
29
29
## Versions
30
30
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
32
35
online] ( https://java-json-tools.github.io/jackson-coreutils/index.html ) .
33
36
34
- Please see file ` RELEASE-NOTES.md ` for more information.
37
+ File ` RELEASE-NOTES.md ` has historical information.
35
38
36
39
## Using in Gradle/Maven
37
40
38
41
With Gradle:
39
42
40
43
``` groovy
41
44
dependencies {
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 ");
43
46
}
44
47
```
45
48
@@ -49,7 +52,7 @@ With Maven:
49
52
<dependency >
50
53
<groupId >com.github.java-json-tools</groupId >
51
54
<artifactId >jackson-coreutils</artifactId >
52
- <version >1.10 </version >
55
+ <version >2.0 </version >
53
56
</dependency >
54
57
```
55
58
@@ -102,6 +105,9 @@ will be considered equivalent to:
102
105
[ 10e-1 , 2.0 , 0.3e1 ]
103
106
```
104
107
108
+ As of v2.0, the Guava ` Equivalence ` is in the ` jackson-coreutils-equivalence ` subproject so that
109
+ ` jackson-coreutils ` remains Guava-free.
110
+
105
111
### JSON Pointer
106
112
107
113
JSON 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 21
21
* Project-specific settings. Unfortunately we cannot put the name in there!
22
22
*/
23
23
group = " com.github.java-json-tools" ;
24
- version = " 2.0-SNAPSHOT " ;
24
+ version = " 2.0" ;
25
25
sourceCompatibility = JavaVersion . VERSION_1_7 ;
26
26
targetCompatibility = JavaVersion . VERSION_1_7 ; // defaults to sourceCompatibility
27
27
You can’t perform that action at this time.
0 commit comments