diff options
author | Simon Rettberg | 2022-10-18 16:53:33 +0200 |
---|---|---|
committer | Simon Rettberg | 2022-10-18 16:53:33 +0200 |
commit | dba22b1763bf38252f7748496233ae6f820c7d6e (patch) | |
tree | 08f234aad140655b3d186113f825f0a84deda043 | |
parent | pom.xml: Use https for mltk-services repo (diff) | |
download | masterserver-dba22b1763bf38252f7748496233ae6f820c7d6e.tar.gz masterserver-dba22b1763bf38252f7748496233ae6f820c7d6e.tar.xz masterserver-dba22b1763bf38252f7748496233ae6f820c7d6e.zip |
Switch to mariadb to fix build
Same story as tutor-module: Version range for some reson picks
a version number that doesn't exist yet, and then the build fails.
-rw-r--r-- | pom.xml | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -207,9 +207,9 @@ <scope>compile</scope> </dependency> <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.0,3.99.99]</version> <scope>compile</scope> </dependency> <dependency> |