mirror of
https://github.com/AppleCommander/AppleCommander.git
synced 2024-12-22 08:30:35 +00:00
27 lines
541 B
Groovy
27 lines
541 B
Groovy
plugins {
|
|
id 'org.springframework.boot' version "$springBoot"
|
|
id 'application'
|
|
}
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
}
|
|
|
|
dependencies {
|
|
implementation project(':lib:ac-api')
|
|
}
|
|
|
|
application {
|
|
mainClass = 'com.webcodepro.applecommander.ui.swing.SwingAppleCommander'
|
|
}
|
|
|
|
bootJar {
|
|
archiveBaseName = 'AppleCommander'
|
|
archiveAppendix = 'swing-ui'
|
|
manifest {
|
|
attributes 'Implementation-Title': 'AppleCommander (Swing)',
|
|
'Implementation-Version': archiveVersion
|
|
}
|
|
from('../../LICENSE')
|
|
}
|