Search Gradle plugins

com.github.pomes.projectinfo

Prepares various project info garnered from the Github repo for the project

https://github.com/pomes/gradle-plugins

Sources: https://github.com/pomes/gradle-plugins

Version 0.0.4

Created 21 August 2016.

Prepares various project info garnered from the Github repo for the project

Using the plugins DSL:

plugins {
  id("com.github.pomes.projectinfo") 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.projectinfo")

Using the plugins DSL:

plugins {
  id "com.github.pomes.projectinfo" 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.projectinfo"

Learn how to apply plugins to subprojects