2022-01-15 01:18:02 +01:00
|
|
|
import java.util.Properties
|
|
|
|
import net.fabricmc.loom.task.RemapJarTask
|
|
|
|
|
|
|
|
plugins {
|
|
|
|
java
|
|
|
|
`java-library`
|
|
|
|
id("com.diffplug.spotless") version "6.1.2"
|
|
|
|
id ("com.palantir.git-version") version "0.12.3"
|
|
|
|
id ("com.github.node-gradle.node") version "3.0.1"
|
|
|
|
id ("com.github.johnrengelman.shadow") version "7.1.2"
|
|
|
|
id ("fabric-loom") version "0.8-SNAPSHOT"
|
|
|
|
}
|
|
|
|
|
|
|
|
val versionDetails: groovy.lang.Closure<com.palantir.gradle.gitversion.VersionDetails> by extra
|
|
|
|
val git = versionDetails()
|
|
|
|
|
|
|
|
val releaseProperties = Properties()
|
|
|
|
releaseProperties.load(file("../../release.properties").inputStream())
|
|
|
|
|
|
|
|
group = "de.bluecolored.bluemap.fabric"
|
|
|
|
version = releaseProperties["version"].toString()
|
|
|
|
|
2022-01-16 14:20:27 +01:00
|
|
|
val javaTarget = 11
|
2022-01-15 01:18:02 +01:00
|
|
|
java {
|
|
|
|
sourceCompatibility = JavaVersion.toVersion(javaTarget)
|
|
|
|
targetCompatibility = JavaVersion.toVersion(javaTarget)
|
|
|
|
|
|
|
|
withSourcesJar()
|
|
|
|
}
|
|
|
|
|
|
|
|
repositories {
|
|
|
|
mavenCentral()
|
|
|
|
maven {
|
|
|
|
setUrl("https://libraries.minecraft.net")
|
|
|
|
}
|
|
|
|
maven {
|
|
|
|
setUrl("https://jitpack.io")
|
|
|
|
}
|
|
|
|
maven {
|
|
|
|
setUrl("https://maven.fabricmc.net/")
|
|
|
|
}
|
2022-01-16 14:20:27 +01:00
|
|
|
maven {
|
|
|
|
setUrl("https://oss.sonatype.org/content/repositories/snapshots")
|
|
|
|
}
|
2022-01-15 01:18:02 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
val shadowInclude: Configuration by configurations.creating
|
|
|
|
|
|
|
|
configurations {
|
|
|
|
implementation.get().extendsFrom(shadowInclude)
|
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
|
|
|
shadowInclude ("de.bluecolored.bluemap.common:BlueMapCommon") {
|
|
|
|
//exclude dependencies provided by fabric
|
|
|
|
exclude (group = "com.google.guava", module = "guava")
|
|
|
|
exclude (group = "com.google.code.gson", module = "gson")
|
|
|
|
exclude (group = "org.apache.commons", module = "commons-lang3")
|
|
|
|
exclude (group = "commons-io", module = "commons-io")
|
|
|
|
exclude (group = "com.mojang", module = "brigadier")
|
|
|
|
}
|
|
|
|
|
|
|
|
minecraft ("com.mojang:minecraft:1.15.2")
|
|
|
|
mappings ("net.fabricmc:yarn:1.15.2+build.17:v2")
|
|
|
|
modImplementation ("net.fabricmc:fabric-loader:0.9.2+build.206")
|
|
|
|
modImplementation ("net.fabricmc.fabric-api:fabric-api:0.19.0+build.325-1.15")
|
2022-01-16 14:20:27 +01:00
|
|
|
modImplementation("me.lucko:fabric-permissions-api:0.1-SNAPSHOT")
|
2022-01-15 01:18:02 +01:00
|
|
|
|
|
|
|
testImplementation ("org.junit.jupiter:junit-jupiter:5.8.2")
|
|
|
|
testRuntimeOnly ("org.junit.jupiter:junit-jupiter-engine:5.8.2")
|
|
|
|
}
|
|
|
|
|
|
|
|
spotless {
|
|
|
|
java {
|
|
|
|
target ("src/*/java/**/*.java")
|
|
|
|
|
|
|
|
licenseHeaderFile("../../HEADER")
|
|
|
|
indentWithSpaces()
|
|
|
|
trimTrailingWhitespace()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
tasks.withType(JavaCompile::class).configureEach {
|
|
|
|
options.apply {
|
|
|
|
encoding = "utf-8"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
tasks.withType(AbstractArchiveTask::class).configureEach {
|
|
|
|
isReproducibleFileOrder = true
|
|
|
|
isPreserveFileTimestamps = false
|
|
|
|
}
|
|
|
|
|
|
|
|
tasks.test {
|
|
|
|
useJUnitPlatform()
|
|
|
|
}
|
|
|
|
|
|
|
|
tasks.processResources {
|
|
|
|
inputs.property ("version", project.version)
|
|
|
|
|
|
|
|
filesMatching("fabric.mod.json") {
|
|
|
|
expand ("version" to project.version)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
tasks.shadowJar {
|
|
|
|
configurations = listOf(shadowInclude)
|
|
|
|
|
|
|
|
//relocate ("com.flowpowered.math", "de.bluecolored.shadow.flowpowered.math") //DON"T relocate this, because the API depends on it
|
|
|
|
relocate ("com.typesafe.config", "de.bluecolored.shadow.typesafe.config")
|
|
|
|
relocate ("net.querz.nbt", "de.bluecolored.shadow.querz.nbt")
|
|
|
|
relocate ("org.spongepowered.configurate", "de.bluecolored.shadow.configurate")
|
|
|
|
relocate ("com.github.benmanes.caffeine", "de.bluecolored.shadow.benmanes.caffeine")
|
|
|
|
relocate ("org.aopalliance", "de.bluecolored.shadow.aopalliance")
|
|
|
|
relocate ("javax.inject", "de.bluecolored.shadow.javax.inject")
|
|
|
|
relocate ("org.checkerframework", "de.bluecolored.shadow.checkerframework")
|
|
|
|
relocate ("org.codehaus", "de.bluecolored.shadow.codehaus")
|
|
|
|
relocate ("io.leangen.geantyref", "de.bluecolored.shadow.geantyref")
|
|
|
|
|
|
|
|
relocate ("com.google.errorprone", "de.bluecolored.shadow.google.errorprone")
|
|
|
|
relocate ("com.google.inject", "de.bluecolored.shadow.google.inject")
|
|
|
|
|
|
|
|
relocate ("org.apache.commons.dbcp2", "de.bluecolored.shadow.apache.commons.dbcp2")
|
|
|
|
relocate ("org.apache.commons.logging", "de.bluecolored.shadow.apache.commons.logging")
|
|
|
|
relocate ("org.apache.commons.pool2", "de.bluecolored.shadow.apache.commons.pool2")
|
|
|
|
}
|
|
|
|
|
|
|
|
tasks.register("remappedShadowJar", type = RemapJarTask::class) {
|
|
|
|
destinationDirectory.set(file("../../build/release"))
|
|
|
|
archiveFileName.set("BlueMap-${archiveVersion.get()}-${project.name}.jar")
|
|
|
|
dependsOn (tasks.shadowJar)
|
|
|
|
input.set(tasks.shadowJar.get().archiveFile.get())
|
|
|
|
addNestedDependencies.set(true)
|
|
|
|
}
|
|
|
|
|
|
|
|
tasks.register("release") {
|
|
|
|
dependsOn(tasks["remappedShadowJar"])
|
|
|
|
}
|