9
0
mirror of https://github.com/SparklyPower/SparklyPaper.git synced 2025-12-27 02:49:06 +00:00
Files
SparklyPaperMC/build.gradle.kts
MrPowerGamerBR 3b8de09df1 First commit (again) 🎉
2021-06-23 20:28:05 -03:00

58 lines
1.7 KiB
Plaintext

plugins {
java
id("com.github.johnrengelman.shadow") version "7.0.0" apply false
id("io.papermc.paperweight.patcher") version "1.1.6"
}
repositories {
mavenCentral()
maven("https://papermc.io/repo/repository/maven-public/") {
content { onlyForConfigurations("paperclip") }
}
maven("https://maven.quiltmc.org/repository/release/") {
content { onlyForConfigurations("remapper") }
}
}
dependencies {
remapper("org.quiltmc:tiny-remapper:0.4.1")
paperclip("io.papermc:paperclip:2.0.1")
}
subprojects {
apply(plugin = "java")
java { toolchain { languageVersion.set(JavaLanguageVersion.of(16)) } }
tasks.withType<JavaCompile>().configureEach {
options.encoding = "UTF-8"
options.release.set(16)
}
repositories {
mavenCentral()
maven("https://oss.sonatype.org/content/groups/public/")
maven("https://papermc.io/repo/repository/maven-public/")
maven("https://ci.emc.gs/nexus/content/groups/aikar/")
maven("https://repo.aikar.co/content/groups/aikar")
maven("https://repo.md-5.net/content/repositories/releases/")
maven("https://hub.spigotmc.org/nexus/content/groups/public/")
maven("https://jitpack.io")
}
}
paperweight {
serverProject.set(project(":SparklyPaper-Server"))
useStandardUpstream("tuinity") {
url.set(github("Tuinity", "Tuinity"))
ref.set(providers.gradleProperty("tuinityRef"))
withStandardPatcher {
baseName("Tuinity")
apiOutputDir.set(layout.projectDirectory.dir("SparklyPaper-API"))
serverOutputDir.set(layout.projectDirectory.dir("SparklyPaper-Server"))
}
}
}