Scissors/build.gradle.kts

114 lines
3.3 KiB
Plaintext
Raw Normal View History

2021-08-25 04:06:30 +00:00
import io.papermc.paperweight.util.constants.*
2021-06-12 12:09:34 +00:00
plugins {
java
2021-08-25 04:06:30 +00:00
`maven-publish`
2021-10-09 05:38:07 +00:00
id("com.github.johnrengelman.shadow") version "7.1.0" apply false
2021-11-17 05:27:00 +00:00
id("io.papermc.paperweight.patcher") version "1.2.0"
2021-06-12 12:09:34 +00:00
}
2021-06-13 04:44:00 +00:00
repositories {
mavenCentral()
2021-06-16 06:28:10 +00:00
maven("https://papermc.io/repo/repository/maven-public/") {
2021-08-25 04:06:30 +00:00
content { onlyForConfigurations(PAPERCLIP_CONFIG) }
2021-06-13 04:44:00 +00:00
}
}
dependencies {
remapper("net.fabricmc:tiny-remapper:0.6.0:fat")
2021-08-25 04:06:30 +00:00
decompiler("net.minecraftforge:forgeflower:1.5.498.12")
2021-06-20 05:16:09 +00:00
paperclip("io.papermc:paperclip:2.0.1")
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 {
languageVersion.set(JavaLanguageVersion.of(16))
}
}
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-06-12 12:20:45 +00:00
options.release.set(16)
}
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()
}
2021-06-12 12:20:45 +00:00
repositories {
mavenCentral()
maven("https://papermc.io/repo/repository/maven-public/")
}
}
2021-06-12 12:09:34 +00:00
paperweight {
2021-06-12 18:04:04 +00:00
serverProject.set(project(":ForkTest-Server"))
remapRepo.set("https://maven.fabricmc.net/")
2021-08-25 04:06:30 +00:00
decompileRepo.set("https://files.minecraftforge.net/maven/")
2021-06-12 12:09:34 +00:00
usePaperUpstream(providers.gradleProperty("paperRef")) {
withPaperPatcher {
apiPatchDir.set(layout.projectDirectory.dir("patches/api"))
apiOutputDir.set(layout.projectDirectory.dir("ForkTest-API"))
serverPatchDir.set(layout.projectDirectory.dir("patches/server"))
serverOutputDir.set(layout.projectDirectory.dir("ForkTest-Server"))
}
}
}
2021-08-25 04:06:30 +00:00
//
// Everything below here is optional if you don't care about publishing API or dev bundles to your repository
//
tasks.generateDevelopmentBundle {
apiCoordinates.set("com.example.paperfork:forktest-api")
mojangApiCoordinates.set("io.papermc.paper:paper-mojangapi")
libraryRepositories.set(
listOf(
"https://repo.maven.apache.org/maven2/",
2021-08-25 04:06:30 +00:00
"https://libraries.minecraft.net/",
"https://papermc.io/repo/repository/maven-public/",
"https://maven.quiltmc.org/repository/release/",
// "https://my.repo/", // This should be a repo hosting your API (in this example, 'com.example.paperfork:forktest-api')
2021-08-25 04:06:30 +00:00
)
)
}
allprojects {
// Publishing API:
// ./gradlew :ForkTest-API:publish[ToMavenLocal]
publishing {
repositories {
maven {
name = "myRepoSnapshots"
url = uri("https://my.repo/")
// See Gradle docs for how to provide credentials to PasswordCredentials
// https://docs.gradle.org/current/samples/sample_publishing_credentials.html
credentials(PasswordCredentials::class)
}
}
}
}
publishing {
// Publishing dev bundle:
// ./gradlew publishDevBundlePublicationTo(MavenLocal|MyRepoSnapshotsRepository) -PpublishDevBundle
if (project.hasProperty("publishDevBundle")) {
publications.create<MavenPublication>("devBundle") {
artifact(tasks.generateDevelopmentBundle) {
artifactId = "dev-bundle"
}
}
}
}