Rename plugin directory to unmeta

Signed-off-by: You Qi <youqi@axzae.com>
This commit is contained in:
You Qi
2023-04-29 16:03:40 +08:00
parent 08fbd3c027
commit e7c643784c
8 changed files with 4 additions and 4 deletions

View File

@@ -55,15 +55,15 @@ tasks.register("reformatAll") {
description = "Reformat all the Kotlin Code"
dependsOn("ktlintFormat")
dependsOn(gradle.includedBuild("plugin-build").task(":plugin:ktlintFormat"))
dependsOn(gradle.includedBuild("plugin-build").task(":unmeta:ktlintFormat"))
}
tasks.register("preMerge") {
description = "Runs all the tests/verification tasks on both top level and included build."
dependsOn(":example:check")
dependsOn(gradle.includedBuild("plugin-build").task(":plugin:check"))
dependsOn(gradle.includedBuild("plugin-build").task(":plugin:validatePlugins"))
dependsOn(gradle.includedBuild("plugin-build").task(":unmeta:check"))
dependsOn(gradle.includedBuild("plugin-build").task(":unmeta:validatePlugins"))
}
tasks.wrapper {

View File

@@ -31,4 +31,4 @@ gradleEnterprise {
}
}
include(":plugin")
include(":unmeta")