Search code examples
gradlegluongluon-mobile

Could not create task ':GluonApplicationApp:debug'


I am trying to run simply the Gluon single scene example. Here is my gradle output:

Configuration on demand is an incubating feature.

> Configure project :GluonApplicationApp
Project :GluonApplicationApp => no module-info.java found

FAILURE: Build failed with an exception.

* What went wrong:
A problem occurred configuring project ':GluonApplicationApp'.
> Could not create task ':GluonApplicationApp: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

My build.gradle:

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

apply plugin: 'org.javafxports.jfxmobile'

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

mainClassName = 'com.gluonapplication.GluonApplication'

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 {
        manifest = 'src/android/AndroidManifest.xml'
    }
}


buildscript {
    repositories {
        maven {
            url "https://plugins.gradle.org/m2/"
        }
    }
    dependencies {
        classpath 'org.openjfx:javafx-plugin:0.0.9'
    }
}
apply plugin: 'org.openjfx.javafxplugin'

The JDK version i'm using is JDK 11, and I have tried various gradle versions. For my IDE I use netbeans.

I have been trying to fix this all day. Please help


Solution

    1. I was using the old Gluon IDE plugin
    2. Gluon build 0.1.29-SNAPSHOT fixes the rest of the problems

    More details on comments of the question!