We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6776cf7 commit 74d09c6Copy full SHA for 74d09c6
build.gradle.kts
@@ -133,7 +133,7 @@ fun Project.configureQuality() {
133
tasks.named("check").configure { dependsOn("checkstyle") }
134
135
tasks.register<Checkstyle>("checkstyle") {
136
- configFile = file("$configDir/checkstyle.xml")
+ configFile = file("${project.configDir}/checkstyle.xml")
137
source("src")
138
include("**/*.java")
139
exclude("**/gen/**")
@@ -327,8 +327,8 @@ fun Project.setupPublishing() {
327
328
tasks.matching {
329
it.name.contains("publish") && it.name.contains("publication", true)
330
- }.forEach {
331
- it.dependsOn("assembleRelease")
+ }.configureEach {
+ dependsOn("assembleRelease")
332
}
333
334
val bintrayUsername = properties["bintrayUser"] as String?
0 commit comments