bastools/tools/st/build.gradle
dependabot[bot] 8e8bf72618
Bump net.sf.applecommander:AppleCommander from 1.4.0 to 1.8.0
Bumps [net.sf.applecommander:AppleCommander](https://github.com/AppleCommander/AppleCommander) from 1.4.0 to 1.8.0.
- [Release notes](https://github.com/AppleCommander/AppleCommander/releases)
- [Commits](https://github.com/AppleCommander/AppleCommander/commits/1.8.0)

---
updated-dependencies:
- dependency-name: net.sf.applecommander:AppleCommander
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
2023-10-28 17:54:35 +00:00

28 lines
635 B
Groovy

plugins {
id 'org.springframework.boot' version '2.0.2.RELEASE'
}
repositories {
jcenter()
}
apply plugin: 'application'
mainClassName = "io.github.applecommander.bastools.tools.st.Main"
bootJar {
manifest {
attributes(
'Implementation-Title': 'Shape Tools 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 'net.sf.applecommander:AppleCommander:1.8.0'
implementation project(':bastools-api')
}