2022-07-26 22:04:01 +02:00
|
|
|
import java.io.IOException
|
2022-12-13 16:54:31 +01:00
|
|
|
import java.util.concurrent.TimeoutException
|
2022-01-15 01:18:02 +01:00
|
|
|
|
|
|
|
plugins {
|
|
|
|
java
|
|
|
|
`java-library`
|
2022-12-04 00:18:45 +01:00
|
|
|
`maven-publish`
|
2022-01-15 01:18:02 +01:00
|
|
|
id("com.diffplug.spotless") version "6.1.2"
|
|
|
|
}
|
|
|
|
|
2022-07-26 22:04:01 +02:00
|
|
|
fun String.runCommand(): String = ProcessBuilder(split("\\s(?=(?:[^'\"`]*(['\"`])[^'\"`]*\\1)*[^'\"`]*$)".toRegex()))
|
|
|
|
.directory(projectDir)
|
|
|
|
.redirectOutput(ProcessBuilder.Redirect.PIPE)
|
|
|
|
.redirectError(ProcessBuilder.Redirect.PIPE)
|
|
|
|
.start()
|
2022-12-13 16:54:31 +01:00
|
|
|
.apply {
|
|
|
|
if (!waitFor(10, TimeUnit.SECONDS)) {
|
|
|
|
throw TimeoutException("Failed to execute command: '" + this@runCommand + "'")
|
|
|
|
}
|
|
|
|
}
|
2022-07-26 22:04:01 +02:00
|
|
|
.run {
|
|
|
|
val error = errorStream.bufferedReader().readText().trim()
|
|
|
|
if (error.isNotEmpty()) {
|
|
|
|
throw IOException(error)
|
|
|
|
}
|
|
|
|
inputStream.bufferedReader().readText().trim()
|
|
|
|
}
|
|
|
|
|
|
|
|
val gitHash = "git rev-parse --verify HEAD".runCommand()
|
2024-02-07 20:43:37 +01:00
|
|
|
var clean = false;
|
|
|
|
try {
|
|
|
|
clean = "git status --porcelain".runCommand().isEmpty();
|
|
|
|
} catch (ex: TimeoutException) {
|
|
|
|
println("Failed to run 'git status --porcelain', assuming dirty version.")
|
|
|
|
}
|
2023-05-19 12:14:31 +02:00
|
|
|
val lastTag = if ("git tag".runCommand().isEmpty()) "" else "git describe --tags --abbrev=0".runCommand()
|
|
|
|
val lastVersion = if (lastTag.isEmpty()) "dev" else lastTag.substring(1) // remove the leading 'v'
|
2022-07-27 15:10:23 +02:00
|
|
|
val commits = "git rev-list --count $lastTag..HEAD".runCommand()
|
2022-07-26 22:04:01 +02:00
|
|
|
println("Git hash: $gitHash" + if (clean) "" else " (dirty)")
|
2022-01-15 01:18:02 +01:00
|
|
|
|
|
|
|
group = "de.bluecolored.bluemap.core"
|
2022-07-27 15:10:23 +02:00
|
|
|
version = lastVersion +
|
|
|
|
(if (commits == "0") "" else "-$commits") +
|
|
|
|
(if (clean) "" else "-dirty")
|
|
|
|
|
|
|
|
System.setProperty("bluemap.version", version.toString())
|
2022-07-27 11:39:22 +02:00
|
|
|
println("Version: $version")
|
2022-01-15 01:18:02 +01:00
|
|
|
|
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)
|
|
|
|
}
|
|
|
|
|
|
|
|
repositories {
|
|
|
|
mavenCentral()
|
|
|
|
maven {
|
|
|
|
setUrl("https://jitpack.io")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@Suppress("GradlePackageUpdate")
|
|
|
|
dependencies {
|
|
|
|
api ("com.github.ben-manes.caffeine:caffeine:2.8.5")
|
|
|
|
api ("org.apache.commons:commons-lang3:3.6")
|
|
|
|
api ("commons-io:commons-io:2.5")
|
2022-10-10 18:00:03 +02:00
|
|
|
api ("org.spongepowered:configurate-hocon:4.1.2")
|
|
|
|
api ("org.spongepowered:configurate-gson:4.1.2")
|
2024-02-07 20:43:37 +01:00
|
|
|
api ("com.github.BlueMap-Minecraft:BlueNBT:v1.3.0")
|
2022-01-15 01:18:02 +01:00
|
|
|
api ("org.apache.commons:commons-dbcp2:2.9.0")
|
2023-05-09 22:52:29 +02:00
|
|
|
api ("io.airlift:aircompressor:0.24")
|
2024-02-07 20:43:37 +01:00
|
|
|
api ("org.lz4:lz4-java:1.8.0")
|
2022-01-15 01:18:02 +01:00
|
|
|
|
2022-07-24 12:10:00 +02:00
|
|
|
api ("de.bluecolored.bluemap.api:BlueMapAPI")
|
|
|
|
|
|
|
|
compileOnly ("org.jetbrains:annotations:23.0.0")
|
2024-02-23 17:32:07 +01:00
|
|
|
compileOnly ("org.projectlombok:lombok:1.18.30")
|
2024-02-07 20:43:37 +01:00
|
|
|
|
2024-02-23 17:32:07 +01:00
|
|
|
annotationProcessor ("org.projectlombok:lombok:1.18.30")
|
2022-05-28 21:55:41 +02:00
|
|
|
|
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")
|
2024-02-23 17:32:07 +01:00
|
|
|
testCompileOnly ("org.projectlombok:lombok:1.18.30")
|
|
|
|
testAnnotationProcessor ("org.projectlombok:lombok:1.18.30")
|
2022-01-15 01:18:02 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
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 {
|
2022-07-30 16:07:10 +02:00
|
|
|
outputs.upToDateWhen { false }
|
2022-01-15 01:18:02 +01:00
|
|
|
from("src/main/resources") {
|
|
|
|
include("de/bluecolored/bluemap/version.json")
|
|
|
|
duplicatesStrategy = DuplicatesStrategy.INCLUDE
|
|
|
|
|
|
|
|
expand (
|
|
|
|
"version" to project.version,
|
2022-07-26 22:04:01 +02:00
|
|
|
"gitHash" to gitHash + if (clean) "" else " (dirty)",
|
2022-01-15 01:18:02 +01:00
|
|
|
)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
//resource Extensions
|
|
|
|
val resourceIds: Array<String> = arrayOf(
|
2023-12-06 19:24:07 +01:00
|
|
|
"1_13", "1_15", "1_16", "1_18", "1_20_3"
|
2022-01-15 01:18:02 +01:00
|
|
|
)
|
|
|
|
|
|
|
|
tasks.register("zipResourceExtensions") {
|
|
|
|
resourceIds.forEach {
|
|
|
|
dependsOn("zipResourceExtensions$it")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
resourceIds.forEach {
|
|
|
|
zipResourcesTask(it)
|
|
|
|
}
|
|
|
|
|
|
|
|
fun zipResourcesTask(resourceId: String) {
|
|
|
|
tasks.register ("zipResourceExtensions$resourceId", type = Zip::class) {
|
|
|
|
from(fileTree("src/main/resourceExtensions/mc$resourceId"))
|
|
|
|
archiveFileName.set("resourceExtensions.zip")
|
|
|
|
destinationDirectory.set(file("src/main/resources/de/bluecolored/bluemap/mc$resourceId/"))
|
|
|
|
outputs.upToDateWhen{ false }
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
//always update the zip before build
|
|
|
|
tasks.processResources {
|
|
|
|
dependsOn("zipResourceExtensions")
|
2022-12-04 00:18:45 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
publishing {
|
|
|
|
publications {
|
|
|
|
create<MavenPublication>("maven") {
|
|
|
|
groupId = project.group.toString()
|
|
|
|
artifactId = project.name
|
|
|
|
version = project.version.toString()
|
|
|
|
|
|
|
|
from(components["java"])
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|