MaterialFX/build.gradle
palexdev de25cb9180 👷 Import build scripts from rewrite branch
Signed-off-by: palexdev <alessandro.parisi406@gmail.com>
2023-10-17 10:50:32 +02:00

24 lines
438 B
Groovy
Executable File

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