Bumps [slf4j-api](https://github.com/qos-ch/slf4j) from 1.7.36 to 2.0.0. - [Release notes](https://github.com/qos-ch/slf4j/releases) - [Commits](https://github.com/qos-ch/slf4j/compare/v_1.7.36...v_2.0.0) --- updated-dependencies: - dependency-name: org.slf4j:slf4j-api dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
30 lines
902 B
Plaintext
30 lines
902 B
Plaintext
plugins {
|
|
id("net.kyori.blossom") version "1.3.1"
|
|
id("com.github.johnrengelman.shadow") version "7.1.2"
|
|
}
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
maven("https://repo.alessiodp.com/releases/")
|
|
}
|
|
|
|
dependencies {
|
|
compileOnly("org.spongepowered:configurate-hocon:4.1.2")
|
|
compileOnly("org.slf4j:slf4j-api:2.0.0")
|
|
compileOnly("net.byteflux:libby-core:1.1.5")
|
|
compileOnly("net.kyori:adventure-api:4.11.0")
|
|
}
|
|
|
|
tasks {
|
|
shadowJar {
|
|
relocate("net.byteflux.libby", "me.adrianed.authmevelocity.libs.libby")
|
|
relocate("org.spongepowered", "me.adrianed.authmevelocity.libs.sponge")
|
|
relocate("io.leangen.geantyref", "me.adrianed.authmevelocity.libs.geantyref")
|
|
}
|
|
}
|
|
|
|
blossom {
|
|
replaceTokenIn("src/main/java/me/adrianed/authmevelocity/common/Constants.java")
|
|
replaceToken("{version}", project.version)
|
|
replaceToken("{description}", project.description)
|
|
} |