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 67758f4 commit 42b9ab8Copy full SHA for 42b9ab8
build.gradle.kts
@@ -24,10 +24,12 @@ plugins {
24
}
25
26
task("clean").dependsOn("module_expose_clean")
27
+// This task is used for delete xx_expose module
28
tasks.register("module_expose_clean"){
29
doLast {
30
println("execute clean expose")
31
subprojects.forEach{ project->
32
+ // Please exclude these project that you don't want to delete
33
if(project.name.endsWith("_expose")){
34
println("ModuleExpose: delete ${project.path}")
35
project.projectDir.deleteRecursively()
settings.gradle.kts
@@ -37,4 +37,4 @@ include(":core:resource")
37
includeWithJavaApi(":core:common")
38
includeWithApi(":feature:settings")
39
includeWithApi(":feature:search")
40
-includeWithApi(":feature:about")
+includeWithApi(":feature:about")
0 commit comments