diff options
author | Simon Rettberg | 2022-10-18 16:39:14 +0200 |
---|---|---|
committer | Simon Rettberg | 2022-10-18 16:39:14 +0200 |
commit | c0e1aaa4d80f5ca7e3b37b038fefa0c3ad59f637 (patch) | |
tree | b7ebd5dcaed27596ea728283c6e3296120a6aecf /dozentenmodulserver | |
parent | [server] Switch mltk repo URL to HTTPS (diff) | |
download | tutor-module-c0e1aaa4d80f5ca7e3b37b038fefa0c3ad59f637.tar.gz tutor-module-c0e1aaa4d80f5ca7e3b37b038fefa0c3ad59f637.tar.xz tutor-module-c0e1aaa4d80f5ca7e3b37b038fefa0c3ad59f637.zip |
[server] Switch from mysql to mariadb connector
This conventiently also fixes the version range crap
where for unknown reasons, maven wants to resolve [8.0,8.99]
to the currently non-existent version 8.0.31 and then
fails building the project.
Diffstat (limited to 'dozentenmodulserver')
-rw-r--r-- | dozentenmodulserver/pom.xml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/dozentenmodulserver/pom.xml b/dozentenmodulserver/pom.xml index 9c3f7c28..45b4d729 100644 --- a/dozentenmodulserver/pom.xml +++ b/dozentenmodulserver/pom.xml @@ -209,9 +209,9 @@ <dependencies> <dependency> - <groupId>mysql</groupId> - <artifactId>mysql-connector-java</artifactId> - <version>[8.0,9.0)</version> + <groupId>org.mariadb.jdbc</groupId> + <artifactId>mariadb-java-client</artifactId> + <version>[3.0.8,3.99.99]</version> <scope>compile</scope> </dependency> <dependency> |