gpt4 book ai didi

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

转载 作者:行者123 更新时间:2023-12-03 02:52:54 24 4
gpt4 key购买 nike

如何通过 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$

manual说:
plugins {
id 'application'
id 'org.openjfx.javafxplugin' version '0.0.7'
}

我的构建文件有:
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
}

这是产生上述错误。

最佳答案

plugins -你必须放的部分

id("org.openjfx.javafxplugin") version "0.0.8"

而不仅仅是 org.openjfx.javafxplugin .

之后你可以放一个 javafx - 部分喜欢
javafx {
modules("javafx.controls", "javafx.fxml")
}

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

有关更多配置选项,请查看 JavaFX Gradle Plugin .

关于gradle - 如何使用 Kotlin DSL 将 JavaFX 添加到 gradle 构建文件?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56510154/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com