Search Gradle plugins

Version 0.3.2-20220728 (latest)

Created 23 September 2022.

A dummy plugin defined to enable publishing the repository to the Gradle Plugin Portal

Using the plugins DSL:

plugins {
  id("com.huanshankeji.dummy-plugin") version "0.3.2-20220728"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("com.huanshankeji:common-gradle-dependencies:0.3.2-20220728")
  }
}

apply(plugin = "com.huanshankeji.dummy-plugin")

Using the plugins DSL:

plugins {
  id "com.huanshankeji.dummy-plugin" version "0.3.2-20220728"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "com.huanshankeji:common-gradle-dependencies:0.3.2-20220728"
  }
}

apply plugin: "com.huanshankeji.dummy-plugin"

Learn how to apply plugins to subprojects