mirror of
https://github.com/AppleCommander/AppleCommander.git
synced 2025-01-10 11:29:20 +00:00
32 lines
744 B
Groovy
32 lines
744 B
Groovy
|
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 {
|
||
|
manifest {
|
||
|
attributes 'Implementation-Title': 'AppleCommander (Swing)',
|
||
|
'Implementation-Version': archiveVersion
|
||
|
}
|
||
|
from('LICENSE')
|
||
|
}
|