13 lines
340 B
Groovy
13 lines
340 B
Groovy
plugins {
|
|
id 'java-library'
|
|
}
|
|
|
|
dependencies {
|
|
implementation project(':brouter-codec')
|
|
implementation project(':brouter-util')
|
|
implementation project(':brouter-expressions')
|
|
|
|
implementation group: 'org.openstreetmap.osmosis', name: 'osmosis-osm-binary', version: '0.48.3'
|
|
|
|
testImplementation('junit:junit:4.13.1')
|
|
}
|