Search Gradle plugins

com.fizzpod.info

Gradle plugin extending the nebula-info-plugin providing extension points and support for other CI servers.

https://github.com/boxheed/gradle-extended-info-plugin

Version 3.6.1

Created 25 October 2017.

Gradle plugin extending the nebula-info-plugin providing extension points and support for other CI servers.

Using the plugins DSL:

plugins {
  id("com.fizzpod.info") version "3.6.1"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("gradle.plugin.com.fizzpod:gradle-extended-info-plugin:3.6.1")
  }
}

apply(plugin = "com.fizzpod.info")

Using the plugins DSL:

plugins {
  id "com.fizzpod.info" version "3.6.1"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "gradle.plugin.com.fizzpod:gradle-extended-info-plugin:3.6.1"
  }
}

apply plugin: "com.fizzpod.info"

Learn how to apply plugins to subprojects