mirror of
https://github.com/jlengrand/korge-samples.git
synced 2026-03-10 08:31:18 +00:00
Do not include integrations modules on the root project. Fixes https://github.com/korlibs/korge-samples/issues/40
This commit is contained in:
@@ -21,9 +21,14 @@ fileTree(rootProject.projectDir) {
|
|||||||
include("**"+"/build.gradle.kts")
|
include("**"+"/build.gradle.kts")
|
||||||
include("**"+"/build.gradle")
|
include("**"+"/build.gradle")
|
||||||
exclude("**"+"/build/**")
|
exclude("**"+"/build/**")
|
||||||
|
exclude("**"+"/integrations/**")
|
||||||
|
exclude("**"+"/.idea/**")
|
||||||
|
exclude("**"+"/.gradle/**")
|
||||||
|
exclude("**"+"/.github/**")
|
||||||
}.forEach {
|
}.forEach {
|
||||||
if (it.parentFile != null && !it.path.contains("korge-bundles")) {
|
if (it.parentFile != null && !it.path.contains("korge-bundles")) {
|
||||||
def sample = moduleName(it.parentFile)
|
def sample = moduleName(it.parentFile)
|
||||||
|
//println(sample)
|
||||||
include(":$sample")
|
include(":$sample")
|
||||||
}
|
}
|
||||||
//project(":$sample").projectDir = File(relativePath(it.parent))
|
//project(":$sample").projectDir = File(relativePath(it.parent))
|
||||||
|
|||||||
Reference in New Issue
Block a user