Skip to content

Update README with correct groupId and artifactId (including historical) #35

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Jun 27, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Update README with correct groupId and artifactId (including historical)
  • Loading branch information
BartekGravity committed Jun 27, 2023
commit 9f9d3e5282d8a84ac34142632ac46968efe40cc7
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ maintain and extend it as the original library is no longer supported.
This is an implementation of [RFC 6902 (JSON Patch)](http://tools.ietf.org/html/rfc6902) and [RFC
7386 (JSON
Merge Patch)](http://tools.ietf.org/html/rfc7386) written in Java,
which uses [Jackson](https://github.com/FasterXML/jackson-databind) (2.2.x) at its core.
which uses [Jackson](https://github.com/FasterXML/jackson-databind) (2.x) at its core.

Its features are:

Expand All @@ -45,15 +45,15 @@ dependencies {
With Maven:

```xml

<dependency>
<groupId>com.gravity9</groupId>
<artifactId>java-json-tools</artifactId>
<version>yourVersionHere</version>
</dependency>
```

Versions before 1.10 are available at `groupId` `com.github.fge`.
Versions before 1.10 are available at `groupId` `com.github.fge` and `artifactId` `json-patch`.
Versions 1.10 to 1.13 are available at `groupId` `com.github.java-json-tools` and `artifactId` `json-patch`.

## JSON "diff" factorization

Expand Down