-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
46 lines (38 loc) · 1.15 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
plugins {
id 'application'
// Die folgenden beiden Plugins werden für die Integration von JavaFX benötigt
id 'org.openjfx.javafxplugin' version '0.0.8'
id 'org.beryx.jlink' version '2.12.0'
id 'idea'
}
mainClassName = '$moduleName/praktikum.aufgabe3.darstellung.Piratensimulation'
repositories {
mavenCentral()
}
// Konfiguration von JavaFX
javafx {
version = "13"
modules = [ 'javafx.controls', 'javafx.fxml' ]
}
// Zum Testen wird die JUnit-Plattform verwendet
test {
useJUnitPlatform()
}
dependencies {
// JUnit
implementation 'org.junit.jupiter:junit-jupiter-api:5.5.2'
implementation 'org.junit.jupiter:junit-jupiter-engine:5.5.2'
implementation 'org.junit.platform:junit-platform-launcher:1.5.1'
// Guava-Framework, wird für Vorbedingungen verwendet
implementation 'com.google.guava:guava:28.2-jre'
// JSON
implementation 'org.json:json:20190722'
compile 'org.jetbrains:annotations:19.0.0'
}
// Wird zum Starten von JavaFX-Anwendungen benötigt
jlink {
options = ['--strip-debug', '--compress', '2', '--no-header-files', '--no-man-pages']
launcher {
name = 'hawhamburg'
}
}