applesingle/tools/asu/build.gradle

31 lines
614 B
Groovy
Raw Normal View History

2018-05-25 03:31:15 +00:00
plugins {
id 'org.springframework.boot' version '3.2.5'
id 'java'
id 'application'
2018-05-25 03:31:15 +00:00
}
2022-06-05 21:46:04 +00:00
sourceCompatibility = '11'
targetCompatibility = '11'
repositories {
mavenCentral()
2018-05-25 03:31:15 +00:00
}
2018-05-24 16:59:29 +00:00
dependencies {
implementation 'info.picocli:picocli:4.7.5'
implementation project(':applesingle-api')
2018-05-24 16:59:29 +00:00
}
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')})"
)
}
}