AppleCommander/app/ac-swt-macosx-x86_64/build.gradle

31 lines
714 B
Groovy

plugins {
id 'org.springframework.boot' version '2.6.1'
id 'application'
}
repositories {
mavenCentral()
}
dependencies {
implementation project(':lib:ac-swt-common')
implementation("org.eclipse.platform:org.eclipse.swt.cocoa.macosx.x86_64:$swtVersion") {
exclude group: "org.eclipse.platform", module: "org.eclipse.swt"
}
}
application {
mainClass = 'com.webcodepro.applecommander.ui.swt.SwtAppleCommander'
}
bootJar {
archiveBaseName = 'AppleCommander'
archiveAppendix = 'macosx-x86_64'
manifest {
attributes 'Implementation-Title': 'AppleCommander (Mac)',
'Implementation-Version': archiveVersion
}
from('../../LICENSE')
}