搜索Gradle插件

版本 1.7.2(最新版)

1.7.2

创建于2024年8月6日。

使用服务器内部实现开发Paper插件的Gradle插件

使用plugins DSL

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

使用旧插件应用

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

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

使用plugins DSL

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

使用旧插件应用

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

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

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