1234567891011121314151617181920212223242526272829303132333435 |
- buildscript {
- repositories {
- gradlePluginPortal()
- }
- dependencies {
- classpath 'org.javamodularity:moduleplugin:1.8.10' // Workaround for broken javafxplugin
- }
- }
- plugins {
- id 'java-library'
- id 'org.openjfx.javafxplugin' version '0.0.11' apply false
- }
- group 'io.github.palexdev'
- version '11.13.0'
- repositories {
- mavenCentral()
- }
- subprojects {
- apply plugin: 'org.openjfx.javafxplugin'
- javafx {
- version = "17.0.1"
- modules = ['javafx.controls', 'javafx.fxml', 'javafx.media', 'javafx.swing', 'javafx.web']
- }
- }
|