2019-07-11 00:29:43 +00:00
|
|
|
import com.github.jengelman.gradle.plugins.shadow.tasks.ShadowJar
|
|
|
|
import net.fabricmc.loom.task.RemapJarTask
|
|
|
|
|
|
|
|
applyPlatformAndCoreConfiguration()
|
|
|
|
applyShadowConfiguration()
|
|
|
|
|
|
|
|
apply(plugin = "fabric-loom")
|
2020-08-14 19:29:15 +00:00
|
|
|
apply(plugin = "java-library")
|
2019-07-11 00:29:43 +00:00
|
|
|
|
2020-02-11 01:11:08 +00:00
|
|
|
val minecraftVersion = "1.15.2"
|
2020-03-23 04:02:04 +00:00
|
|
|
val yarnMappings = "1.15.2+build.14:v2"
|
|
|
|
val loaderVersion = "0.7.8+build.189"
|
2019-07-11 00:29:43 +00:00
|
|
|
|
|
|
|
configurations.all {
|
|
|
|
resolutionStrategy {
|
|
|
|
force("com.google.guava:guava:21.0")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
2021-01-25 10:14:09 +00:00
|
|
|
"api"(project(":worldedit-core"))
|
|
|
|
"implementation"(enforcedPlatform("org.apache.logging.log4j:log4j-bom:2.8.1") {
|
|
|
|
because("Mojang provides Log4J, we bump to match Forge")
|
|
|
|
})
|
|
|
|
"implementation"("org.apache.logging.log4j:log4j-slf4j-impl")
|
2019-07-11 00:29:43 +00:00
|
|
|
|
|
|
|
"minecraft"("com.mojang:minecraft:$minecraftVersion")
|
|
|
|
"mappings"("net.fabricmc:yarn:$yarnMappings")
|
|
|
|
"modCompile"("net.fabricmc:fabric-loader:$loaderVersion")
|
|
|
|
|
2019-09-20 01:11:23 +00:00
|
|
|
listOf(
|
2020-02-11 01:11:08 +00:00
|
|
|
"net.fabricmc.fabric-api:fabric-api-base:0.1.2+28f8190f42",
|
|
|
|
"net.fabricmc.fabric-api:fabric-events-interaction-v0:0.2.6+12515ed975",
|
|
|
|
"net.fabricmc.fabric-api:fabric-events-lifecycle-v0:0.1.2+b7f9825de8",
|
|
|
|
"net.fabricmc.fabric-api:fabric-networking-v0:0.1.7+12515ed975"
|
2019-09-20 01:11:23 +00:00
|
|
|
).forEach {
|
|
|
|
"include"(it)
|
|
|
|
"modImplementation"(it)
|
|
|
|
}
|
2019-07-11 00:29:43 +00:00
|
|
|
|
2019-09-22 20:42:26 +00:00
|
|
|
// 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}")
|
|
|
|
|
2019-07-11 00:29:43 +00:00
|
|
|
"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")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-12-16 11:00:12 +00:00
|
|
|
tasks.named<Jar>("jar") {
|
|
|
|
manifest {
|
|
|
|
attributes("Class-Path" to CLASSPATH,
|
|
|
|
"WorldEdit-Version" to project.version)
|
|
|
|
}
|
|
|
|
}
|
2019-07-11 00:29:43 +00:00
|
|
|
|
|
|
|
tasks.named<ShadowJar>("shadowJar") {
|
|
|
|
archiveClassifier.set("dist-dev")
|
|
|
|
dependencies {
|
|
|
|
relocate("org.slf4j", "com.sk89q.worldedit.slf4j")
|
2021-01-25 10:14:09 +00:00
|
|
|
relocate("org.apache.logging.slf4j", "com.sk89q.worldedit.l4j")
|
2019-10-19 07:48:49 +00:00
|
|
|
relocate("org.antlr.v4", "com.sk89q.worldedit.antlr4")
|
2019-07-11 00:29:43 +00:00
|
|
|
|
|
|
|
include(dependency("org.slf4j:slf4j-api"))
|
|
|
|
include(dependency("org.apache.logging.log4j:log4j-slf4j-impl"))
|
2019-10-19 07:48:49 +00:00
|
|
|
include(dependency("org.antlr:antlr4-runtime"))
|
2019-07-11 00:29:43 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
tasks.register<Jar>("deobfJar") {
|
|
|
|
from(sourceSets["main"].output)
|
|
|
|
archiveClassifier.set("dev")
|
|
|
|
}
|
|
|
|
|
|
|
|
artifacts {
|
|
|
|
add("archives", tasks.named("deobfJar"))
|
|
|
|
}
|
|
|
|
|
2019-09-20 01:11:23 +00:00
|
|
|
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)
|
2019-07-11 00:29:43 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
tasks.named("assemble").configure {
|
|
|
|
dependsOn("remapShadowJar")
|
|
|
|
}
|