Как добавить JavaFX в файл сборки Gradle с помощью Kotlin DSL? - PullRequest
0 голосов
/ 09 июня 2019

как добавить зависимости javafx через gradle?

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$ 

руководство говорит:

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
}

, которая генерирует вышеуказанную ошибку.

...