如何使用 Kotlin DSL 将 JavaFX 添加到 gradle 构建文件?

Thu*_*fir 8 dependencies javafx gradle build.gradle gradle-kotlin-dsl

如何通过 gradle 添加 javafx 依赖项?

thufir@dur:~/NetBeansProjects/helloWorldJavaFX$ 
thufir@dur:~/NetBeansProjects/helloWorldJavaFX$ gradle clean

> Configure project :
e: /home/thufir/NetBeansProjects/helloWorldJavaFX/build.gradle.kts:13:7: Unresolved reference: openjfx

FAILURE: Build failed with an exception.

* Where:
Build file '/home/thufir/NetBeansProjects/helloWorldJavaFX/build.gradle.kts' line: 13

* What went wrong:
Script compilation error:

  Line 13:   org.openjfx.javafxplugin
                 ^ Unresolved reference: openjfx

1 error

* Try:
Run with --stacktrace option to get the stack trace. Run with --info or --debug option to get more log output. Run with --scan to get full insights.

* Get more help at https://help.gradle.org

BUILD FAILED in 1s
thufir@dur:~/NetBeansProjects/helloWorldJavaFX$ 
Run Code Online (Sandbox Code Playgroud)

手册说:

plugins {
  id 'application'
  id 'org.openjfx.javafxplugin' version '0.0.7'
}
Run Code Online (Sandbox Code Playgroud)

我的构建文件有:

plugins {
    // Apply the java plugin to add support for Java
    java

  org.openjfx.javafxplugin

    // Apply the application plugin to add support for building an application
    application
}
Run Code Online (Sandbox Code Playgroud)

这是产生上述错误。

mat*_*hze 11

在 - 部分plugins你必须把

id("org.openjfx.javafxplugin") version "0.0.8"
Run Code Online (Sandbox Code Playgroud)

而不仅仅是org.openjfx.javafxplugin.

之后你可以放一个javafx-section

javafx {
    modules("javafx.controls", "javafx.fxml")
}
Run Code Online (Sandbox Code Playgroud)

某处(我更喜欢把它放在dependency-section旁边)。在这里你可以放入任何你需要的模块。

有关进一步的配置可能性,请查看JavaFX Gradle 插件