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 11.2.1

Created 01 February 2022.

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 "11.2.1"
}

Using legacy plugin application:

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

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

Using the plugins DSL:

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

Using legacy plugin application:

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

apply plugin: "com.fizzpod.info"

Learn how to apply plugins to subprojects