AppleCommander/app/ac-swing/build.gradle

27 lines
535 B
Groovy
Raw Normal View History

plugins {
id 'org.springframework.boot' version '2.6.1'
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 {
2021-12-20 04:27:40 +00:00
attributes 'Implementation-Title': 'AppleCommander (Swing)',
'Implementation-Version': archiveVersion
}
2021-12-20 04:27:40 +00:00
from('../../LICENSE')
}