diff options
author | mdxd44 <ogurec332@mail.ru> | 2021-12-27 20:29:17 +0900 |
---|---|---|
committer | mdxd44 <ogurec332@mail.ru> | 2021-12-27 20:29:17 +0900 |
commit | ceedcd0980da44624f613ab3bc845fbe859d1687 (patch) | |
tree | 7db7af3136a0ebf946fb4c3ec4c011d78569d0cd | |
parent | fbcc29dba9e372058a588427c279c00a327558fd (diff) | |
download | LimboAuth-ceedcd0980da44624f613ab3bc845fbe859d1687.tar.gz LimboAuth-ceedcd0980da44624f613ab3bc845fbe859d1687.tar.bz2 LimboAuth-ceedcd0980da44624f613ab3bc845fbe859d1687.zip |
Release candidate 1.
-rw-r--r-- | build.gradle | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/build.gradle b/build.gradle index 2fd5eec..52594fa 100644 --- a/build.gradle +++ b/build.gradle @@ -9,7 +9,7 @@ plugins { } setGroup("net.elytrium") -setVersion("1.0.3-SNAPSHOT") +setVersion("1.0.3-rc1") compileJava { getOptions().setEncoding("UTF-8") @@ -34,15 +34,15 @@ repositories { } dependencies { - compileOnly("net.elytrium:limboapi-api:1.0.3-SNAPSHOT") + compileOnly("net.elytrium:limboapi-api:1.0.3-rc-1") - compileOnly("com.velocitypowered:velocity-api:3.1.0") - annotationProcessor("com.velocitypowered:velocity-api:3.1.0") + compileOnly("com.velocitypowered:velocity-api:3.1.2-SNAPSHOT") + annotationProcessor("com.velocitypowered:velocity-api:3.1.2-SNAPSHOT") implementation("at.favre.lib:bcrypt:0.9.0") implementation("dev.samstevens.totp:totp:1.7.1") - implementation("com.j256.ormlite:ormlite-jdbc:5.7") + implementation("com.j256.ormlite:ormlite-jdbc:6.1") implementation("com.h2database:h2:1.4.200") implementation("mysql:mysql-connector-java:8.0.27") @@ -70,7 +70,7 @@ shadowJar { minimize() // Why are we increasing the size of the plugin if we can do that? :thinking: - relocate("org.bstats", "net.elytrium.limboapi.bstats") + relocate("org.bstats", "net.elytrium.limboapi.thirdparty.org.bstats") exclude("org/bstats/**") relocate("at.favre.lib", "net.elytrium.limboauth.thirdparty.at.favre.lib") |