build.gradle 399 B

12345678910111213141516171819202122232425
  1. plugins {
  2. id 'java-library'
  3. id 'org.openjfx.javafxplugin' version "$jfxPlugin" apply false
  4. }
  5. group 'io.github.palexdev'
  6. version "$materialfx"
  7. repositories {
  8. mavenCentral()
  9. }
  10. subprojects {
  11. apply plugin: 'org.openjfx.javafxplugin'
  12. javafx {
  13. version = "$jfx"
  14. modules = ['javafx.controls', 'javafx.fxml', 'javafx.media', 'javafx.swing', 'javafx.web']
  15. }
  16. }