Commit 5982313d authored by Him188's avatar Him188

Exclude .sf files

parent f15967b8
...@@ -66,6 +66,11 @@ subprojects { ...@@ -66,6 +66,11 @@ subprojects {
dependsOn(compilation.compileKotlinTask) dependsOn(compilation.compileKotlinTask)
configurations = mutableListOf(compilation.compileDependencyFiles as Configuration) configurations = mutableListOf(compilation.compileDependencyFiles as Configuration)
this.exclude { file ->
file.name.endsWith(".sf", ignoreCase = true)
.also { if (it) println("excluded ${file.name}") }
}
} }
val githubUpload by tasks.creating { val githubUpload by tasks.creating {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment