mirror of
https://github.com/AppleCommander/AppleCommander.git
synced 2024-12-22 23:29:34 +00:00
29 lines
624 B
Groovy
29 lines
624 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.win32.win32.x86_64:$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')
|
||
|
}
|