Search Gradle plugins

Version 1.0

Created 09 July 2020.

A plugin for loading information of a Gradle project as a model.

Using the plugins DSL:

plugins {
  id("com.github.MrRogerHuang.GradleProjectInfo") version "1.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("gradle.plugin.com.github.MrRogerHuang.GradleProjectInfo:GradleProjectInfoPlugin:1.0")
  }
}

apply(plugin = "com.github.MrRogerHuang.GradleProjectInfo")

Using the plugins DSL:

plugins {
  id "com.github.MrRogerHuang.GradleProjectInfo" version "1.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "gradle.plugin.com.github.MrRogerHuang.GradleProjectInfo:GradleProjectInfoPlugin:1.0"
  }
}

apply plugin: "com.github.MrRogerHuang.GradleProjectInfo"

Learn how to apply plugins to subprojects