mirror of
https://github.com/Pridecraft-Studios/joy.git
synced 2025-09-08 03:26:11 -04:00
fix: minor packaging errors
This commit is contained in:
parent
fa3bdd93bd
commit
d7bff80e62
@ -112,7 +112,7 @@ allprojects {
|
|||||||
expand(map)
|
expand(map)
|
||||||
}
|
}
|
||||||
|
|
||||||
exclude("*/.editorconfig")
|
exclude("*/.editorconfig", ".cache/")
|
||||||
}
|
}
|
||||||
|
|
||||||
withType<JavaCompile> {
|
withType<JavaCompile> {
|
||||||
@ -124,8 +124,11 @@ allprojects {
|
|||||||
if (project !in excluded) {
|
if (project !in excluded) {
|
||||||
project(":xplat").afterEvaluate { dependsOn(tasks.named("runDatagen")) }
|
project(":xplat").afterEvaluate { dependsOn(tasks.named("runDatagen")) }
|
||||||
}
|
}
|
||||||
from("LICENSE*") {
|
|
||||||
rename { "${project.name}-${it}" }
|
rootDir.listFiles { _, name -> name.startsWith("LICENSE") }?.let {
|
||||||
|
from(it) {
|
||||||
|
rename { file -> "${rootProject.name}-${file}" }
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user