2018-05-29 03:33:41 +00:00
|
|
|
plugins {
|
|
|
|
id 'org.springframework.boot' version '2.0.2.RELEASE'
|
|
|
|
}
|
|
|
|
|
|
|
|
repositories {
|
|
|
|
jcenter()
|
|
|
|
}
|
|
|
|
|
|
|
|
apply plugin: 'application'
|
|
|
|
|
2018-06-13 00:39:33 +00:00
|
|
|
mainClassName = "io.github.applecommander.bastools.tools.bt.Main"
|
2018-05-29 03:33:41 +00:00
|
|
|
|
|
|
|
bootJar {
|
|
|
|
manifest {
|
|
|
|
attributes(
|
2018-06-13 00:39:33 +00:00
|
|
|
'Implementation-Title': 'BT CLI',
|
2020-11-25 01:36:34 +00:00
|
|
|
'Implementation-Version': "${project.version} (${new Date().format('yyyy-MM-dd HH:mm')})"
|
2018-05-29 03:33:41 +00:00
|
|
|
)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
2020-11-25 01:36:34 +00:00
|
|
|
implementation 'info.picocli:picocli:3.0.2'
|
2023-10-28 17:51:37 +00:00
|
|
|
implementation 'net.sf.applecommander:applesingle-api:1.2.2'
|
2020-11-25 01:36:34 +00:00
|
|
|
implementation project(':bastools-api')
|
2018-05-29 03:33:41 +00:00
|
|
|
}
|