20 lines
560 B
Groovy
20 lines
560 B
Groovy
import java.nio.file.Paths
|
|
|
|
plugins {
|
|
id 'application'
|
|
}
|
|
|
|
application {
|
|
mainClassName = 'simulation.Simulation'
|
|
}
|
|
|
|
installDist.destinationDir = Paths.get(rootProject.rootDir.canonicalPath, 'dist', "drone-simulator-$version").toFile()
|
|
distZip.destinationDir = Paths.get(rootProject.rootDir.canonicalPath, 'dist').toFile()
|
|
distTar.destinationDir = Paths.get(rootProject.rootDir.canonicalPath, 'dist').toFile()
|
|
run.workingDir = rootProject.rootDir
|
|
|
|
dependencies {
|
|
implementation project(':drone-lib')
|
|
implementation 'info.picocli:picocli:4.6.1'
|
|
}
|