Search Gradle plugins

Version 0.7.1-20240314-boostrap (latest)

Created 15 March 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.7.1-20240314-boostrap"
}

Using legacy plugin application:

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

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

Using the plugins DSL:

plugins {
  id "com.huanshankeji.common-gradle-dependencies-dummy-plugin" version "0.7.1-20240314-boostrap"
}

Using legacy plugin application:

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

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

Learn how to apply plugins to subprojects