Search Gradle plugins

Version 0.5.2 (latest)

0.5.2

Created 29 July 2023.

Gradle plugin to clone projects with git and build them

Add this plugin to your build using the plugins DSL:

plugins {
  id("io.github.srdjan-v.local-git-dependency") version "0.5.2"
}

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("io.github.srdjan-v:local-git-dependency:0.5.2")
      }
    }
    
    apply(plugin = "io.github.srdjan-v.local-git-dependency")
  • Applying plugins to all subprojects .