Remove references to validateTaskProperties
The task is now called `validatePlugins`.
This commit is contained in:
committed by
Andrey Uskov
parent
200ef832d2
commit
d88ef64288
@@ -41,7 +41,7 @@ open class DexMethodCount : DefaultTask() {
|
|||||||
dependsOn(jar)
|
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
|
lateinit var counts: Counts
|
||||||
|
|
||||||
@get:OutputFile
|
@get:OutputFile
|
||||||
|
|||||||
@@ -156,7 +156,7 @@ tasks.withType<KotlinCompile> {
|
|||||||
tasks.withType<Test> {
|
tasks.withType<Test> {
|
||||||
onlyIf { !project.hasProperty("noTest") }
|
onlyIf { !project.hasProperty("noTest") }
|
||||||
|
|
||||||
dependsOn(":kotlin-gradle-plugin:validateTaskProperties")
|
dependsOn(":kotlin-gradle-plugin:validatePlugins")
|
||||||
dependsOnKotlinGradlePluginInstall()
|
dependsOnKotlinGradlePluginInstall()
|
||||||
|
|
||||||
executable = "${rootProject.extra["JDK_18"]!!}/bin/java"
|
executable = "${rootProject.extra["JDK_18"]!!}/bin/java"
|
||||||
|
|||||||
@@ -152,7 +152,7 @@ tasks {
|
|||||||
}
|
}
|
||||||
|
|
||||||
named("install") {
|
named("install") {
|
||||||
dependsOn(named("validateTaskProperties"))
|
dependsOn(named("validatePlugins"))
|
||||||
}
|
}
|
||||||
|
|
||||||
named<DokkaTask>("dokka") {
|
named<DokkaTask>("dokka") {
|
||||||
@@ -163,7 +163,7 @@ tasks {
|
|||||||
|
|
||||||
projectTest {
|
projectTest {
|
||||||
executable = "${rootProject.extra["JDK_18"]!!}/bin/java"
|
executable = "${rootProject.extra["JDK_18"]!!}/bin/java"
|
||||||
dependsOn(tasks.named("validateTaskProperties"))
|
dependsOn(tasks.named("validatePlugins"))
|
||||||
|
|
||||||
workingDir = rootDir
|
workingDir = rootDir
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user