-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathbuild.gradle
More file actions
48 lines (40 loc) · 1.4 KB
/
Copy pathbuild.gradle
File metadata and controls
48 lines (40 loc) · 1.4 KB
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
plugins {
id 'java'
id 'application'
id 'org.javamodularity.moduleplugin' version '1.8.12'
id 'org.openjfx.javafxplugin' version '0.0.13'
id 'org.beryx.jlink' version '2.25.0'
}
repositories {
mavenCentral()
}
tasks.compileJava {
options.release.set(21)
}
javafx {
version = '21'
modules = ['javafx.controls', 'javafx.fxml', 'javafx.web', 'javafx.swing' ]
}
dependencies {
implementation('org.controlsfx:controlsfx:11.1.2')
implementation('net.synedra:validatorfx:0.4.0') { exclude(group: 'org.openjfx') }
implementation('org.kordamp.ikonli:ikonli-javafx:12.3.1')
implementation('eu.hansolo:tilesfx:11.48') { exclude(group: 'org.openjfx') }
implementation 'org.jetbrains:annotations:16.0.2'
implementation group: 'com.fasterxml.jackson.core', name: 'jackson-core', version: '2.16.1'
implementation group: 'com.fasterxml.jackson.core', name: 'jackson-annotations', version: '2.16.1'
implementation group: 'com.fasterxml.jackson.core', name: 'jackson-databind', version: '2.16.1'
implementation group: 'com.google.code.gson', name: 'gson', version: '2.10.1'
testImplementation("org.junit.jupiter:junit-jupiter")
testImplementation("org.junit.jupiter:junit-jupiter:5.8.1")
}
application {
mainModule = 'frameforge'
mainClass = 'frameforge.FrameForgeApplication'
}
task rerun() {
finalizedBy run
}
tasks.test {
useJUnitPlatform()
}