Skip to content

Commit 7cba64b

Browse files
committed
Kotlin 1.7.20に対応
1 parent 4b18afe commit 7cba64b

File tree

5 files changed

+15
-8
lines changed

5 files changed

+15
-8
lines changed

.idea/kotlinc.xml

+6
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/misc.xml

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,5 +4,5 @@ TDDBC for Kotlin with JUnit5
44
これは、TDDBCのKotlin向けJUnitプロジェクトです。
55

66
# 動作確認環境
7-
- IntelliJ IDEA 2020.1 for Win Community Edition
8-
- IntelliJ IDEA 2020.1 for Mac Community Edition
7+
- IntelliJ IDEA 2022.2.2 for Mac Ultimate Edition
8+
- IntelliJ IDEA 2022.2.1 for Mac Community Edition

build.gradle

+5-4
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11

22
buildscript {
33
ext {
4-
junit5MinorVersion = '6.2'
4+
junit5MinorVersion = '9.0'
55
}
66
}
77
plugins {
8-
id 'org.jetbrains.kotlin.jvm' version '1.3.72'
8+
id 'org.jetbrains.kotlin.jvm' version '1.7.20'
99
}
1010

1111
group 'tddbc'
@@ -29,8 +29,9 @@ dependencies {
2929
}
3030

3131
compileKotlin {
32-
kotlinOptions.jvmTarget = "1.8"
32+
kotlinOptions.jvmTarget = "11"
3333
}
34+
3435
compileTestKotlin {
35-
kotlinOptions.jvmTarget = "1.8"
36+
kotlinOptions.jvmTarget = "11"
3637
}
+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
distributionBase=GRADLE_USER_HOME
22
distributionPath=wrapper/dists
3-
distributionUrl=https\://services.gradle.org/distributions/gradle-6.1.1-bin.zip
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-7.5.1-bin.zip
44
zipStoreBase=GRADLE_USER_HOME
55
zipStorePath=wrapper/dists

0 commit comments

Comments
 (0)