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 #49 from k163377/update_kotlin2
Browse files Browse the repository at this point in the history
Update Kotlin.
  • Loading branch information
k163377 committed Apr 11, 2021
2 parents 7f8cf5a + 2182a00 commit 15ccd09
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .idea/KMapper.iml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 5 additions & 5 deletions build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
plugins {
id("maven")
id("java")
kotlin("jvm") version "1.4.21"
kotlin("jvm") version "1.4.32"
// その他補助系
id("org.jlleitschuh.gradle.ktlint") version "9.4.1"
id("org.jlleitschuh.gradle.ktlint") version "10.0.0"
id("jacoco")
id("com.github.ben-manes.versions") version "0.28.0"
}

group = "com.mapk"
version = "0.0.35"
version = "0.36"

java {
sourceCompatibility = JavaVersion.VERSION_1_8
Expand All @@ -22,10 +22,10 @@ repositories {

dependencies {
implementation(kotlin("reflect"))
api("com.github.ProjectMapK:Shared:0.19")
api("com.github.ProjectMapK:Shared:0.20")

// https://mvnrepository.com/artifact/org.junit.jupiter/junit-jupiter
testImplementation(group = "org.junit.jupiter", name = "junit-jupiter", version = "5.7.0") {
testImplementation(group = "org.junit.jupiter", name = "junit-jupiter", version = "5.7.1") {
exclude(group = "org.junit.vintage", module = "junit-vintage-engine")
}
// 現状プロパティ名の変換はテストでしか使っていないのでtestImplementation
Expand Down

0 comments on commit 15ccd09

Please sign in to comment.