Skip to content

Commit

Permalink
equivalence-1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Capstan committed May 27, 2020
1 parent 4575e2b commit 549007e
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 3 deletions.
12 changes: 11 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down Expand Up @@ -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).
Expand All @@ -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");
}
```

Expand All @@ -54,6 +57,11 @@ With Maven:
<artifactId>jackson-coreutils</artifactId>
<version>2.0</version>
</dependency>
<dependency>
<groupId>com.github.java-json-tools</groupId>
<artifactId>jackson-coreutils-equivalence</artifactId>
<version>1.0</version>
</dependency>
```

## Description
Expand Down Expand Up @@ -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
4 changes: 2 additions & 2 deletions equivalence/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 = "1.0-SNAPSHOT";
version = "1.0";
sourceCompatibility = JavaVersion.VERSION_1_7;
targetCompatibility = JavaVersion.VERSION_1_7; // defaults to sourceCompatibility

Expand All @@ -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");
Expand Down

0 comments on commit 549007e

Please sign in to comment.