com.github.dant3.github-repo-plugin
Owner: Viacheslav Blinov
GitHub repo plugin
https://github.com/dant3/git-repo-plugin
Sources: https://github.com/dant3/git-repo-plugin
Using the plugins DSL:
plugins {
id("com.github.dant3.github-repo-plugin") version "0.1.0-SNAPSHOT"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("gradle.plugin.com.github.dant3:git-repo-plugin:0.1.0-SNAPSHOT")
}
}
apply(plugin = "com.github.dant3.github-repo-plugin")
Using the plugins DSL:
plugins {
id "com.github.dant3.github-repo-plugin" version "0.1.0-SNAPSHOT"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "gradle.plugin.com.github.dant3:git-repo-plugin:0.1.0-SNAPSHOT"
}
}
apply plugin: "com.github.dant3.github-repo-plugin"