@@ -2,12 +2,14 @@ plugins {
2
2
id(" maven" )
3
3
id(" java" )
4
4
id(" org.jetbrains.kotlin.jvm" ) version " 1.3.72"
5
+ // その他補助系
5
6
id(" org.jlleitschuh.gradle.ktlint" ) version " 9.2.1"
6
7
id(" jacoco" )
8
+ id(" com.github.ben-manes.versions" ) version " 0.28.0"
7
9
}
8
10
9
11
group = " com.mapk"
10
- version = " 0.14 "
12
+ version = " 0.15 "
11
13
12
14
java {
13
15
sourceCompatibility = JavaVersion .VERSION_1_8
@@ -33,7 +35,7 @@ dependencies {
33
35
implementation(kotlin(" reflect" ))
34
36
api(" com.github.ProjectMapK:Shared:0.16" )
35
37
// 使うのは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" ) {
37
39
exclude(module = " spring-beans" )
38
40
exclude(module = " spring-jcl" )
39
41
exclude(module = " spring-tx" )
@@ -47,13 +49,13 @@ dependencies {
47
49
testImplementation(" io.mockk:mockk:1.10.0" )
48
50
49
51
// テスト時には無いと困るため、別口で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" )
51
53
// https://mvnrepository.com/artifact/com.h2database/h2
52
54
testImplementation(group = " com.h2database" , name = " h2" , version = " 1.4.200" )
53
55
54
56
// 現状プロパティ名の変換はテストでしか使っていないのでtestImplementation
55
57
// 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" )
57
59
}
58
60
59
61
tasks {
0 commit comments