From 23314859703bb017f7dffe25453d600a8bb6f4df Mon Sep 17 00:00:00 2001 From: EoD <293499+EoD@users.noreply.github.com> Date: Fri, 25 Apr 2025 21:14:58 +0000 Subject: [PATCH] make sure the MySQL dependency is installed --- src/main/resources/META-INF/mods.toml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/src/main/resources/META-INF/mods.toml b/src/main/resources/META-INF/mods.toml index 96860e3..d332f9b 100644 --- a/src/main/resources/META-INF/mods.toml +++ b/src/main/resources/META-INF/mods.toml @@ -66,6 +66,14 @@ description='''${mod_description}''' ordering="NONE" side="BOTH" +# Dependency for MySQL +[[dependencies.${mod_id}]] + modId="mysql_jdbc" + mandatory=true + versionRange="[8.0.33+20230506,)" + ordering="NONE" + side="SERVER" + # Features are specific properties of the game environment, that you may want to declare you require. This example declares # that your mod requires GL version 3.2 or higher. Other features will be added. They are side aware so declaring this won't # stop your mod loading on the server for example.