Skip to content

Commit 10c813b

Browse files
author
Piotr Bugara
committed
#19 Renamed artifact and group name
1 parent 25a505d commit 10c813b

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ With Gradle:
3838

3939
```groovy
4040
dependencies {
41-
compile(group: "com.gravity9", name: "java-json-tools", version: "yourVersionHere");
41+
compile(group: "com.gravity9", name: "json-patch-path", version: "yourVersionHere");
4242
}
4343
```
4444

@@ -47,7 +47,7 @@ With Maven:
4747
```xml
4848
<dependency>
4949
<groupId>com.gravity9</groupId>
50-
<artifactId>java-json-tools</artifactId>
50+
<artifactId>json-patch-path</artifactId>
5151
<version>yourVersionHere</version>
5252
</dependency>
5353
```

project.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
/*
2121
* Project-specific settings. Unfortunately we cannot put the name in there!
2222
*/
23-
group = "com.gravity9.java-json-tools";
23+
group = "com.gravity9";
2424
sourceCompatibility = JavaVersion.VERSION_11
2525
targetCompatibility = JavaVersion.VERSION_11
2626
project.ext.description = "JSON Patch (RFC 6902) and JSON Merge Patch (RFC 7386) implementation in Java, using extended TMF620 JsonPath syntax";

settings.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,4 +17,4 @@
1717
* - ASL 2.0: http://www.apache.org/licenses/LICENSE-2.0.txt
1818
*/
1919

20-
rootProject.name = "java-json-tools";
20+
rootProject.name = "json-patch-path";

0 commit comments

Comments
 (0)