Switched build system to gradle
This commit is contained in:
parent
6962f189b7
commit
72e2e13d07
57 changed files with 685 additions and 591 deletions
20
brouter-server/build.gradle
Normal file
20
brouter-server/build.gradle
Normal file
|
|
@ -0,0 +1,20 @@
|
|||
plugins {
|
||||
id 'application'
|
||||
}
|
||||
|
||||
application {
|
||||
mainClassName = 'btools.server.BRouter'
|
||||
|
||||
jar {
|
||||
manifest {
|
||||
attributes "Main-Class": "$mainClassName"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
dependencies {
|
||||
implementation('junit:junit:4.13')
|
||||
implementation project(':brouter-util')
|
||||
implementation project(':brouter-core')
|
||||
implementation project(':brouter-mapaccess')
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue