com.github.pomes.gitbase
Owner: Duncan Dickinson
Small plugin that connects to the local git repo and GitHub API for the repo
https://github.com/pomes/gradle-plugins
Sources: https://github.com/pomes/gradle-plugins
Version 0.0.6 (latest)
0.0.6
Created 21 August 2016.
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
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
Small plugin that connects to the local git repo and GitHub API for the repo
Using the plugins DSL:
plugins {
id("com.github.pomes.gitbase") version "0.0.6"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("gradle.plugin.com.github.pomes.gradle-plugins:pomes-gradle-plugins:0.0.6")
}
}
apply(plugin = "com.github.pomes.gitbase")
Using the plugins DSL:
plugins {
id "com.github.pomes.gitbase" version "0.0.6"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "gradle.plugin.com.github.pomes.gradle-plugins:pomes-gradle-plugins:0.0.6"
}
}
apply plugin: "com.github.pomes.gitbase"