forked from Beesechurgers/OffCoder
-
Notifications
You must be signed in to change notification settings - Fork 6
/
build.gradle
51 lines (44 loc) · 1.16 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
plugins {
id 'java'
id 'application'
id 'org.openjfx.javafxplugin' version '0.1.0'
}
group 'com.shank'
version '1.0-SNAPSHOT'
repositories {
mavenCentral()
maven {
url "https://plugins.gradle.org/m2/"
}
}
tasks.withType(JavaCompile) {
options.encoding = 'UTF-8'
}
application {
mainModule = 'com.shank.offcoder'
mainClass = 'com.shank.offcoder.Launcher'
}
javafx {
version = '17'
modules = ['javafx.controls', 'javafx.fxml', 'javafx.web']
}
dependencies {
implementation('org.controlsfx:controlsfx:11.1.2')
implementation('com.dlsc.formsfx:formsfx-core:11.6.0') {
exclude(group: 'org.openjfx')
}
implementation('net.synedra:validatorfx:0.4.2') {
exclude(group: 'org.openjfx')
}
implementation('org.kordamp.ikonli:ikonli-javafx:12.3.1')
implementation('org.kordamp.bootstrapfx:bootstrapfx-core:0.4.0')
implementation('eu.hansolo:tilesfx:17.1.31') {
exclude(group: 'org.openjfx')
}
implementation('org.apache.httpcomponents:httpclient:4.5.13')
implementation('org.json:json:20230227')
implementation 'org.jsoup:jsoup:1.15.3'
}
test {
useJUnitPlatform()
}