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
Version 0.2.1 (latest)
0.2.1
Created 21 May 2019.
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
GitHub repo plugin
Using the plugins DSL:
plugins {
id("com.github.dant3.github-repo-plugin") version "0.2.1"
}
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.2.1")
}
}
apply(plugin = "com.github.dant3.github-repo-plugin")
Using the plugins DSL:
plugins {
id "com.github.dant3.github-repo-plugin" version "0.2.1"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "gradle.plugin.com.github.dant3:git-repo-plugin:0.2.1"
}
}
apply plugin: "com.github.dant3.github-repo-plugin"