Scissors/build.gradle.kts

120 lines
3.7 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-06-12 12:09:34 +00:00
id("com.github.johnrengelman.shadow") version "7.0.0" apply false
2021-08-25 04:06:30 +00:00
id("io.papermc.paperweight.patcher") version "1.1.11"
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 {
2021-09-25 02:03:15 +00:00
remapper("org.quiltmc:tiny-remapper:0.4.3: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://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/")
}
}
2021-06-12 12:09:34 +00:00
paperweight {
2021-06-12 18:04:04 +00:00
serverProject.set(project(":ForkTest-Server"))
2021-08-25 04:06:30 +00:00
remapRepo.set("https://maven.quiltmc.org/repository/release/")
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://libraries.minecraft.net/",
"https://maven.quiltmc.org/repository/release/",
"https://repo.aikar.co/content/groups/aikar",
"https://ci.emc.gs/nexus/content/groups/aikar/",
"https://papermc.io/repo/repository/maven-public/", // for paper-mojangapi
// "https://my.repo/" // This should be a repo hosting your API (in this example, 'com.example.paperfork:forktest-api')
)
)
}
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"
}
}
}
}