org.jfxcore.fxmlplugin
所有者: Michael Strauss
支持使用JavaFX创建基于FXML的用户界面
https://github.com/jfxcore/fxml-gradle-plugin
来源: https://github.com/jfxcore/fxml-gradle-plugin
使用 plugins DSL
plugins {
id("org.jfxcore.fxmlplugin") version "0.8.6"
}
使用 旧版插件应用
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org.cn/m2/")
}
}
dependencies {
classpath("org.jfxcore:fxml-gradle-plugin:0.8.6")
}
}
apply(plugin = "org.jfxcore.fxmlplugin")
使用 plugins DSL
plugins {
id "org.jfxcore.fxmlplugin" version "0.8.6"
}
使用 旧版插件应用
buildscript {
repositories {
maven {
url "https://plugins.gradle.org.cn/m2/"
}
}
dependencies {
classpath "org.jfxcore:fxml-gradle-plugin:0.8.6"
}
}
apply plugin: "org.jfxcore.fxmlplugin"