Remove references to validateTaskProperties

The task is now called `validatePlugins`.
This commit is contained in:
Stefan Wolf
2021-01-29 19:56:24 +03:00
committed by Andrey Uskov
parent 200ef832d2
commit d88ef64288
3 changed files with 4 additions and 4 deletions
@@ -41,7 +41,7 @@ open class DexMethodCount : DefaultTask() {
dependsOn(jar)
}
@Internal // plain output properties are not supported, mark as internal to suppress warning from validateTaskProperties
@Internal // plain output properties are not supported, mark as internal to suppress warning from validatePlugins
lateinit var counts: Counts
@get:OutputFile
@@ -156,7 +156,7 @@ tasks.withType<KotlinCompile> {
tasks.withType<Test> {
onlyIf { !project.hasProperty("noTest") }
dependsOn(":kotlin-gradle-plugin:validateTaskProperties")
dependsOn(":kotlin-gradle-plugin:validatePlugins")
dependsOnKotlinGradlePluginInstall()
executable = "${rootProject.extra["JDK_18"]!!}/bin/java"
@@ -152,7 +152,7 @@ tasks {
}
named("install") {
dependsOn(named("validateTaskProperties"))
dependsOn(named("validatePlugins"))
}
named<DokkaTask>("dokka") {
@@ -163,7 +163,7 @@ tasks {
projectTest {
executable = "${rootProject.extra["JDK_18"]!!}/bin/java"
dependsOn(tasks.named("validateTaskProperties"))
dependsOn(tasks.named("validatePlugins"))
workingDir = rootDir
}