applesingle/tools/asu/build.gradle

26 lines
487 B
Groovy
Raw Normal View History

2018-05-25 03:31:15 +00:00
plugins {
id 'org.springframework.boot' version '2.0.2.RELEASE'
}
2018-05-24 16:59:29 +00:00
repositories {
jcenter()
}
apply plugin: 'application'
2018-05-25 03:31:15 +00:00
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')})"
)
}
}
2018-05-24 16:59:29 +00:00
dependencies {
2018-05-25 03:31:15 +00:00
compile 'info.picocli:picocli:3.0.2'
compile project(':applesingle-api')
2018-05-24 16:59:29 +00:00
}