bastools/tools/bt/build.gradle
dependabot[bot] 9f657dc531
Bump net.sf.applecommander:applesingle-api from 1.2.1 to 1.2.2
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>
2023-10-28 17:51:37 +00:00

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')
}