Switched build system to gradle
This commit is contained in:
parent
6962f189b7
commit
72e2e13d07
57 changed files with 685 additions and 591 deletions
16
brouter-map-creator/build.gradle
Normal file
16
brouter-map-creator/build.gradle
Normal file
|
|
@ -0,0 +1,16 @@
|
|||
plugins {
|
||||
id 'application'
|
||||
}
|
||||
|
||||
application {
|
||||
// Gradles 'application' plugin requires one main class; since we have multiple ones, just specify
|
||||
// one of them, since the applications won't be run from gradle anyways.
|
||||
mainClassName = 'btools.mapcreator.PosUnifier'
|
||||
}
|
||||
|
||||
dependencies {
|
||||
implementation project(':brouter-util')
|
||||
implementation project(':brouter-codec')
|
||||
implementation project(':brouter-expressions')
|
||||
implementation('junit:junit:4.13')
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue