applesingle/tools/asu/build.gradle
dependabot[bot] e56a9d32df
Bump org.springframework.boot from 2.6.1 to 3.2.5
Bumps [org.springframework.boot](https://github.com/spring-projects/spring-boot) from 2.6.1 to 3.2.5.
- [Release notes](https://github.com/spring-projects/spring-boot/releases)
- [Commits](https://github.com/spring-projects/spring-boot/compare/v2.6.1...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 01:35:16 +00:00

31 lines
614 B
Groovy

plugins {
id 'org.springframework.boot' version '3.2.5'
id 'java'
id 'application'
}
sourceCompatibility = '11'
targetCompatibility = '11'
repositories {
mavenCentral()
}
dependencies {
implementation 'info.picocli:picocli:4.7.5'
implementation project(':applesingle-api')
}
application {
mainClass = "io.github.applecommander.applesingle.tools.asu.Main"
}
bootJar {
manifest {
attributes(
'Implementation-Title': 'applesingle',
'Implementation-Version': "${project.version} (${new Date().format('yyyy-MM-dd HH:mm')})"
)
}
}