com.undefinedcreation.runServer
Owner: Creation
This gradle plugin allows you to run different type of minecraft servers in your Intellij
Sources: https://github.com/UndefinedCreation/UndefinedRunServer
Version 0.0.1 (latest)
0.0.1
Created 07 July 2024.
This gradle plugin allows you to run different type of minecraft servers in your Intellij
Using the plugins DSL:
plugins {
id("com.undefinedcreation.runServer") version "0.0.1"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("com.undefinedcreation:UndefinedRunServer:0.0.1")
}
}
apply(plugin = "com.undefinedcreation.runServer")
Using the plugins DSL:
plugins {
id "com.undefinedcreation.runServer" version "0.0.1"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "com.undefinedcreation:UndefinedRunServer:0.0.1"
}
}
apply plugin: "com.undefinedcreation.runServer"