-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
39 lines (28 loc) · 909 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.9'
}
group 'org.example'
version '1.0-SNAPSHOT'
sourceSets.main.resources.srcDirs("src/main/java").includes.addAll(["**/*.fxml", "**/*.css"])
sourceSets.main.resources.srcDirs("src/main/resources").includes.addAll(["**/*.*"])
repositories {
mavenCentral()
}
dependencies {
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.6.0'
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine'
compile 'com.squareup.retrofit2:retrofit:2.8.1'
compile 'com.squareup.retrofit2:converter-gson:2.8.1'
compile 'org.kordamp.ikonli:ikonli-javafx:12.2.0'
compile 'org.kordamp.ikonli:ikonli-fontawesome-pack:12.2.0'
}
javafx {
version = "13"
modules = [ 'javafx.controls' ,'javafx.base', 'javafx.fxml','javafx.graphics']
}
test {
useJUnitPlatform()
}
mainClassName= 'pack.Main'