搜索 Gradle 插件

版本 0.3.1-SNAPSHOT.local (最新版)

0.3.1-SNAPSHOT.local

创建于 2019 年 4 月 5 日。

为 StarMade 定制插件构建模组。

使用 插件 DSL

plugins {
  id("net.distortsm.navigator") version "0.3.1-SNAPSHOT.local"
}

使用 旧插件应用

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org.cn/m2/")
    }
  }
  dependencies {
    classpath("net.fabricmc:fabric-loom:0.3.1-SNAPSHOT.local")
  }
}

apply(plugin = "net.distortsm.navigator")

使用 插件 DSL

plugins {
  id "net.distortsm.navigator" version "0.3.1-SNAPSHOT.local"
}

使用 旧插件应用

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org.cn/m2/"
    }
  }
  dependencies {
    classpath "net.fabricmc:fabric-loom:0.3.1-SNAPSHOT.local"
  }
}

apply plugin: "net.distortsm.navigator"

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