11plugins {
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
1111group = " com.mapk"
12- version = " 0.18 "
12+ version = " 0.0.19 "
1313
1414java {
1515 sourceCompatibility = JavaVersion .VERSION_1_8
@@ -33,23 +33,23 @@ repositories {
3333dependencies {
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
0 commit comments