Skip to content

Commit

Permalink
Release 0.0.6 making json an api dependency
Browse files Browse the repository at this point in the history
  • Loading branch information
savvasdalkitsis committed Jan 17, 2022
1 parent d8b9d2d commit 1f2a7de
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -260,7 +260,7 @@ To use it in your project, add the following to your project
- Gradle:

```groovy
compile 'com.savvasdalkitsis:json-merge:0.0.5'
implementation 'com.savvasdalkitsis:json-merge:0.0.6'
```

- Maven:
Expand All @@ -269,7 +269,7 @@ compile 'com.savvasdalkitsis:json-merge:0.0.5'
<dependency>
<groupId>com.savvasdalkitsis</groupId>
<artifactId>json-merge</artifactId>
<version>0.0.5</version>
<version>0.0.6</version>
</dependency>
```

Expand Down
4 changes: 2 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ buildscript {
ext.project_description = 'json-merge is a library for merging json files for the JVM written in Kotlin'
ext.project_group = 'com.savvasdalkitsis'
ext.project_artifact = 'json-merge'
ext.project_version = '0.0.5'
ext.project_version = '0.0.6'
ext.project_license = 'The Apache Software License, Version 2.0'
ext.project_license_tag = 'Apache-2.0'
ext.project_license_url = 'https://www.apache.org/licenses/LICENSE-2.0.txt'
Expand All @@ -34,7 +34,7 @@ repositories {
}

dependencies {
implementation (
api (
"org.json:json:20180130",
)
testImplementation (
Expand Down

0 comments on commit 1f2a7de

Please sign in to comment.