applesingle/tools/asu/build.gradle

26 lines
487 B
Groovy

plugins {
id 'org.springframework.boot' version '2.0.2.RELEASE'
}
repositories {
jcenter()
}
apply plugin: 'application'
mainClassName = "io.github.applecommander.applesingle.tools.asu.Main"
bootJar {
manifest {
attributes(
'Implementation-Title': 'applesingle',
'Implementation-Version': "${version} (${new Date().format('yyyy-MM-dd HH:mm')})"
)
}
}
dependencies {
compile 'info.picocli:picocli:3.0.2'
compile project(':applesingle-api')
}