-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
50 lines (42 loc) · 1.22 KB
/
build.gradle
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
plugins {
id 'application'
id 'java'
id 'com.github.johnrengelman.shadow' version '5.1.0'
id 'org.beryx.jlink' version '2.15.1'
}
version '1.4.3'
sourceCompatibility = 1.11
ext.moduleName = 'handinui'
application {
mainClassName = 'handinui.HandinUI'
}
repositories {
mavenCentral()
}
jlink {
options = ['--strip-debug', '--compress', '2', '--no-header-files', '--no-man-pages']
jpackage {
outputDir = 'packaging'
if (org.gradle.internal.os.OperatingSystem.current().isLinux()) {
installerType = 'deb'
} else if (org.gradle.internal.os.OperatingSystem.current().isWindows()) {
installerOptions = ['--app-version', '1.4.3', '--win-menu', '--win-shortcut', '--win-dir-chooser']
} else if (org.gradle.internal.os.OperatingSystem.current().isMacOsX()) {
} else {
}
}
}
dependencies {
implementation 'com.hierynomus:sshj:0.27.0'
implementation 'org.slf4j:slf4j-nop:1.7.21'
implementation 'org.zeroturnaround:zt-zip:1.13'
}
compileJava {
inputs.property("moduleName", moduleName)
doFirst {
options.compilerArgs = [
'--module-path', classpath.asPath,
]
classpath = files()
}
}