12345678910111213141516171819202122232425 |
- plugins {
- id 'java-library'
- id 'org.openjfx.javafxplugin' version "$jfxPlugin" apply false
- }
- group 'io.github.palexdev'
- version "$materialfx"
- repositories {
- mavenCentral()
- }
- subprojects {
- apply plugin: 'org.openjfx.javafxplugin'
- javafx {
- version = "$jfx"
- modules = ['javafx.controls', 'javafx.fxml', 'javafx.media', 'javafx.swing', 'javafx.web']
- }
- }
|