forked from ohm-softa/08-singleton-factory-strategy-jfx
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
43 lines (33 loc) · 1.11 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
plugins {
id 'java'
id 'application'
id 'org.openjfx.javafxplugin' version '0.0.7'
}
group 'ohm.softa'
version '1.0-SNAPSHOT'
sourceCompatibility = JavaVersion.VERSION_11
mainClassName = 'ohm.softa.a08.App'
repositories {
mavenCentral()
jcenter()
}
dependencies {
implementation("org.apache.commons:commons-lang3:$commons_lang3_version")
implementation("org.apache.logging.log4j:log4j-api:${log4j2Version}")
implementation("org.apache.logging.log4j:log4j-core:${log4j2Version}")
implementation "com.squareup.okhttp3:logging-interceptor:${okhttp_version}"
implementation "com.squareup.retrofit2:retrofit:${retrofit2_version}"
implementation "com.squareup.retrofit2:converter-gson:${retrofit2_version}"
testCompile("org.junit.jupiter:junit-jupiter-api:${junitVersion}")
testRuntime("org.junit.jupiter:junit-jupiter-engine:${junitVersion}")
testRuntime("org.junit.jupiter:junit-jupiter-params:${junitVersion}")
}
test {
useJUnitPlatform()
testLogging {
events "passed", "skipped", "failed"
}
}
javafx {
modules = [ 'javafx.controls', 'javafx.fxml' ]
}