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

Commit 15ccd09

Browse files
authored
Merge pull request #49 from k163377/update_kotlin2
Update Kotlin.
2 parents 7f8cf5a + 2182a00 commit 15ccd09

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

.idea/KMapper.iml

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

build.gradle.kts

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
plugins {
22
id("maven")
33
id("java")
4-
kotlin("jvm") version "1.4.21"
4+
kotlin("jvm") version "1.4.32"
55
// その他補助系
6-
id("org.jlleitschuh.gradle.ktlint") version "9.4.1"
6+
id("org.jlleitschuh.gradle.ktlint") version "10.0.0"
77
id("jacoco")
88
id("com.github.ben-manes.versions") version "0.28.0"
99
}
1010

1111
group = "com.mapk"
12-
version = "0.0.35"
12+
version = "0.36"
1313

1414
java {
1515
sourceCompatibility = JavaVersion.VERSION_1_8
@@ -22,10 +22,10 @@ repositories {
2222

2323
dependencies {
2424
implementation(kotlin("reflect"))
25-
api("com.github.ProjectMapK:Shared:0.19")
25+
api("com.github.ProjectMapK:Shared:0.20")
2626

2727
// https://mvnrepository.com/artifact/org.junit.jupiter/junit-jupiter
28-
testImplementation(group = "org.junit.jupiter", name = "junit-jupiter", version = "5.7.0") {
28+
testImplementation(group = "org.junit.jupiter", name = "junit-jupiter", version = "5.7.1") {
2929
exclude(group = "org.junit.vintage", module = "junit-vintage-engine")
3030
}
3131
// 現状プロパティ名の変換はテストでしか使っていないのでtestImplementation

0 commit comments

Comments
 (0)