Skip to content

Commit

Permalink
build: upgrade to Kotlin 1.6.21 and Gradle 7.1
Browse files Browse the repository at this point in the history
  • Loading branch information
wotjd243 committed May 16, 2022
1 parent d1c0934 commit 8c500b8
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 11 deletions.
14 changes: 5 additions & 9 deletions build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
plugins {
java
kotlin("jvm") version "1.5.31"
id("org.jlleitschuh.gradle.ktlint") version "10.2.0"
kotlin("jvm") version "1.6.21"
id("org.jlleitschuh.gradle.ktlint") version "10.3.0"
}

group = "camp.nextstep.edu"
Expand All @@ -12,13 +11,11 @@ repositories {
}

dependencies {
testImplementation("org.junit.jupiter", "junit-jupiter", "5.8.1")
testImplementation("org.assertj", "assertj-core", "3.21.0")
testImplementation("org.junit.jupiter", "junit-jupiter", "5.8.2")
testImplementation("org.assertj", "assertj-core", "3.22.0")
testImplementation("io.kotest", "kotest-runner-junit5", "5.2.3")
}

configure<JavaPluginConvention> {
sourceCompatibility = JavaVersion.VERSION_1_8
}
tasks {
compileKotlin {
kotlinOptions.jvmTarget = "1.8"
Expand All @@ -31,6 +28,5 @@ tasks {
}
ktlint {
verbose.set(true)
disabledRules.addAll("import-ordering")
}
}
Binary file modified gradle/wrapper/gradle-wrapper.jar
Binary file not shown.
2 changes: 1 addition & 1 deletion gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-6.8.1-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-7.1-bin.zip
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
2 changes: 1 addition & 1 deletion gradlew
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ case "`uname`" in
Darwin* )
darwin=true
;;
MINGW* )
MSYS* | MINGW* )
msys=true
;;
NONSTOP* )
Expand Down
File renamed without changes.
File renamed without changes.

0 comments on commit 8c500b8

Please sign in to comment.