Scissors/build.gradle.kts

99 lines
2.6 KiB
Plaintext
Raw Normal View History

2021-06-12 12:09:34 +00:00
plugins {
java
2021-08-25 04:06:30 +00:00
`maven-publish`
2023-03-02 01:48:25 +00:00
id("com.github.johnrengelman.shadow") version "8.1.0" apply false
2023-07-22 17:57:20 +00:00
id("io.papermc.paperweight.patcher") version "1.5.5"
2021-06-12 12:09:34 +00:00
}
2022-06-14 02:10:45 +00:00
val paperMavenPublicUrl = "https://repo.papermc.io/repository/maven-public/"
2022-04-22 05:09:47 +00:00
2021-06-13 04:44:00 +00:00
repositories {
mavenCentral()
2022-04-22 05:09:47 +00:00
maven(paperMavenPublicUrl) {
content { onlyForConfigurations(configurations.paperclip.name) }
2021-06-13 04:44:00 +00:00
}
}
dependencies {
2022-11-10 23:23:17 +00:00
remapper("net.fabricmc:tiny-remapper:0.8.6:fat")
2023-03-06 06:59:08 +00:00
decompiler("net.minecraftforge:forgeflower:2.0.627.2")
2023-07-22 17:57:20 +00:00
paperclip("io.papermc:paperclip:3.0.3")
2021-06-13 04:44:00 +00:00
}
2021-08-25 04:06:30 +00:00
allprojects {
2021-06-12 12:09:34 +00:00
apply(plugin = "java")
2021-08-25 04:06:30 +00:00
apply(plugin = "maven-publish")
2021-06-12 12:09:34 +00:00
java {
toolchain {
2021-12-02 08:00:38 +00:00
languageVersion.set(JavaLanguageVersion.of(17))
2021-06-12 12:09:34 +00:00
}
}
2021-08-25 04:06:30 +00:00
}
2021-06-12 12:09:34 +00:00
2021-08-25 04:06:30 +00:00
subprojects {
tasks.withType<JavaCompile> {
options.encoding = Charsets.UTF_8.name()
2021-12-02 08:00:38 +00:00
options.release.set(17)
2021-06-12 12:20:45 +00:00
}
2021-08-25 04:06:30 +00:00
tasks.withType<Javadoc> {
options.encoding = Charsets.UTF_8.name()
}
tasks.withType<ProcessResources> {
filteringCharset = Charsets.UTF_8.name()
}
2023-02-18 02:49:12 +00:00
tasks.withType<Test> {
minHeapSize = "2g"
2023-02-22 20:09:37 +00:00
maxHeapSize = "4g"
2023-02-18 02:49:12 +00:00
}
2021-06-12 12:20:45 +00:00
repositories {
mavenCentral()
2022-04-22 05:09:47 +00:00
maven(paperMavenPublicUrl)
2021-06-12 12:20:45 +00:00
}
}
2021-06-12 12:09:34 +00:00
paperweight {
2022-03-13 01:39:38 +00:00
serverProject.set(project(":Scissors-Server"))
2021-06-12 18:04:04 +00:00
2022-04-22 05:09:47 +00:00
remapRepo.set(paperMavenPublicUrl)
decompileRepo.set(paperMavenPublicUrl)
2021-08-25 04:06:30 +00:00
2021-06-12 12:09:34 +00:00
usePaperUpstream(providers.gradleProperty("paperRef")) {
withPaperPatcher {
apiPatchDir.set(layout.projectDirectory.dir("patches/api"))
2022-03-13 01:39:38 +00:00
apiOutputDir.set(layout.projectDirectory.dir("Scissors-API"))
2021-06-12 12:09:34 +00:00
serverPatchDir.set(layout.projectDirectory.dir("patches/server"))
2022-03-13 01:39:38 +00:00
serverOutputDir.set(layout.projectDirectory.dir("Scissors-Server"))
2021-08-25 04:06:30 +00:00
}
}
2022-07-05 22:07:53 +00:00
}
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")
}
}
}
}
2022-04-19 23:21:18 +00:00
}