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>
41 lines
1.2 KiB
Plaintext
41 lines
1.2 KiB
Plaintext
plugins {
|
|
id("net.minecrell.plugin-yml.bukkit") version "0.5.2"
|
|
id("com.github.johnrengelman.shadow") version "7.1.2"
|
|
}
|
|
|
|
repositories {
|
|
maven("https://jitpack.io")
|
|
maven("https://repo.codemc.org/repository/maven-public/")
|
|
maven("https://repo.alessiodp.com/releases/")
|
|
}
|
|
|
|
dependencies {
|
|
compileOnly(project(":authmevelocity-common"))
|
|
compileOnly(project(":authmevelocity-api-paper"))
|
|
compileOnly("io.papermc.paper:paper-api:1.19.1-R0.1-SNAPSHOT")
|
|
compileOnly("fr.xephi:authme:5.6.0-SNAPSHOT")
|
|
compileOnly("com.github.4drian3d:MiniPlaceholders:1.3.1")
|
|
shadow("net.byteflux:libby-bukkit:1.1.5")
|
|
}
|
|
|
|
bukkit {
|
|
name = "AuthMeVelocity"
|
|
main = "me.adrianed.authmevelocity.paper.AuthMeVelocityPlugin"
|
|
apiVersion = "1.13"
|
|
website = "https://github.com/4drian3d/AuthMeVelocity"
|
|
description = project.description as String
|
|
authors = listOf("xQuickGlare", "4drian3d")
|
|
softDepend = listOf("MiniPlaceholders")
|
|
depend = listOf("AuthMe")
|
|
version = project.version as String
|
|
}
|
|
|
|
tasks {
|
|
shadowJar {
|
|
duplicatesStrategy = DuplicatesStrategy.EXCLUDE
|
|
relocate("net.byteflux.libby", "me.adrianed.authmevelocity.libs.libby")
|
|
configurations = listOf(project.configurations.shadow.get())
|
|
}
|
|
}
|
|
|