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

29 lines
626 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.aarch64:$swtVersion") {
exclude group: "org.eclipse.platform", module: "org.eclipse.swt"
}
}
application {
mainClass = 'com.webcodepro.applecommander.ui.swt.SwtAppleCommander'
}
bootJar {
manifest {
attributes 'Implementation-Title': 'AppleCommander',
'Implementation-Version': archiveVersion
}
from('LICENSE')
}