搜索Gradle插件

版本 1.7.2(最新版本)

1.7.2

创建日期 2024年8月6日。

用于开发Paper衍生品的Gradle插件

使用 插件DSL

plugins {
  id("io.papermc.paperweight.patcher") version "1.7.2"
}

使用 旧插件应用

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org.cn/m2/")
    }
  }
  dependencies {
    classpath("io.papermc.paperweight:paperweight-patcher:1.7.2")
  }
}

apply(plugin = "io.papermc.paperweight.patcher")

使用 插件DSL

plugins {
  id "io.papermc.paperweight.patcher" version "1.7.2"
}

使用 旧插件应用

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org.cn/m2/"
    }
  }
  dependencies {
    classpath "io.papermc.paperweight:paperweight-patcher:1.7.2"
  }
}

apply plugin: "io.papermc.paperweight.patcher"

学习如何将插件应用于子项目