搜索 Gradle 插件

版本 0.0.1 (最新版本)

0.0.1

创建于 2024 年 5 月 24 日。

Paper 插件开发的工具。

使用 插件 DSL

plugins {
  id("de.blutmondgilde.paper-utils") version "0.0.1"
}

使用 旧插件应用

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org.cn/m2/")
    }
  }
  dependencies {
    classpath("de.blutmondgilde:PaperUtils:0.0.1")
  }
}

apply(plugin = "de.blutmondgilde.paper-utils")

使用 插件 DSL

plugins {
  id "de.blutmondgilde.paper-utils" version "0.0.1"
}

使用 旧插件应用

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org.cn/m2/"
    }
  }
  dependencies {
    classpath "de.blutmondgilde:PaperUtils:0.0.1"
  }
}

apply plugin: "de.blutmondgilde.paper-utils"

学习如何应用插件到子项目