-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
58 lines (48 loc) · 1.23 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
51
52
53
54
55
56
57
58
plugins {
id 'application'
id 'org.openjfx.javafxplugin' version '0.1.0'
}
repositories {
mavenCentral()
}
dependencies {
// Cross platform support
runtimeOnly "org.openjfx:javafx-graphics:$javafx.version:win"
runtimeOnly "org.openjfx:javafx-graphics:$javafx.version:linux"
runtimeOnly "org.openjfx:javafx-graphics:$javafx.version:mac"
}
sourceSets {
main {
java {
srcDirs = ["src"]
}
resources {
srcDirs = ["resources"]
includes = ["**/*.*"]
}
}
}
String ENABLE_PREVIEW = "--enable-preview"
tasks.withType(JavaCompile).configureEach {
options.compilerArgs += ENABLE_PREVIEW
}
tasks.withType(Test).configureEach {
jvmArgs += ENABLE_PREVIEW
}
tasks.withType(JavaExec).configureEach {
jvmArgs += ENABLE_PREVIEW
}
javafx {
version = "21"
modules = [ 'javafx.controls', 'javafx.graphics', 'javafx.media', 'javafx.swing', 'javafx.base' ]
}
mainClassName = 'ch.epfl.chacun.gui.Main'
jar {
manifest {
attributes 'Main-Class': 'ch.epfl.chacun.gui.Launcher'
}
from {
configurations.runtimeClasspath.collect { it.isDirectory() ? it : zipTree(it) }
}
duplicatesStrategy = DuplicatesStrategy.EXCLUDE
}