Skip to content
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

Update kotlin to latest version #19

Merged
merged 1 commit into from
Jul 4, 2022
Merged
Show file tree
Hide file tree
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
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,13 +13,13 @@ Collection of Kotlin extension functions and utilities. This library does not ha
Katlib is available on the Maven Central. Then to import Katlib to Gradle project use:

```Kotlin
implementation("dev.forst", "katlib", "2.2.0")
implementation("dev.forst", "katlib", "2.2.1")
```

Or with Groovy DSL

```groovy
implementation 'dev.forst:katlib:2.2.0'
implementation 'dev.forst:katlib:2.2.1'
```

To import Katlib to Maven project use:
Expand All @@ -29,7 +29,7 @@ To import Katlib to Maven project use:
<dependency>
<groupId>dev.forst</groupId>
<artifactId>katlib</artifactId>
<version>2.2.0</version>
<version>2.2.1</version>
</dependency>
```

Expand Down
6 changes: 3 additions & 3 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -3,14 +3,14 @@ import java.net.URL


plugins {
kotlin("jvm") version "1.6.20"
kotlin("jvm") version "1.7.0"

`maven-publish`
signing
id("io.github.gradle-nexus.publish-plugin") version "1.1.0"

id("net.nemerosa.versioning") version "2.15.1"
id("org.jetbrains.dokka") version "1.6.10"
id("org.jetbrains.dokka") version "1.7.0"
id("io.gitlab.arturbosch.detekt") version "1.19.0"
}

Expand All @@ -23,7 +23,7 @@ repositories {
}

dependencies {
val jacksonVersion = "2.13.2"
val jacksonVersion = "2.13.3"
compileOnly("com.fasterxml.jackson.core", "jackson-databind", jacksonVersion)
compileOnly("com.fasterxml.jackson.module", "jackson-module-kotlin", jacksonVersion)
compileOnly(kotlin("reflect"))
Expand Down