-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathbuild.gradle
39 lines (33 loc) · 925 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
plugins {
id 'java'
id 'application'
id 'org.openjfx.javafxplugin' version '0.0.13'
}
javafx {
version = "19"
modules = [ 'javafx.controls', 'javafx.fxml' ]
}
run {
jvmArgs = ['--add-exports=javafx.base/com.sun.javafx.event=ALL-UNNAMED']
}
repositories {
mavenCentral()
jcenter()
}
dependencies {
implementation 'junit:junit:4.13.1'
implementation 'org.json:json:20220924'
implementation 'org.controlsfx:controlsfx:11.1.2'
implementation 'com.calendarfx:view:11.12.3'
testImplementation('org.junit.jupiter:junit-jupiter:5.6.0')
implementation 'com.fasterxml.jackson.core:jackson-core:2.14.0'
implementation 'com.fasterxml.jackson.core:jackson-annotations:2.14.0'
implementation 'com.fasterxml.jackson.core:jackson-databind:2.14.0'
}
test {
useJUnitPlatform()
testLogging {
events "passed", "skipped", "failed"
}
}
mainClassName = 'App'