Skip to content

Commit

Permalink
2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Capstan committed May 27, 2020
1 parent 5734ef6 commit 4575e2b
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 5 deletions.
14 changes: 10 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,18 +28,21 @@ This package is meant to be used with Jackson 2.2.x. It provides the three follo

## Versions

The current verson is **1.12**. Its Javadoc is [available
* `jackson-coreutils` is **2.0**
* `jackson-coreutils-equivalence` is not yet released.

Javadoc is [available
online](https://java-json-tools.github.io/jackson-coreutils/index.html).

Please see file `RELEASE-NOTES.md` for more information.
File `RELEASE-NOTES.md` has historical information.

## Using in Gradle/Maven

With Gradle:

```groovy
dependencies {
compile(group: "com.github.java-json-tools", name: "jackson-coreutils", version: "1.10");
compile(group: "com.github.java-json-tools", name: "jackson-coreutils", version: "2.0");
}
```

Expand All @@ -49,7 +52,7 @@ With Maven:
<dependency>
<groupId>com.github.java-json-tools</groupId>
<artifactId>jackson-coreutils</artifactId>
<version>1.10</version>
<version>2.0</version>
</dependency>
```

Expand Down Expand Up @@ -102,6 +105,9 @@ will be considered equivalent to:
[ 10e-1, 2.0, 0.3e1 ]
```

As of v2.0, the Guava `Equivalence` is in the `jackson-coreutils-equivalence` subproject so that
`jackson-coreutils` remains Guava-free.

### JSON Pointer

JSON Pointer is an IETF RFC (6901) which allows to unambiguously address any value into a JSON document
Expand Down
2 changes: 1 addition & 1 deletion project.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
* Project-specific settings. Unfortunately we cannot put the name in there!
*/
group = "com.github.java-json-tools";
version = "2.0-SNAPSHOT";
version = "2.0";
sourceCompatibility = JavaVersion.VERSION_1_7;
targetCompatibility = JavaVersion.VERSION_1_7; // defaults to sourceCompatibility

Expand Down

0 comments on commit 4575e2b

Please sign in to comment.