搜索Gradle插件

版本 0.0.1 (最新)

0.0.1

创建于 2024 年 7 月 7 日。

此gradle插件允许你在Intellij中运行不同类型的Minecraft服务器

使用 插件 DSL

plugins {
  id("com.undefinedcreation.runServer") version "0.0.1"
}

使用 旧插件应用程序

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org.cn/m2/")
    }
  }
  dependencies {
    classpath("com.undefinedcreation:UndefinedRunServer:0.0.1")
  }
}

apply(plugin = "com.undefinedcreation.runServer")

使用 插件 DSL

plugins {
  id "com.undefinedcreation.runServer" version "0.0.1"
}

使用 旧插件应用程序

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org.cn/m2/"
    }
  }
  dependencies {
    classpath "com.undefinedcreation:UndefinedRunServer:0.0.1"
  }
}

apply plugin: "com.undefinedcreation.runServer"

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