[FEATURE] Add mariadb connector

This commit is contained in:
Gravita 2024-04-25 02:09:17 +07:00
parent 765f1a9d8f
commit 095a5aef8b
2 changed files with 2 additions and 0 deletions

View file

@ -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: '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: 'org.slf4j', name: 'slf4j-api', version: rootProject['verSlf4j']
bundle group: 'com.mysql', name: 'mysql-connector-j', version: rootProject['verMySQLConn'] 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: 'org.postgresql', name: 'postgresql', version: rootProject['verPostgreSQLConn']
bundle group: 'com.h2database', name: 'h2', version: rootProject['verH2Conn'] bundle group: 'com.h2database', name: 'h2', version: rootProject['verH2Conn']
bundle group: 'com.guardsquare', name: 'proguard-base', version: rootProject['verProguard'] bundle group: 'com.guardsquare', name: 'proguard-base', version: rootProject['verProguard']

View file

@ -13,6 +13,7 @@
verSlf4j = '2.0.9' verSlf4j = '2.0.9'
verLog4j = '2.20.0' verLog4j = '2.20.0'
verMySQLConn = '8.3.0' verMySQLConn = '8.3.0'
verMariaDBConn = '3.3.3'
verPostgreSQLConn = '42.7.1' verPostgreSQLConn = '42.7.1'
verH2Conn = '2.2.224' verH2Conn = '2.2.224'
verProguard = '7.4.1' verProguard = '7.4.1'