Gradle: выполнить задачу не удалось [Gluon javafx] - PullRequest
0 голосов
/ 18 апреля 2020

Я только что создал стартовый проект, используя Intellji Idea. И сборка Gradle и задачи были также успешно созданы.
Подробности:
gradle: 5.1.0
jvm: 11
javafx: 11
Вот файл build.gradle, используемый в начальном проекте.

buildscript {
    repositories {
        jcenter()
        mavenCentral()
    }
    dependencies {
        classpath 'org.javafxports:jfxmobile-plugin:1.3.17'
    }
}

plugins {
    id 'application'
    id 'org.openjfx.javafxplugin' version '0.0.8'
}

javafx {
    version = "11"
    modules = [ 'javafx.controls' , 'javafx.fxml' ]
}

apply plugin: 'org.javafxports.jfxmobile'

repositories {
    jcenter()
    maven {
        url 'http://nexus.gluonhq.com/nexus/content/repositories/releases'
    }
}

mainClassName = 'com.mainapplication.Application'

dependencies {
    compile 'com.gluonhq:charm:5.0.2'
}

jfxmobile {
    downConfig {
        version = '3.8.6'
        // Do not edit the line below. Use Gluon Mobile Settings in your project context menu instead
        plugins 'display', 'lifecycle', 'statusbar', 'storage'
    }
    android {
        compileSdkVersion = 25
        androidSdk = 'D:\\@games'
        applicationPackage = 'org.javafxports.ensemble'
        manifest = 'src/android/AndroidManifest.xml'
    }

    ios {
        infoPList = file('src/ios/Default-Info.plist')
        forceLinkClasses = [
                'com.gluonhq.**.*',
                'javax.annotations.**.*',
                'javax.inject.**.*',
                'javax.json.**.*',
                'org.glassfish.json.**.*'
        ]
    }
}


При выполнении задачи gettingstartedApp:run появляется следующая ошибка.

Executing task 'run'...

> Task :wrapper

Deprecated Gradle features were used in this build, making it incompatible with Gradle 6.0.
Use '--warning-mode all' to show the individual deprecation warnings.
See https://docs.gradle.org/5.1/userguide/command_line_interface.html#sec:command_line_warnings

BUILD SUCCESSFUL in 0s
1 actionable task: 1 executed
> Task :gettingStartedApp:compileJava
> Task :gettingStartedApp:processResources UP-TO-DATE
> Task :gettingStartedApp:classes
> Task :gettingStartedApp:configJavafxRun
> Task :gettingStartedApp:compileDesktopJava NO-SOURCE
> Task :gettingStartedApp:processDesktopResources NO-SOURCE
> Task :gettingStartedApp:desktopClasses UP-TO-DATE

> Task :gettingStartedApp:run FAILED
Error: --module-path requires module path specification

FAILURE: Build failed with an exception.

* What went wrong:
Execution failed for task ':gettingStartedApp:run'.
> Process 'command 'C:\Program Files\Java\jdk-11.0.7\bin\java.exe'' finished with non-zero exit value 1

* 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.

I Я даже добавил --module-path \path\javafx\lib для параметров виртуальной машины Gradle в конфигурации Gradle Intellji Idea и все еще получаю эту ошибку.
Пожалуйста, помогите мне исправить эту проблему, спасибо заранее.

...