build.gradle 548 B

1234567891011121314151617181920212223242526272829
  1. plugins {
  2. id 'java-library'
  3. id 'org.openjfx.javafxplugin' version '0.0.9' apply false
  4. }
  5. group 'io.github.palexdev'
  6. version '11.6.0'
  7. repositories {
  8. mavenCentral()
  9. jcenter()
  10. }
  11. subprojects {
  12. apply plugin: 'org.openjfx.javafxplugin'
  13. javafx {
  14. version = "15.0.1"
  15. modules = [ 'javafx.controls', 'javafx.fxml', 'javafx.web' ]
  16. }
  17. // Workaround for newer Gradle versions (see https://github.com/java9-modularity/gradle-modules-plugin/issues/165)
  18. modularity.disableEffectiveArgumentsAdjustment()
  19. }