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

Commit 6b3a637

Browse files
authored
Merge pull request #24 from k163377/feature
Update libs.
2 parents 309d216 + 9b55515 commit 6b3a637

File tree

1 file changed

+6
-4
lines changed

1 file changed

+6
-4
lines changed

build.gradle.kts

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,14 @@ plugins {
22
id("maven")
33
id("java")
44
id("org.jetbrains.kotlin.jvm") version "1.3.72"
5+
// その他補助系
56
id("org.jlleitschuh.gradle.ktlint") version "9.2.1"
67
id("jacoco")
8+
id("com.github.ben-manes.versions") version "0.28.0"
79
}
810

911
group = "com.mapk"
10-
version = "0.14"
12+
version = "0.15"
1113

1214
java {
1315
sourceCompatibility = JavaVersion.VERSION_1_8
@@ -33,7 +35,7 @@ dependencies {
3335
implementation(kotlin("reflect"))
3436
api("com.github.ProjectMapK:Shared:0.16")
3537
// 使うのはRowMapperのみなため他はexclude、またバージョンそのものは使う相手に合わせるためcompileOnly
36-
compileOnly(group = "org.springframework", name = "spring-jdbc", version = "5.2.4.RELEASE") {
38+
compileOnly(group = "org.springframework", name = "spring-jdbc", version = "5.2.7.RELEASE") {
3739
exclude(module = "spring-beans")
3840
exclude(module = "spring-jcl")
3941
exclude(module = "spring-tx")
@@ -47,13 +49,13 @@ dependencies {
4749
testImplementation("io.mockk:mockk:1.10.0")
4850

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

5456
// 現状プロパティ名の変換はテストでしか使っていないのでtestImplementation
5557
// https://mvnrepository.com/artifact/com.google.guava/guava
56-
testImplementation(group = "com.google.guava", name = "guava", version = "28.2-jre")
58+
testImplementation(group = "com.google.guava", name = "guava", version = "29.0-jre")
5759
}
5860

5961
tasks {

0 commit comments

Comments
 (0)