@@ -30,25 +30,27 @@ repositories {
30
30
dependencies {
31
31
implementation(" org.jetbrains.kotlin:kotlin-stdlib-jdk8" )
32
32
implementation(kotlin(" reflect" ))
33
+ api(" com.github.ProjectMapK:Shared:0.8" )
33
34
// 使うのはRowMapperのみなため他はexclude、またバージョンそのものは使う相手に合わせるためcompileOnly
34
35
compileOnly(group = " org.springframework" , name = " spring-jdbc" , version = " 5.2.4.RELEASE" ) {
35
36
exclude(module = " spring-beans" )
36
37
exclude(module = " spring-jcl" )
37
38
exclude(module = " spring-tx" )
38
39
}
39
- api(" com.github.ProjectMapK:Shared:0.8" )
40
40
41
41
// https://mvnrepository.com/artifact/org.junit.jupiter/junit-jupiter
42
42
testImplementation(group = " org.junit.jupiter" , name = " junit-jupiter" , version = " 5.6.0" ) {
43
43
exclude(group = " org.junit.vintage" , module = " junit-vintage-engine" )
44
44
}
45
45
// https://mvnrepository.com/artifact/io.mockk/mockk
46
46
testImplementation(" io.mockk:mockk:1.9.3" )
47
+
48
+ // テスト時には無いと困るため、別口でimplementation
49
+ testImplementation(group = " org.springframework" , name = " spring-jdbc" , version = " 5.2.4.RELEASE" )
50
+
47
51
// 現状プロパティ名の変換はテストでしか使っていないのでtestImplementation
48
52
// https://mvnrepository.com/artifact/com.google.guava/guava
49
53
testImplementation(group = " com.google.guava" , name = " guava" , version = " 28.2-jre" )
50
- // テスト時には無いと困るため、別口でimplementation
51
- testImplementation(group = " org.springframework" , name = " spring-jdbc" , version = " 5.2.4.RELEASE" )
52
54
}
53
55
54
56
tasks {
0 commit comments