搜索 Gradle 插件

net.somethingcatchy.gradle

所有者: Niklas Widmann

将fabric/forge/common Gradle 插件捆绑在一起,并为 Minecraft 模块开发者提供有用的默认配置

https://github.com/pssbletrngle/gradlehelper

来源:https://github.com/pssbletrngle/gradlehelper

版本 0.0.8 (最新)

0.0.8

创建于 2023 年 8 月 13 日。

将fabric/forge/common Gradle 插件捆绑在一起,并为 Minecraft 模块开发者提供有用的默认配置

使用 插件 DSL

plugins {
  id("net.somethingcatchy.gradle") version "0.0.8"
}

使用 旧插件应用

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org.cn/m2/")
    }
  }
  dependencies {
    classpath("net.somethingcatchy:net.somethingcatchy.gradle:0.0.8")
  }
}

apply(plugin = "net.somethingcatchy.gradle")

使用 插件 DSL

plugins {
  id "net.somethingcatchy.gradle" version "0.0.8"
}

使用 旧插件应用

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org.cn/m2/"
    }
  }
  dependencies {
    classpath "net.somethingcatchy:net.somethingcatchy.gradle:0.0.8"
  }
}

apply plugin: "net.somethingcatchy.gradle"

学习如何应用到子项目中