Search Gradle plugins

Version 2.1.0 (latest)

Created 04 November 2022.

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

Using the plugins DSL:

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

Using legacy plugin application:

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

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

Using the plugins DSL:

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

Using legacy plugin application:

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

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

Learn how to apply plugins to subprojects