搜索 Gradle 插件

com.github.masterzach32.artifactory

所有者: Zachary Kozar

帮助配置多目标的 Minecraft 模块。支持出厂即可使用 fabric 和 forge。

https://github.com/Masterzach32/artifactory/

来源:https://github.com/Masterzach32/artifactory/

版本 0.4.0(最新版)

0.4.0

创建日期:2021年9月2日。

帮助配置多目标的 Minecraft 模块。支持出厂即可使用 fabric 和 forge。

使用插件 DSL

plugins {
  id("com.github.masterzach32.artifactory") version "0.4.0"
}

使用旧插件应用

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org.cn/m2/")
    }
  }
  dependencies {
    classpath("com.github.masterzach32:artifactory:0.4.0")
  }
}

apply(plugin = "com.github.masterzach32.artifactory")

使用插件 DSL

plugins {
  id "com.github.masterzach32.artifactory" version "0.4.0"
}

使用旧插件应用

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org.cn/m2/"
    }
  }
  dependencies {
    classpath "com.github.masterzach32:artifactory:0.4.0"
  }
}

apply plugin: "com.github.masterzach32.artifactory"

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