14 lines
390 B
Groovy
14 lines
390 B
Groovy
plugins {
|
|
id 'java-library'
|
|
}
|
|
|
|
dependencies {
|
|
implementation project(':brouter-mapaccess')
|
|
implementation project(':brouter-util')
|
|
implementation project(':brouter-expressions')
|
|
implementation project(':brouter-codec')
|
|
testImplementation 'junit:junit:4.13.2'
|
|
}
|
|
|
|
// MapcreatorTest generates segments which are used in tests
|
|
test.dependsOn ':brouter-map-creator:test'
|