Skip to content
This repository was archived by the owner on Jan 20, 2023. It is now read-only.

Commit d1c5b36

Browse files
authored
Merge pull request #37 from k163377/update_kotlin
Update Kotlin.
2 parents 832d377 + f1a5f98 commit d1c5b36

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

.idea/Shared.iml

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

build.gradle.kts

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
plugins {
22
id("maven")
33
id("java")
4-
kotlin("jvm") version "1.4.21"
5-
id("org.jlleitschuh.gradle.ktlint") version "9.4.1"
4+
kotlin("jvm") version "1.4.32"
5+
id("org.jlleitschuh.gradle.ktlint") version "10.0.0"
66
id("jacoco")
77
}
88

99
group = "com.mapk"
10-
version = "0.19"
10+
version = "0.20"
1111

1212
java {
1313
sourceCompatibility = JavaVersion.VERSION_1_8
@@ -23,11 +23,11 @@ dependencies {
2323
compileOnly(group = "org.jetbrains", name = "annotations", version = "20.1.0")
2424

2525
// https://mvnrepository.com/artifact/org.junit.jupiter/junit-jupiter
26-
testImplementation(group = "org.junit.jupiter", name = "junit-jupiter", version = "5.7.0") {
26+
testImplementation(group = "org.junit.jupiter", name = "junit-jupiter", version = "5.7.1") {
2727
exclude(group = "org.junit.vintage", module = "junit-vintage-engine")
2828
}
2929
// https://mvnrepository.com/artifact/io.mockk/mockk
30-
testImplementation("io.mockk:mockk:1.10.3-jdk8")
30+
testImplementation("io.mockk:mockk:1.11.0")
3131
}
3232

3333
tasks {

0 commit comments

Comments
 (0)