
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
7 lines
348 B
Groovy
7 lines
348 B
Groovy
rootProject.name='brouter'
|
|
if (file('local.properties').exists()) {
|
|
include ':brouter-routing-app'
|
|
} else {
|
|
println "Note: To include Android app add 'local.properties' with 'sdk.dir=...' "
|
|
}
|
|
include ':brouter-mapaccess', ':brouter-core', ':brouter-util', ':brouter-expressions', ':brouter-codec', ':brouter-map-creator', ':brouter-server'
|