搜索 Gradle 插件

版本 1.7.2(最新版)

1.7.2

创建日期:2024年8月6日。

用于开发 Paper 的 Gradle 插件

使用插件 DSL

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

使用旧插件应用

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

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

使用插件 DSL

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

使用旧插件应用

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

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

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