You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
plugins {
id 'org.openjfx.javafxplugin' version '0.0.15-SNAPSHOT' apply false
id 'com.gluonhq.gluonfx-gradle-plugin' version '+' apply false
}
subprojects {
if (project.name =='gui') {
apply plugin: 'application'
apply plugin: 'org.openjfx.javafxplugin'
apply plugin: 'com.gluonhq.gluonfx-gradle-plugin'// this line causes an error
}
This is the error:
> Failed to apply plugin 'com.gluonhq.gluonfx-gradle-plugin'.
> Could not create task ':gui:nativeRunAgent'.
> Could not create task of type 'NativeRunAgentTask'.
> javafxplugin:configJavafxRun task not found.
When version 0.0.15 if the javafx plugin is released, it will break current applications that use this plugin, so this plugin needs to be patched beforehand.
The text was updated successfully, but these errors were encountered:
After openjfx/javafx-gradle-plugin#151, the problem fixed in #107 (#102) was revived.
The critical part of the build file:
This is the error:
When version 0.0.15 if the javafx plugin is released, it will break current applications that use this plugin, so this plugin needs to be patched beforehand.
The text was updated successfully, but these errors were encountered: