bastools/tools/bt/build.gradle
dependabot[bot] 0507c2b24a
Bump org.springframework.boot from 2.7.17 to 3.2.5
Bumps [org.springframework.boot](https://github.com/spring-projects/spring-boot) from 2.7.17 to 3.2.5.
- [Release notes](https://github.com/spring-projects/spring-boot/releases)
- [Commits](https://github.com/spring-projects/spring-boot/compare/v2.7.17...v3.2.5)

---
updated-dependencies:
- dependency-name: org.springframework.boot
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>
2024-04-22 00:54:05 +00:00

30 lines
616 B
Groovy

plugins {
id 'org.springframework.boot' version "3.2.5"
id 'java'
id 'application'
}
sourceCompatibility = 11
targetCompatibility = 11
repositories {
mavenCentral()
}
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:4.7.5'
implementation 'net.sf.applecommander:applesingle-api:1.2.2'
implementation project(':bastools-api')
}