Search Gradle plugins

Version 1.1

Created 10 August 2022.

本插件自动生成 mirai-hotfix 所需要的 SourceSet 文件

Using the plugins DSL:

plugins {
  id("io.github.985892345.mirai-hotfix") version "1.1"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("io.github.985892345:gradle-plugin:1.1")
  }
}

apply(plugin = "io.github.985892345.mirai-hotfix")

Using the plugins DSL:

plugins {
  id "io.github.985892345.mirai-hotfix" version "1.1"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "io.github.985892345:gradle-plugin:1.1"
  }
}

apply plugin: "io.github.985892345.mirai-hotfix"

Learn how to apply plugins to subprojects