mirror of
https://github.com/AppleCommander/bastools.git
synced 2024-11-15 15:07:26 +00:00
27 lines
533 B
Groovy
27 lines
533 B
Groovy
plugins {
|
|
id 'org.springframework.boot' version '2.0.2.RELEASE'
|
|
}
|
|
|
|
repositories {
|
|
jcenter()
|
|
}
|
|
|
|
apply plugin: 'application'
|
|
|
|
mainClassName = "io.github.applecommander.bastools.tools.bt.Main"
|
|
|
|
bootJar {
|
|
manifest {
|
|
attributes(
|
|
'Implementation-Title': 'BT CLI',
|
|
'Implementation-Version': "${version} (${new Date().format('yyyy-MM-dd HH:mm')})"
|
|
)
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
compile 'info.picocli:picocli:3.0.2'
|
|
compile 'net.sf.applecommander:applesingle-api:1.2.1'
|
|
compile project(':bastools-api')
|
|
}
|