mirror of
https://github.com/PaperMC/Paper.git
synced 2024-11-01 00:10:32 +01:00
30 lines
734 B
Plaintext
30 lines
734 B
Plaintext
import org.spongepowered.gradle.vanilla.repository.MinecraftPlatform
|
|
|
|
plugins {
|
|
java
|
|
id("org.spongepowered.gradle.vanilla") version "0.2.1-SNAPSHOT"
|
|
}
|
|
|
|
minecraft {
|
|
version(property("mcVersion").toString())
|
|
platform(MinecraftPlatform.SERVER)
|
|
|
|
runs {
|
|
server("generate") {
|
|
mainClass("io.papermc.generator.Main")
|
|
accessWideners(projectDir.toPath().resolve("wideners.at"))
|
|
args(projectDir.toPath().resolve("generated").toString())
|
|
}
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
implementation("com.squareup:javapoet:1.13.0")
|
|
implementation(project(":paper-api"))
|
|
implementation("io.github.classgraph:classgraph:4.8.47")
|
|
}
|
|
|
|
group = "io.papermc.paper"
|
|
version = "1.0-SNAPSHOT"
|
|
|