Search Gradle plugins

Version 1.0.0

1.0.0

Created 05 December 2015.

Generates common Github links by convention and configures common plugins

Add this plugin to your build using the plugins DSL:

plugins {
  id("ru.vyarus.github-info") version "1.0.0"
}

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("ru.vyarus:gradle-github-info-plugin:1.0.0")
      }
    }
    
    apply(plugin = "ru.vyarus.github-info")
  • Applying plugins to all subprojects .