Version 9.6 (latest)
9.6
Created 17 January 2017.
This plugin version will no longer resolve after JCenter becomes a permanent redirect to Maven Central as it uses dependencies only found in JCenter. See the following blog post for details: https://blog.gradle.org/portal-jcenter-impact
Git Cloner. Usage: cloner.gitUrl = "your git url to clone" cloner.downloadDir = "the directory to clone to."
Using the plugins DSL:
plugins {
id("org.avdiel.gitcloner") version "9.6"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("gradle.plugin.org.avdiel.gitcloner:GitCloner:9.6")
}
}
apply(plugin = "org.avdiel.gitcloner")
Using the plugins DSL:
plugins {
id "org.avdiel.gitcloner" version "9.6"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "gradle.plugin.org.avdiel.gitcloner:GitCloner:9.6"
}
}
apply plugin: "org.avdiel.gitcloner"