mirror of
https://github.com/AppleCommander/bastools.git
synced 2025-01-04 23:29:24 +00:00
71f28fccc0
reference for later. #21
28 lines
635 B
Groovy
28 lines
635 B
Groovy
plugins {
|
|
id 'org.springframework.boot' version '2.0.2.RELEASE'
|
|
}
|
|
|
|
repositories {
|
|
jcenter()
|
|
}
|
|
|
|
apply plugin: 'application'
|
|
|
|
mainClassName = "io.github.applecommander.bastools.tools.st.Main"
|
|
|
|
bootJar {
|
|
manifest {
|
|
attributes(
|
|
'Implementation-Title': 'Shape Tools CLI',
|
|
'Implementation-Version': "${project.version} (${new Date().format('yyyy-MM-dd HH:mm')})"
|
|
)
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
implementation 'info.picocli:picocli:3.0.2'
|
|
implementation 'net.sf.applecommander:applesingle-api:1.2.1'
|
|
implementation 'net.sf.applecommander:AppleCommander:1.4.0'
|
|
implementation project(':bastools-api')
|
|
}
|