20 lines
393 B
Groovy
Executable File
20 lines
393 B
Groovy
Executable File
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']
|
|
}
|
|
} |