Search Gradle plugins

Version 0.0.1 (latest)

Created 02 November 2021.

This Gradle plugin creates tasks that print selected ext properties.

Using the plugins DSL:

plugins {
  id("com.github.rkotkiewicz.print-ext") version "0.0.1"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("com.github.rkotkiewicz:print-ext-plugin:0.0.1")
  }
}

apply(plugin = "com.github.rkotkiewicz.print-ext")

Using the plugins DSL:

plugins {
  id "com.github.rkotkiewicz.print-ext" version "0.0.1"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "com.github.rkotkiewicz:print-ext-plugin:0.0.1"
  }
}

apply plugin: "com.github.rkotkiewicz.print-ext"

Learn how to apply plugins to subprojects