AppleCommander/app/ac-swing/build.gradle

25 lines
449 B
Groovy

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 {
manifest {
attributes 'Implementation-Title': 'AppleCommander',
'Implementation-Version': archiveVersion
}
from('LICENSE')
}