Skip to content

Commit

Permalink
Reorder build.gradle.kts
Browse files Browse the repository at this point in the history
  • Loading branch information
pgreze committed Jun 27, 2024
1 parent 4437891 commit 0af0134
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import de.fayard.refreshVersions.core.versionFor
import org.jetbrains.kotlin.gradle.dsl.JvmTarget

plugins {
kotlin("jvm")
Expand Down Expand Up @@ -35,10 +36,6 @@ tasks.test {
finalizedBy(tasks.jacocoTestReport)
}

configure<org.jlleitschuh.gradle.ktlint.KtlintExtension> {
version.set(versionFor("version.com.pinterest.ktlint..ktlint-cli"))
}

jacoco {
toolVersion = "0.8.7"
}
Expand All @@ -49,6 +46,10 @@ tasks.jacocoTestReport {
}
}

configure<org.jlleitschuh.gradle.ktlint.KtlintExtension> {
version.set(versionFor("version.com.pinterest.ktlint..ktlint-cli"))
}

dependencies {
setOf(
kotlin("stdlib-jdk8"),
Expand Down

0 comments on commit 0af0134

Please sign in to comment.