24 lines
414 B
Groovy
24 lines
414 B
Groovy
plugins {
|
|
id 'application'
|
|
}
|
|
|
|
version = '1.6.1'
|
|
|
|
application {
|
|
mainClass.set('btools.server.BRouter')
|
|
|
|
jar {
|
|
manifest {
|
|
attributes "Main-Class": getMainClass()
|
|
}
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
testImplementation 'junit:junit:4.13.1'
|
|
|
|
implementation project(':brouter-util')
|
|
implementation project(':brouter-core')
|
|
implementation project(':brouter-mapaccess')
|
|
|
|
}
|