AppleCommander/app/ac-cli/build.gradle

34 lines
813 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')
implementation "net.sf.applecommander:ShrinkItArchive:$shkVersion"
implementation "net.sf.applecommander:applesingle-api:$asVersion"
implementation "net.sf.applecommander:bastools-api:$btVersion"
compileOnly "org.apache.ant:ant:$antVersion"
testImplementation "junit:junit:$junitVersion"
}
application {
mainClass = 'com.webcodepro.applecommander.ui.ac'
}
bootJar {
archiveBaseName = 'AppleCommander'
archiveAppendix = 'ac'
manifest {
2021-12-20 04:27:40 +00:00
attributes 'Implementation-Title': "AppleCommander 'ac'",
'Implementation-Version': archiveVersion
}
2021-12-20 04:27:40 +00:00
from('../../LICENSE')
}