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.

20 lines
502 B

3 years ago
3 years ago
  1. plugins {
  2. id 'application'
  3. id 'org.openjfx.javafxplugin' version '0.0.8'
  4. }
  5. mainClassName = 'de.fd.fh.ClientApp'
  6. dependencies {
  7. implementation project(':fh.fd.ci.shared')
  8. implementation 'io.github.openfeign:feign-okhttp:11.0'
  9. implementation 'io.github.openfeign:feign-gson:11.0'
  10. implementation 'io.github.openfeign:feign-slf4j:11.0'
  11. testImplementation 'io.github.openfeign:feign-mock:11.0'
  12. }
  13. javafx {
  14. version = '11'
  15. modules = ['javafx.controls', 'javafx.fxml']
  16. }