Skip to content

Commit

Permalink
made jackson a required depencie
Browse files Browse the repository at this point in the history
  • Loading branch information
RealYusufIsmail committed Oct 31, 2023
1 parent c9ac1b6 commit 79a1397
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 9 deletions.
6 changes: 3 additions & 3 deletions Package.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ And thats it for getting the token.
<dependency>
<groupId>io.github.realyusufismail</groupId>
<artifactId>jconfig</artifactId>
<version>1.1.0</version>
<version>1.1.1</version>
</dependency>
```

Expand All @@ -45,11 +45,11 @@ And thats it for getting the token.
```groovy
//kotlin
dependencies {
implementation("io.github.realyusufismail:jconfig:1.1.0")
implementation("io.github.realyusufismail:jconfig:1.1.1")
}
//groovy
dependencies {
implementation "io.github.realyusufismail:jconfig:1.1.0"
implementation "io.github.realyusufismail:jconfig:1.1.1"
}
```
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ And thats it for getting the token.
<dependency>
<groupId>io.github.realyusufismail</groupId>
<artifactId>jconfig</artifactId>
<version>1.1.0</version>
<version>1.1.1</version>
</dependency>
```

Expand All @@ -48,12 +48,12 @@ And thats it for getting the token.
```groovy
//kotlin
dependencies {
implementation("io.github.realyusufismail:jconfig:1.1.0")
implementation("io.github.realyusufismail:jconfig:1.1.1")
}
//groovy
dependencies {
implementation "io.github.realyusufismail:jconfig:1.1.0"
implementation "io.github.realyusufismail:jconfig:1.1.1"
}
```

Expand Down
4 changes: 2 additions & 2 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ extra.apply {
set("name", "JConfig")
set("description", "Json Configurations used to store tokens and other sensitive data")
set("group", "io.github.realyusufismail")
set("version", "1.1.0")
set("version", "1.1.1")
set("dev_id", "yusuf")
set("dev_name", "Yusuf Ismail")
set("dev_email", "yusufgamer222@gmail.com")
Expand All @@ -42,7 +42,7 @@ repositories { mavenCentral() }

dependencies {
// json
implementation("com.fasterxml.jackson.module:jackson-module-kotlin:2.15.1")
api("com.fasterxml.jackson.module:jackson-module-kotlin:2.15.1")
testImplementation(kotlin("test"))
}

Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
kotlin.code.style=official
version = 1.1.0
version = 1.1.1

0 comments on commit 79a1397

Please sign in to comment.