mirror of
https://github.com/AppleCommander/bastools.git
synced 2024-11-15 15:07:26 +00:00
9f657dc531
Bumps [net.sf.applecommander:applesingle-api](https://github.com/AppleCommander/applesingle) from 1.2.1 to 1.2.2. - [Release notes](https://github.com/AppleCommander/applesingle/releases) - [Commits](https://github.com/AppleCommander/applesingle/compare/v1.2.1...v1.2.2) --- updated-dependencies: - dependency-name: net.sf.applecommander:applesingle-api dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com>
27 lines
562 B
Groovy
27 lines
562 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': "${project.version} (${new Date().format('yyyy-MM-dd HH:mm')})"
|
|
)
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
implementation 'info.picocli:picocli:3.0.2'
|
|
implementation 'net.sf.applecommander:applesingle-api:1.2.2'
|
|
implementation project(':bastools-api')
|
|
}
|