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

Commit cbc89f4

Browse files
committed
重要度順に並べなおし
1 parent f2eaf7c commit cbc89f4

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

build.gradle.kts

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,25 +30,27 @@ repositories {
3030
dependencies {
3131
implementation("org.jetbrains.kotlin:kotlin-stdlib-jdk8")
3232
implementation(kotlin("reflect"))
33+
api("com.github.ProjectMapK:Shared:0.8")
3334
// 使うのはRowMapperのみなため他はexclude、またバージョンそのものは使う相手に合わせるためcompileOnly
3435
compileOnly(group = "org.springframework", name = "spring-jdbc", version = "5.2.4.RELEASE") {
3536
exclude(module = "spring-beans")
3637
exclude(module = "spring-jcl")
3738
exclude(module = "spring-tx")
3839
}
39-
api("com.github.ProjectMapK:Shared:0.8")
4040

4141
// https://mvnrepository.com/artifact/org.junit.jupiter/junit-jupiter
4242
testImplementation(group = "org.junit.jupiter", name = "junit-jupiter", version = "5.6.0") {
4343
exclude(group = "org.junit.vintage", module = "junit-vintage-engine")
4444
}
4545
// https://mvnrepository.com/artifact/io.mockk/mockk
4646
testImplementation("io.mockk:mockk:1.9.3")
47+
48+
// テスト時には無いと困るため、別口でimplementation
49+
testImplementation(group = "org.springframework", name = "spring-jdbc", version = "5.2.4.RELEASE")
50+
4751
// 現状プロパティ名の変換はテストでしか使っていないのでtestImplementation
4852
// https://mvnrepository.com/artifact/com.google.guava/guava
4953
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")
5254
}
5355

5456
tasks {

0 commit comments

Comments
 (0)