Search Gradle plugins

Version 0.8.0-20241016 (latest)

0.8.0-20241016

Created 18 October 2024.

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

Using the plugins DSL:

plugins {
  id("com.huanshankeji.common-gradle-dependencies-dummy-plugin") version "0.8.0-20241016"
}

Using legacy plugin application:

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

apply(plugin = "com.huanshankeji.common-gradle-dependencies-dummy-plugin")

Using the plugins DSL:

plugins {
  id "com.huanshankeji.common-gradle-dependencies-dummy-plugin" version "0.8.0-20241016"
}

Using legacy plugin application:

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

apply plugin: "com.huanshankeji.common-gradle-dependencies-dummy-plugin"

Learn how to apply plugins to subprojects