forked from ohm-softa/08-singleton-factory-strategy-jfx
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
42 lines (34 loc) · 1.12 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
plugins {
id 'java'
id 'application'
id 'idea'
id 'org.openjfx.javafxplugin' version '0.0.9'
}
group 'ohm.softa'
version '1.0-SNAPSHOT'
mainClassName = 'ohm.softa.a08.App'
repositories {
mavenCentral()
}
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}"
testImplementation("org.junit.jupiter:junit-jupiter-api:${junitVersion}")
testRuntimeOnly("org.junit.jupiter:junit-jupiter-engine:${junitVersion}")
testRuntimeOnly("org.junit.jupiter:junit-jupiter-params:${junitVersion}")
}
javafx {
sdk = '/Users/riedhammerko/Library/Java/JavaVirtualMachines/javafx-sdk-17'
version = 17
modules = [ 'javafx.controls', 'javafx.fxml' ]
}
test {
useJUnitPlatform()
testLogging {
events "passed", "skipped", "failed"
}
}