
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
12 lines
312 B
Groovy
12 lines
312 B
Groovy
plugins {
|
|
id 'brouter.library-conventions'
|
|
}
|
|
|
|
dependencies {
|
|
implementation project(':brouter-util')
|
|
implementation project(':brouter-codec')
|
|
implementation project(':brouter-expressions')
|
|
}
|
|
|
|
// MapcreatorTest generates segments which are used in tests
|
|
test.dependsOn ':brouter-map-creator:test'
|