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

Commit

Permalink
Merge pull request #24 from k163377/feature
Browse files Browse the repository at this point in the history
Update libs.
  • Loading branch information
k163377 authored Jun 14, 2020
2 parents 309d216 + 9b55515 commit 6b3a637
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,14 @@ plugins {
id("maven")
id("java")
id("org.jetbrains.kotlin.jvm") version "1.3.72"
// その他補助系
id("org.jlleitschuh.gradle.ktlint") version "9.2.1"
id("jacoco")
id("com.github.ben-manes.versions") version "0.28.0"
}

group = "com.mapk"
version = "0.14"
version = "0.15"

java {
sourceCompatibility = JavaVersion.VERSION_1_8
Expand All @@ -33,7 +35,7 @@ dependencies {
implementation(kotlin("reflect"))
api("com.github.ProjectMapK:Shared:0.16")
// 使うのはRowMapperのみなため他はexclude、またバージョンそのものは使う相手に合わせるためcompileOnly
compileOnly(group = "org.springframework", name = "spring-jdbc", version = "5.2.4.RELEASE") {
compileOnly(group = "org.springframework", name = "spring-jdbc", version = "5.2.7.RELEASE") {
exclude(module = "spring-beans")
exclude(module = "spring-jcl")
exclude(module = "spring-tx")
Expand All @@ -47,13 +49,13 @@ dependencies {
testImplementation("io.mockk:mockk:1.10.0")

// テスト時には無いと困るため、別口でimplementation
testImplementation(group = "org.springframework", name = "spring-jdbc", version = "5.2.4.RELEASE")
testImplementation(group = "org.springframework", name = "spring-jdbc", version = "5.2.7.RELEASE")
// https://mvnrepository.com/artifact/com.h2database/h2
testImplementation(group = "com.h2database", name = "h2", version = "1.4.200")

// 現状プロパティ名の変換はテストでしか使っていないのでtestImplementation
// https://mvnrepository.com/artifact/com.google.guava/guava
testImplementation(group = "com.google.guava", name = "guava", version = "28.2-jre")
testImplementation(group = "com.google.guava", name = "guava", version = "29.0-jre")
}

tasks {
Expand Down

0 comments on commit 6b3a637

Please sign in to comment.