alexvasilkov / GradleGitDependenciesPlugin

Gradle plugin to add external git repos as project dependencies
Apache License 2.0
106 stars 15 forks source link

Git dependency: 'name' is not specified #36

Open assofohdz opened 2 months ago

assofohdz commented 2 months ago

I get:

Git dependency: 'name' is not specified

But my build.gradle looks like this:

git {
    // Simsilica MOSS
    // git@github.com:pspeed42/moss.git
    // https://github.com/pspeed42/moss.git
    implementation 'git@github.com:pspeed42/moss.git', {
        name 'sio2-mphys'
                branch 'master'
        projectPath "/sio2-mphys"
        authgroup 'github'
    }
}

Any ideas what im doing wrong?