Я создаю приложение JavaFX в Java 8.
Java 8 требуется для JavaFXports .
Я установил абсолютно все необходимое, но при запуске Gradle я получаю эту ошибку:
FAILURE: Build failed with an exception.
* What went wrong:
A problem occurred configuring root project 'MealPlanner'.
> Could not create task ':debug'.
> Unnecessarily replacing a task that does not exist is not supported. Use create() or register() directly instead. You attempted to replace a task named 'debug', but there is no existing task with that name.
* 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
Deprecated Gradle features were used in this build, making it incompatible with Gradle 7.0.
Use '--warning-mode all' to show the individual deprecation warnings.
See https://docs.gradle.org/6.0.1/userguide/command_line_interface.html#sec:command_line_warnings
BUILD FAILED in 1s
Мой Gradle.build выглядит следующим образом:
buildscript {
repositories {
jcenter()
}
dependencies {
classpath 'org.javafxports:jfxmobile-plugin:1.3.17'
}
}
apply plugin: 'org.javafxports.jfxmobile'
mainClassName = "src.main.java.MainScreen"
repositories {
jcenter()
}
jfxmobile {
ios {
forceLinkClasses = ['ensemble.**.*']
}
}
Похоже были заданы вопросы и даны ответы.
Обычно это проблема IntelliJ, и ее можно было решить, обновив ее, ИЛИ удалив файл .gradle и перестроив.
Однако я использую Текстовый редактор Atom пытался удалить .gradle, но он не сработал.
И, как вы видите, я не перезаписываю ничего, что связано с функцией отладки.