Files
openide/plugins/javaFX/resources/fileTemplates/j2ee/javafx-module-info.java.ft
Yuriy Artamonov 9b129ea5df [javafx] IDEA-301440 Incorrect module name is used for the ValidatorFX dependency added in new project wizard
GitOrigin-RevId: 8be338cc7e3dec974d4bdff4b5bc036d39a2a0d2
2022-09-08 12:07:28 +00:00

38 lines
1.0 KiB
Plaintext

module ${context.rootPackage} {
requires javafx.controls;
requires javafx.fxml;
#if ($context.hasLibrary("tilesfx"))
requires javafx.web;
#end
#if ($context.hasLanguage("groovy"))
requires org.apache.groovy;
#end
#if ($context.hasLanguage("kotlin"))
requires kotlin.stdlib;
#end
#if ($context.hasLibrary("controlsfx"))
requires org.controlsfx.controls;
#end
#if ($context.hasLibrary("formsfx"))
requires com.dlsc.formsfx;
#end
#if ($context.hasLibrary("validatorfx"))
requires net.synedra.validatorfx;
#end
#if ($context.hasLibrary("ikonli"))
requires org.kordamp.ikonli.javafx;
#end
#if ($context.hasLibrary("bootstrapfx"))
requires org.kordamp.bootstrapfx.core;
#end
#if ($context.hasLibrary("tilesfx"))
requires eu.hansolo.tilesfx;
#end
#if ($context.hasLibrary("fxgl"))
requires com.almasb.fxgl.all;
#end
opens ${context.rootPackage} to javafx.fxml;
exports ${context.rootPackage};
}