You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
502 B
21 lines
502 B
plugins {
|
|
id 'application'
|
|
id 'org.openjfx.javafxplugin' version '0.0.8'
|
|
}
|
|
|
|
mainClassName = 'de.fd.fh.ClientApp'
|
|
|
|
dependencies {
|
|
implementation project(':fh.fd.ci.shared')
|
|
|
|
implementation 'io.github.openfeign:feign-okhttp:11.0'
|
|
implementation 'io.github.openfeign:feign-gson:11.0'
|
|
implementation 'io.github.openfeign:feign-slf4j:11.0'
|
|
|
|
testImplementation 'io.github.openfeign:feign-mock:11.0'
|
|
}
|
|
|
|
javafx {
|
|
version = '11'
|
|
modules = ['javafx.controls', 'javafx.fxml']
|
|
}
|