
gradle userguide suggests to avoid allprojects/subprojects and use conventions instead https://docs.gradle.org/current/userguide/sharing_build_logic_between_subprojects.html#sec:convention_plugins_vs_cross_configuration
8 lines
112 B
Groovy
8 lines
112 B
Groovy
plugins {
|
|
id 'application'
|
|
id 'brouter.java-conventions'
|
|
}
|
|
|
|
application {
|
|
distTar.enabled = false
|
|
}
|