From 095a5aef8b43dd64e7b2baa214b7ca31ea00a440 Mon Sep 17 00:00:00 2001 From: Gravita <12893402+gravit0@users.noreply.github.com> Date: Thu, 25 Apr 2024 02:09:17 +0700 Subject: [PATCH] [FEATURE] Add mariadb connector --- LaunchServer/build.gradle | 1 + props.gradle | 1 + 2 files changed, 2 insertions(+) diff --git a/LaunchServer/build.gradle b/LaunchServer/build.gradle index 44b75deb..2db95539 100644 --- a/LaunchServer/build.gradle +++ b/LaunchServer/build.gradle @@ -83,6 +83,7 @@ pack project(':LauncherAPI') bundle group: 'io.netty', name: 'netty-transport-native-epoll', version: rootProject['verNetty'], classifier: 'linux-x86_64' bundle group: 'org.slf4j', name: 'slf4j-api', version: rootProject['verSlf4j'] bundle group: 'com.mysql', name: 'mysql-connector-j', version: rootProject['verMySQLConn'] + bundle group: 'org.mariadb.jdbc', name: 'mariadb-java-client', version: rootProject['verMariaDBConn'] bundle group: 'org.postgresql', name: 'postgresql', version: rootProject['verPostgreSQLConn'] bundle group: 'com.h2database', name: 'h2', version: rootProject['verH2Conn'] bundle group: 'com.guardsquare', name: 'proguard-base', version: rootProject['verProguard'] diff --git a/props.gradle b/props.gradle index 1694aeb1..366c4453 100644 --- a/props.gradle +++ b/props.gradle @@ -13,6 +13,7 @@ verSlf4j = '2.0.9' verLog4j = '2.20.0' verMySQLConn = '8.3.0' + verMariaDBConn = '3.3.3' verPostgreSQLConn = '42.7.1' verH2Conn = '2.2.224' verProguard = '7.4.1'