GradleGitDependenciesPlugin icon indicating copy to clipboard operation
GradleGitDependenciesPlugin copied to clipboard

Gradle plugin to add external git repos as project dependencies

Results 11 GradleGitDependenciesPlugin issues
Sort by recently updated
recently updated
newest added

* What went wrong: An exception occurred applying plugin request [id: 'com.alexvasilkov.git-dependencies', version: '2.0.4'] > Failed to apply plugin 'com.alexvasilkov.git-dependencies'. > class org.gradle.api.internal.project.DefaultProject_Decorated cannot be cast to class org.gradle.api.initialization.Settings (org.gradle.api.internal.project.DefaultProject_Decorated...

It doesn't seem like this plugin supports choosing a project inside of a [multi-project build](https://docs.gradle.org/current/userguide/multi_project_builds.html). It does support `dir`, but it appears this breaks the ability for the project to...

I reopened a project where I was using a private repo with HTTPS authentication and an AuthGroup, it worked fine but it seems we can't use this type of authentication...

I am trying to use the plug in via http(not https) and even though the credentials are correct, I get a 'not authorized' error.

Steps to reproduce * create settings.gradle ``` plugins { id 'com.alexvasilkov.git-dependencies' version '2.0.3' } // 2.0.4 also does not work git { fetch 'https://github.com/alexvasilkov/GradleGitDependenciesPlugin.git' , { dir "$rootDir/testing" commit 'master'...

Hello, I'm using this plugin in order to use a library in my Android app. However, this library is using git submodule, which are not initialized. It would be good...

Hi, Is it possible to use with kotlin dsl in android project? Android Studio 3.6.2 can't resolve git {} in the gradle.kts file, but it can clone the repo. Just...

enhancement
help wanted

I'm trying to use this plugin in existing project and I've run into a problem with modules definition and dependencies. settings.gradle ```gradle plugins { id 'com.alexvasilkov.git-dependencies' version '2.0.4' } git...

I arrived at using this plugin when I needed to obtain (and inject builds into) source dependencies from GitHub in a Gradle project. Like others I found that Gradle's built-in...

If I set a custom dir in `settings.gradle` ``` git { dir './gradle-libs' // or just 'gradle-libs' } ``` The build fails with: Creating directories for /Users/me/.gradle/daemon/7.4.2/./gradle-libs/kafka-internal-schemas/.git failed or Creating...