mirror of
https://github.com/proxiodev/RedisBungee.git
synced 2024-11-05 04:48:02 +00:00
94 lines
2.4 KiB
Plaintext
94 lines
2.4 KiB
Plaintext
import java.io.ByteArrayOutputStream
|
|
|
|
plugins {
|
|
`java-library`
|
|
`maven-publish`
|
|
id("net.kyori.blossom") version "1.2.0"
|
|
|
|
}
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
}
|
|
|
|
|
|
val jedisVersion = "5.1.2"
|
|
val configurateVersion = "3.7.3"
|
|
val guavaVersion = "31.1-jre"
|
|
val okHttpVersion = "2.7.5"
|
|
val caffeineVersion = "3.1.8"
|
|
val adventureVersion = "4.14.0"
|
|
|
|
dependencies {
|
|
api("com.google.guava:guava:$guavaVersion")
|
|
api("redis.clients:jedis:$jedisVersion")
|
|
api("com.squareup.okhttp:okhttp:$okHttpVersion")
|
|
api("org.spongepowered:configurate-yaml:$configurateVersion")
|
|
api("com.github.ben-manes.caffeine:caffeine:$caffeineVersion")
|
|
|
|
api("net.kyori:adventure-api:$adventureVersion")
|
|
api("net.kyori:adventure-text-serializer-gson:$adventureVersion")
|
|
api("net.kyori:adventure-text-serializer-legacy:$adventureVersion")
|
|
api("net.kyori:adventure-text-serializer-plain:$adventureVersion")
|
|
api("net.kyori:adventure-text-minimessage:$adventureVersion")
|
|
|
|
}
|
|
|
|
description = "RedisBungee interfaces"
|
|
|
|
blossom {
|
|
replaceToken("@version@", "$version")
|
|
// GIT
|
|
var commit: String = ""
|
|
val commitStdout = ByteArrayOutputStream()
|
|
rootProject.exec {
|
|
standardOutput = commitStdout
|
|
commandLine("git", "rev-parse", "HEAD")
|
|
}
|
|
commit = "$commitStdout".replace("\n", "") // for some reason it adds new line so remove it.
|
|
commitStdout.close()
|
|
replaceToken("@git_commit@", commit)
|
|
}
|
|
|
|
java {
|
|
withJavadocJar()
|
|
withSourcesJar()
|
|
}
|
|
|
|
tasks {
|
|
// thanks again for paper too
|
|
withType<Javadoc> {
|
|
val options = options as StandardJavadocDocletOptions
|
|
options.use()
|
|
options.isDocFilesSubDirs = true
|
|
options.links(
|
|
"https://configurate.aoeu.xyz/$configurateVersion/apidocs/", // configurate
|
|
"https://javadoc.io/doc/redis.clients/jedis/$jedisVersion/", // jedis
|
|
"https://guava.dev/releases/$guavaVersion/api/docs/", // guava
|
|
"https://javadoc.io/doc/com.github.ben-manes.caffeine/caffeine",
|
|
"https://jd.advntr.dev/api/$adventureVersion"
|
|
|
|
)
|
|
|
|
}
|
|
|
|
compileJava {
|
|
options.encoding = Charsets.UTF_8.name()
|
|
options.release.set(17)
|
|
}
|
|
javadoc {
|
|
options.encoding = Charsets.UTF_8.name()
|
|
}
|
|
processResources {
|
|
filteringCharset = Charsets.UTF_8.name()
|
|
}
|
|
}
|
|
|
|
publishing {
|
|
publications {
|
|
create<MavenPublication>("maven") {
|
|
from(components["java"])
|
|
}
|
|
}
|
|
}
|