12 lines
240 B
Groovy
12 lines
240 B
Groovy
plugins {
|
|
id 'java-library'
|
|
}
|
|
|
|
|
|
dependencies {
|
|
implementation project(':brouter-codec')
|
|
implementation project(':brouter-util')
|
|
implementation project(':brouter-expressions')
|
|
|
|
testImplementation('junit:junit:4.13.1')
|
|
}
|