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