com.alexvasilkov.git-dependencies
Owner:
Alex Vasilkov
Gradle plugin to add external git repos as project dependencies
https://github.com/alexvasilkov/GradleGitDependenciesPlugin
Sources: https://github.com/alexvasilkov/GradleGitDependenciesPlugin
Version 2.0.4 (latest)
Created 13 April 2021.
Gradle plugin to add external git repos as project dependencies
Add this plugin to your build using the plugins DSL:
plugins {
id("com.alexvasilkov.git-dependencies") version "2.0.4"
}
See also:
-
Adding the plugin to build logic for usage in precompiled script plugins.
See the relevant documentation for more information.
Add this plugin as a dependency to
<convention-plugins-build>/build.gradle(.kts)
:dependencies { implementation("com.alexvasilkov.git-dependencies:com.alexvasilkov.git-dependencies.gradle.plugin:2.0.4") }
It can then be applied in the precompiled script plugin:plugins { id("com.alexvasilkov.git-dependencies") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("com.alexvasilkov.git-dependencies:com.alexvasilkov.git-dependencies.gradle.plugin:2.0.4") } } apply(plugin = "com.alexvasilkov.git-dependencies")
- Applying plugins to all subprojects .