AuthMeVelocity/velocity/build.gradle.kts
dependabot[bot] bf34579467
build(deps): Bump MiniPlaceholders from 1.2.1 to 1.3.1 in /velocity
Bumps [MiniPlaceholders](https://github.com/MiniPlaceholders/MiniPlaceholders) from 1.2.1 to 1.3.1.
- [Release notes](https://github.com/MiniPlaceholders/MiniPlaceholders/releases)
- [Commits](https://github.com/MiniPlaceholders/MiniPlaceholders/compare/1.2.1...1.3.1)

---
updated-dependencies:
- dependency-name: com.github.4drian3d:MiniPlaceholders
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
2022-08-29 23:46:56 +00:00

31 lines
1.0 KiB
Plaintext

plugins {
id("com.github.johnrengelman.shadow") version "7.1.2"
}
repositories {
maven("https://repo.codemc.org/repository/maven-public/")
maven("https://repo.alessiodp.com/releases/")
maven("https://jitpack.io")
}
dependencies {
compileOnly(project(":authmevelocity-common"))
compileOnly(project(":authmevelocity-api-velocity"))
compileOnly("com.velocitypowered:velocity-api:3.1.2-SNAPSHOT")
compileOnly("com.github.4drian3d:MiniPlaceholders:1.3.1")
compileOnly("com.github.games647:fastlogin.velocity:1.11-SNAPSHOT")
shadow("net.byteflux:libby-velocity:1.1.5")
shadow("org.bstats:bstats-velocity:3.0.0")
annotationProcessor("com.velocitypowered:velocity-api:3.1.2-SNAPSHOT")
}
tasks {
shadowJar {
duplicatesStrategy = DuplicatesStrategy.EXCLUDE
relocate("net.byteflux.libby", "me.adrianed.authmevelocity.libs.libby")
relocate("org.bstats", "me.adrianed.authmevelocity.libs.bstats")
configurations = listOf(project.configurations.shadow.get())
}
}