2021-12-19 21:19:33 -06:00
|
|
|
plugins {
|
2022-01-03 18:24:39 -06:00
|
|
|
id 'org.springframework.boot' version "$springBoot"
|
2021-12-19 21:19:33 -06:00
|
|
|
id 'application'
|
|
|
|
}
|
|
|
|
|
|
|
|
repositories {
|
|
|
|
mavenCentral()
|
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
|
|
|
implementation project(':lib:ac-api')
|
|
|
|
}
|
|
|
|
|
|
|
|
application {
|
|
|
|
mainClass = 'com.webcodepro.applecommander.ui.swing.SwingAppleCommander'
|
|
|
|
}
|
|
|
|
|
|
|
|
bootJar {
|
2021-12-21 19:36:51 -06:00
|
|
|
archiveBaseName = 'AppleCommander'
|
|
|
|
archiveAppendix = 'swing-ui'
|
2021-12-19 21:19:33 -06:00
|
|
|
manifest {
|
2021-12-19 22:27:40 -06:00
|
|
|
attributes 'Implementation-Title': 'AppleCommander (Swing)',
|
2021-12-19 21:19:33 -06:00
|
|
|
'Implementation-Version': archiveVersion
|
|
|
|
}
|
2021-12-19 22:27:40 -06:00
|
|
|
from('../../LICENSE')
|
2021-12-19 21:19:33 -06:00
|
|
|
}
|