Search Gradle plugins

com.github.pomes.gitbase

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.4

Created 21 August 2016.

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.4"
}

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.4")
  }
}

apply(plugin = "com.github.pomes.gitbase")

Using the plugins DSL:

plugins {
  id "com.github.pomes.gitbase" version "0.0.4"
}

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.4"
  }
}

apply plugin: "com.github.pomes.gitbase"

Learn how to apply plugins to subprojects