mirror of
https://github.com/EngineHub/WorldEdit.git
synced 2024-12-09 04:30:51 +08:00
158 lines
4.8 KiB
Plaintext
158 lines
4.8 KiB
Plaintext
import com.github.jengelman.gradle.plugins.shadow.tasks.ShadowJar
|
|
import net.fabricmc.loom.LoomGradleExtension
|
|
import net.fabricmc.loom.task.RemapJarTask
|
|
|
|
buildscript {
|
|
repositories {
|
|
mavenCentral()
|
|
maven {
|
|
name = "Fabric"
|
|
url = uri("https://maven.fabricmc.net/")
|
|
}
|
|
}
|
|
dependencies {
|
|
classpath("net.fabricmc:fabric-loom:${versions.loom}")
|
|
}
|
|
}
|
|
|
|
applyPlatformAndCoreConfiguration()
|
|
applyShadowConfiguration()
|
|
|
|
apply(plugin = "fabric-loom")
|
|
|
|
configure<LoomGradleExtension> {
|
|
accessWidener("src/main/resources/worldedit.accesswidener")
|
|
}
|
|
|
|
val minecraftVersion = "1.16.1"
|
|
val yarnMappings = "1.16.1+build.4:v2"
|
|
val loaderVersion = "0.8.8+build.202"
|
|
|
|
configurations.all {
|
|
resolutionStrategy {
|
|
force("com.google.guava:guava:21.0")
|
|
}
|
|
}
|
|
|
|
val fabricApiConfiguration: Configuration = configurations.create("fabricApi")
|
|
|
|
repositories {
|
|
maven {
|
|
name = "Fabric"
|
|
url = uri("https://maven.fabricmc.net/")
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
"compile"(project(":worldedit-core"))
|
|
"compile"("org.apache.logging.log4j:log4j-slf4j-impl:2.8.1")
|
|
|
|
"minecraft"("com.mojang:minecraft:$minecraftVersion")
|
|
"mappings"("net.fabricmc:yarn:$yarnMappings")
|
|
"modCompile"("net.fabricmc:fabric-loader:$loaderVersion")
|
|
|
|
// [1] declare fabric-api dependency...
|
|
"fabricApi"("net.fabricmc.fabric-api:fabric-api:0.13.1+build.370-1.16")
|
|
|
|
// [2] and now we resolve it to pick out what we want :D
|
|
val wantedDependencies = setOf(
|
|
"net.fabricmc.fabric-api:fabric-api-base",
|
|
"net.fabricmc.fabric-api:fabric-events-interaction-v0",
|
|
"net.fabricmc.fabric-api:fabric-events-lifecycle-v0",
|
|
"net.fabricmc.fabric-api:fabric-networking-v0"
|
|
)
|
|
val fabricApiDependencies = fabricApiConfiguration.incoming.resolutionResult.allDependencies
|
|
.onEach {
|
|
if (it is UnresolvedDependencyResult) {
|
|
throw kotlin.IllegalStateException("Failed to resolve Fabric API", it.failure)
|
|
}
|
|
}
|
|
.filterIsInstance<ResolvedDependencyResult>()
|
|
// pick out transitive dependencies
|
|
.flatMap {
|
|
it.selected.dependencies
|
|
}
|
|
// grab the requested versions
|
|
.map { it.requested }
|
|
.filterIsInstance<ModuleComponentSelector>()
|
|
// map to standard notation
|
|
.associateByTo(
|
|
mutableMapOf(),
|
|
keySelector = { "${it.group}:${it.module}" },
|
|
valueTransform = { "${it.group}:${it.module}:${it.version}" }
|
|
)
|
|
fabricApiDependencies.keys.retainAll(wantedDependencies)
|
|
// sanity check
|
|
for (wantedDep in wantedDependencies) {
|
|
check(wantedDep in fabricApiDependencies) { "Fabric API library $wantedDep is missing!" }
|
|
}
|
|
|
|
fabricApiDependencies.values.forEach {
|
|
"include"(it)
|
|
"modImplementation"(it)
|
|
}
|
|
|
|
// Hook these up manually, because Fabric doesn't seem to quite do it properly.
|
|
"compileClasspath"("net.fabricmc:sponge-mixin:${project.versions.mixin}")
|
|
"annotationProcessor"("net.fabricmc:sponge-mixin:${project.versions.mixin}")
|
|
"annotationProcessor"("net.fabricmc:fabric-loom:${project.versions.loom}")
|
|
|
|
"testCompile"("org.mockito:mockito-core:1.9.0-rc1")
|
|
}
|
|
|
|
configure<BasePluginConvention> {
|
|
archivesBaseName = "$archivesBaseName-mc$minecraftVersion"
|
|
}
|
|
|
|
tasks.named<Copy>("processResources") {
|
|
// this will ensure that this task is redone when the versions change.
|
|
inputs.property("version", project.ext["internalVersion"])
|
|
|
|
from(sourceSets["main"].resources.srcDirs) {
|
|
include("fabric.mod.json")
|
|
expand("version" to project.ext["internalVersion"])
|
|
}
|
|
|
|
// copy everything else except the mod json
|
|
from(sourceSets["main"].resources.srcDirs) {
|
|
exclude("fabric.mod.json")
|
|
}
|
|
}
|
|
|
|
addJarManifest(includeClasspath = true)
|
|
|
|
tasks.named<ShadowJar>("shadowJar") {
|
|
archiveClassifier.set("dist-dev")
|
|
dependencies {
|
|
relocate("org.slf4j", "com.sk89q.worldedit.slf4j")
|
|
relocate("org.apache.logging.slf4j", "com.sk89q.worldedit.log4jbridge")
|
|
relocate("org.antlr.v4", "com.sk89q.worldedit.antlr4")
|
|
|
|
include(dependency("org.slf4j:slf4j-api"))
|
|
include(dependency("org.apache.logging.log4j:log4j-slf4j-impl"))
|
|
include(dependency("org.antlr:antlr4-runtime"))
|
|
}
|
|
}
|
|
|
|
tasks.register<Jar>("deobfJar") {
|
|
from(sourceSets["main"].output)
|
|
archiveClassifier.set("dev")
|
|
}
|
|
|
|
artifacts {
|
|
add("archives", tasks.named("deobfJar"))
|
|
}
|
|
|
|
tasks.register<RemapJarTask>("remapShadowJar") {
|
|
val shadowJar = tasks.getByName<ShadowJar>("shadowJar")
|
|
dependsOn(shadowJar)
|
|
input.set(shadowJar.archiveFile)
|
|
archiveFileName.set(shadowJar.archiveFileName.get().replace(Regex("-dev\\.jar$"), ".jar"))
|
|
addNestedDependencies.set(true)
|
|
remapAccessWidener.set(true)
|
|
}
|
|
|
|
tasks.named("assemble").configure {
|
|
dependsOn("remapShadowJar")
|
|
}
|