Skip to content

Commit 1f2a7de

Browse files
Release 0.0.6 making json an api dependency
1 parent d8b9d2d commit 1f2a7de

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -260,7 +260,7 @@ To use it in your project, add the following to your project
260260
- Gradle:
261261

262262
```groovy
263-
compile 'com.savvasdalkitsis:json-merge:0.0.5'
263+
implementation 'com.savvasdalkitsis:json-merge:0.0.6'
264264
```
265265

266266
- Maven:
@@ -269,7 +269,7 @@ compile 'com.savvasdalkitsis:json-merge:0.0.5'
269269
<dependency>
270270
<groupId>com.savvasdalkitsis</groupId>
271271
<artifactId>json-merge</artifactId>
272-
<version>0.0.5</version>
272+
<version>0.0.6</version>
273273
</dependency>
274274
```
275275

build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ buildscript {
99
ext.project_description = 'json-merge is a library for merging json files for the JVM written in Kotlin'
1010
ext.project_group = 'com.savvasdalkitsis'
1111
ext.project_artifact = 'json-merge'
12-
ext.project_version = '0.0.5'
12+
ext.project_version = '0.0.6'
1313
ext.project_license = 'The Apache Software License, Version 2.0'
1414
ext.project_license_tag = 'Apache-2.0'
1515
ext.project_license_url = 'https://www.apache.org/licenses/LICENSE-2.0.txt'
@@ -34,7 +34,7 @@ repositories {
3434
}
3535

3636
dependencies {
37-
implementation (
37+
api (
3838
"org.json:json:20180130",
3939
)
4040
testImplementation (

0 commit comments

Comments
 (0)