MaterialFX/build.gradle
palexdev 156dc9713b ⬆️ Upgrade Gradle to v8.4 and some dependencies
Signed-off-by: palexdev <alessandro.parisi406@gmail.com>
2023-10-17 10:23:23 +02:00

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']
}
}