diff options
author | Petr Ilin <hevav@hevav.dev> | 2022-12-24 20:19:03 +0300 |
---|---|---|
committer | Petr Ilin <hevav@hevav.dev> | 2022-12-24 20:19:03 +0300 |
commit | 06f2a95f5d8c4eb6cd13656cd6dbb0322c4f3cdc (patch) | |
tree | 5e1588441e1390b695146ebc4ff99c2c9a09557e /build.gradle | |
parent | 8ff7f25c006dd367e1b35e1d13e105900b7c3d60 (diff) | |
download | LimboAuth-06f2a95f5d8c4eb6cd13656cd6dbb0322c4f3cdc.tar.gz LimboAuth-06f2a95f5d8c4eb6cd13656cd6dbb0322c4f3cdc.tar.bz2 LimboAuth-06f2a95f5d8c4eb6cd13656cd6dbb0322c4f3cdc.zip |
H2 v1->v2 migration, external database libraries
Diffstat (limited to 'build.gradle')
-rw-r--r-- | build.gradle | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/build.gradle b/build.gradle index f63c6da..d2f7bf8 100644 --- a/build.gradle +++ b/build.gradle @@ -51,10 +51,6 @@ dependencies { implementation("com.j256.ormlite:ormlite-jdbc:6.1") - implementation("com.h2database:h2:1.4.200") - implementation('mysql:mysql-connector-java:8.0.31') - implementation('org.postgresql:postgresql:42.5.1') - implementation("org.bstats:bstats-velocity:3.0.0") implementation("de.mkammerer:argon2-jvm-nolibs:2.11") @@ -100,7 +96,6 @@ shadowJar { relocate("at.favre.lib", "net.elytrium.limboauth.thirdparty.at.favre.lib") relocate("com.j256.ormlite", "net.elytrium.limboauth.thirdparty.com.j256.ormlite") - relocate("com.mysql", "net.elytrium.limboauth.thirdparty.com.mysql") relocate("com.sun.jna", "net.elytrium.limboauth.thirdparty.com.sun.jna") { exclude("com.sun.jna.Native") // For compatibility with native methods. } @@ -108,8 +103,6 @@ shadowJar { relocate("dev.samstevens.totp", "net.elytrium.limboauth.thirdparty.dev.samstevens.totp") relocate("org.apache.commons.codec", "net.elytrium.limboauth.thirdparty.org.apache.commons.codec") relocate("org.bstats", "net.elytrium.limboauth.thirdparty.org.bstats") - relocate("org.h2", "net.elytrium.limboauth.thirdparty.org.h2") - relocate("org.postgresql", "net.elytrium.limboauth.thirdparty.org.postgresql") } license { |