com.alexanderthelen.gitrepositoriesplugin
Owner: Phlegethon
Fetch git dependencies and include them.
https://github.com/Phlegethon90/GitRepositoriesPlugin
Sources: https://github.com/Phlegethon90/GitRepositoriesPlugin.git
Version 1.4.0 (latest)
1.4.0
Created 21 November 2017.
Fetch public git dependencies and include them.
Using the plugins DSL:
plugins {
id("com.alexanderthelen.gitrepositoriesplugin") version "1.4.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("gradle.plugin.com.alexanderthelen.gitrepositoriesplugin:GitRepositoriesPlugin:1.4.0")
}
}
apply(plugin = "com.alexanderthelen.gitrepositoriesplugin")
Using the plugins DSL:
plugins {
id "com.alexanderthelen.gitrepositoriesplugin" version "1.4.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "gradle.plugin.com.alexanderthelen.gitrepositoriesplugin:GitRepositoriesPlugin:1.4.0"
}
}
apply plugin: "com.alexanderthelen.gitrepositoriesplugin"