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

Commit e5a1a15

Browse files
authored
Merge pull request #28 from k163377/update_libs
Update libs.
2 parents bea8f42 + 5350bad commit e5a1a15

File tree

2 files changed

+13
-9
lines changed

2 files changed

+13
-9
lines changed

build.gradle.kts

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

1111
group = "com.mapk"
12-
version = "0.18"
12+
version = "0.0.19"
1313

1414
java {
1515
sourceCompatibility = JavaVersion.VERSION_1_8
@@ -33,23 +33,23 @@ repositories {
3333
dependencies {
3434
implementation("org.jetbrains.kotlin:kotlin-stdlib-jdk8")
3535
implementation(kotlin("reflect"))
36-
api("com.github.ProjectMapK:Shared:0.18")
36+
api("com.github.ProjectMapK:Shared:0.19")
3737
// 使うのはRowMapperのみなため他はexclude、またバージョンそのものは使う相手に合わせるためcompileOnly
38-
compileOnly(group = "org.springframework", name = "spring-jdbc", version = "5.2.7.RELEASE") {
38+
compileOnly(group = "org.springframework", name = "spring-jdbc", version = "5.3.2") {
3939
exclude(module = "spring-beans")
4040
exclude(module = "spring-jcl")
4141
exclude(module = "spring-tx")
4242
}
4343

4444
// https://mvnrepository.com/artifact/org.junit.jupiter/junit-jupiter
45-
testImplementation(group = "org.junit.jupiter", name = "junit-jupiter", version = "5.6.2") {
45+
testImplementation(group = "org.junit.jupiter", name = "junit-jupiter", version = "5.7.0") {
4646
exclude(group = "org.junit.vintage", module = "junit-vintage-engine")
4747
}
4848
// https://mvnrepository.com/artifact/io.mockk/mockk
49-
testImplementation("io.mockk:mockk:1.10.0")
49+
testImplementation("io.mockk:mockk:1.10.3-jdk8")
5050

5151
// テスト時には無いと困るため、別口でimplementation
52-
testImplementation(group = "org.springframework", name = "spring-jdbc", version = "5.2.7.RELEASE")
52+
testImplementation(group = "org.springframework", name = "spring-jdbc", version = "5.3.2")
5353
// https://mvnrepository.com/artifact/com.h2database/h2
5454
testImplementation(group = "com.h2database", name = "h2", version = "1.4.200")
5555

src/test/kotlin/com/mapk/krowmapper/UseDBMappingTest.kt

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,11 @@ class UseDBMappingTest {
3535
isBar: String,
3636
description: String?
3737
) = Foo(
38-
fooId, fooName, fooStatus, isBar.toBoolean(), description
38+
fooId,
39+
fooName,
40+
fooStatus,
41+
isBar.toBoolean(),
42+
description
3943
)
4044
}
4145
}

0 commit comments

Comments
 (0)