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'