1
1
plugins {
2
2
id(" maven" )
3
3
id(" java" )
4
- id(" org.jetbrains.kotlin.jvm" ) version " 1.4.10 "
4
+ id(" org.jetbrains.kotlin.jvm" ) version " 1.4.21 "
5
5
// その他補助系
6
- id(" org.jlleitschuh.gradle.ktlint" ) version " 9.3.0 "
6
+ id(" org.jlleitschuh.gradle.ktlint" ) version " 9.4.1 "
7
7
id(" jacoco" )
8
8
id(" com.github.ben-manes.versions" ) version " 0.28.0"
9
9
}
10
10
11
11
group = " com.mapk"
12
- version = " 0.18 "
12
+ version = " 0.0.19 "
13
13
14
14
java {
15
15
sourceCompatibility = JavaVersion .VERSION_1_8
@@ -33,23 +33,23 @@ repositories {
33
33
dependencies {
34
34
implementation(" org.jetbrains.kotlin:kotlin-stdlib-jdk8" )
35
35
implementation(kotlin(" reflect" ))
36
- api(" com.github.ProjectMapK:Shared:0.18 " )
36
+ api(" com.github.ProjectMapK:Shared:0.19 " )
37
37
// 使うのは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 " ) {
39
39
exclude(module = " spring-beans" )
40
40
exclude(module = " spring-jcl" )
41
41
exclude(module = " spring-tx" )
42
42
}
43
43
44
44
// 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 " ) {
46
46
exclude(group = " org.junit.vintage" , module = " junit-vintage-engine" )
47
47
}
48
48
// https://mvnrepository.com/artifact/io.mockk/mockk
49
- testImplementation(" io.mockk:mockk:1.10.0 " )
49
+ testImplementation(" io.mockk:mockk:1.10.3-jdk8 " )
50
50
51
51
// テスト時には無いと困るため、別口で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 " )
53
53
// https://mvnrepository.com/artifact/com.h2database/h2
54
54
testImplementation(group = " com.h2database" , name = " h2" , version = " 1.4.200" )
55
55
0 commit comments