mirror of
https://github.com/AtlasMediaGroup/Scissors.git
synced 2024-10-31 20:27:10 +00:00
104 lines
2.7 KiB
Plaintext
104 lines
2.7 KiB
Plaintext
plugins {
|
|
java
|
|
`maven-publish`
|
|
id("com.github.johnrengelman.shadow") version "8.1.1" apply false
|
|
id("io.papermc.paperweight.patcher") version "1.5.5"
|
|
}
|
|
|
|
val paperMavenPublicUrl = "https://repo.papermc.io/repository/maven-public/"
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
maven(paperMavenPublicUrl) {
|
|
content { onlyForConfigurations(configurations.paperclip.name) }
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
remapper("net.fabricmc:tiny-remapper:0.8.6:fat")
|
|
decompiler("net.minecraftforge:forgeflower:2.0.627.2")
|
|
paperclip("io.papermc:paperclip:3.0.3")
|
|
}
|
|
|
|
allprojects {
|
|
apply(plugin = "java")
|
|
apply(plugin = "maven-publish")
|
|
|
|
java {
|
|
toolchain {
|
|
languageVersion.set(JavaLanguageVersion.of(17))
|
|
}
|
|
}
|
|
}
|
|
|
|
subprojects {
|
|
tasks.withType<JavaCompile> {
|
|
options.encoding = Charsets.UTF_8.name()
|
|
options.release.set(17)
|
|
}
|
|
tasks.withType<Javadoc> {
|
|
options.encoding = Charsets.UTF_8.name()
|
|
}
|
|
tasks.withType<ProcessResources> {
|
|
filteringCharset = Charsets.UTF_8.name()
|
|
}
|
|
tasks.withType<Test> {
|
|
minHeapSize = "2g"
|
|
maxHeapSize = "4g"
|
|
}
|
|
repositories {
|
|
mavenCentral()
|
|
maven(paperMavenPublicUrl)
|
|
}
|
|
}
|
|
|
|
paperweight {
|
|
serverProject.set(project(":Scissors-Server"))
|
|
|
|
remapRepo.set(paperMavenPublicUrl)
|
|
decompileRepo.set(paperMavenPublicUrl)
|
|
|
|
useStandardUpstream("Folia") {
|
|
url.set(github("PaperMC", "Folia"))
|
|
ref.set(providers.gradleProperty("foliaRef"))
|
|
|
|
withStandardPatcher {
|
|
baseName("Folia")
|
|
|
|
apiPatchDir.set(layout.projectDirectory.dir("patches/api"))
|
|
apiOutputDir.set(layout.projectDirectory.dir("Scissors-API"))
|
|
|
|
serverPatchDir.set(layout.projectDirectory.dir("patches/server"))
|
|
serverOutputDir.set(layout.projectDirectory.dir("Scissors-Server"))
|
|
}
|
|
}
|
|
}
|
|
|
|
tasks.generateDevelopmentBundle {
|
|
apiCoordinates.set("me.totalfreedom.scissors:scissors-api")
|
|
mojangApiCoordinates.set("io.papermc.paper:paper-mojangapi")
|
|
libraryRepositories.set(
|
|
listOf(
|
|
"https://repo.maven.apache.org/maven2/",
|
|
paperMavenPublicUrl,
|
|
"https://repo.scissors.gg/repository/scissors-snapshot/",
|
|
)
|
|
)
|
|
}
|
|
|
|
allprojects {
|
|
// Publishing API:
|
|
// ./gradlew :Scissors-API:publish[ToMavenLocal]
|
|
publishing {
|
|
repositories {
|
|
maven {
|
|
name = "scissors-snapshots"
|
|
url = uri("https://repo.scissors.gg/repository/scissors-snapshot/")
|
|
credentials {
|
|
username = System.getenv("scissorsUser")
|
|
password = System.getenv("scissorsPassword")
|
|
}
|
|
}
|
|
}
|
|
}
|
|
} |