搜索 Gradle 插件

版本 2.16.0(最新版)

2.16.0

创建于 2023年10月10日。

适用于 Mirai 控制台的 Gradle 插件

使用 插件 DSL

plugins {
  id("net.mamoe.mirai-console") version "2.16.0"
}

使用 旧插件应用程序

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org.cn/m2/")
    }
  }
  dependencies {
    classpath("net.mamoe:mirai-console-gradle:2.16.0")
  }
}

apply(plugin = "net.mamoe.mirai-console")

使用 插件 DSL

plugins {
  id "net.mamoe.mirai-console" version "2.16.0"
}

使用 旧插件应用程序

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org.cn/m2/"
    }
  }
  dependencies {
    classpath "net.mamoe:mirai-console-gradle:2.16.0"
  }
}

apply plugin: "net.mamoe.mirai-console"

了解如何将插件应用于子项目