-
Notifications
You must be signed in to change notification settings - Fork 3
/
build.gradle
50 lines (41 loc) · 996 Bytes
/
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 'org.openjfx.javafxplugin' version '0.0.13'
id 'org.beryx.jlink' version '2.25.0'
id 'java'
id "com.github.johnrengelman.shadow" version "7.1.2"
id("maven-publish")
}
group 'ca.sashaphoto'
version '1.4'
repositories {
mavenCentral()
}
javafx {
version = "17"
modules = [ 'javafx.controls', 'javafx.fxml' ]
}
dependencies {
implementation group: 'org.reflections', name: 'reflections', version: '0.10.2'
}
sourceSets {
main {
resources {
srcDirs = ["src/main/resources","src/main/java","src/main/"]
includes = ["**/*.css"]
includes = ["**/*.fxml"]
}
}
}
mainClassName = "RuntimeTester.Visualizer"
jlink {
options = ['--strip-debug', '--compress', '2', '--no-header-files', '--no-man-pages']
launcher {
name = 'Visualizer'
}
}
shadowJar {
archiveBaseName.set('RuntimeTester')
archiveClassifier.set('')
archiveVersion.set('')
}