AuthMeVelocity/common/build.gradle.kts
dependabot[bot] c27357bc56
build(deps): Bump slf4j-api from 2.0.3 to 2.0.4 in /common
Bumps [slf4j-api](https://github.com/qos-ch/slf4j) from 2.0.3 to 2.0.4.
- [Release notes](https://github.com/qos-ch/slf4j/releases)
- [Commits](https://github.com/qos-ch/slf4j/compare/v_2.0.3...v_2.0.4)

---
updated-dependencies:
- dependency-name: org.slf4j:slf4j-api
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
2022-11-22 00:25:05 +00:00

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.4")
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)
}