Hi Draco18s,
okay, I've added the property to my @Mod annotation which now looks like the following:
@Mod( modid = ExampleMod.MODID, version = ExampleMod.VERSION, useMetadata = true,
serverSideOnly = true, acceptableRemoteVersions="*", dependencies="after:foo_bar" )
public class ExampleMod
{
public static final String MODID = "examplemod";
public static final String VERSION = "1.0";
....
and I've also edited mcmod.info from the resources and added:
"dependencies": ["foo_bar"],
"useDependencyInformation": true
.. and .. *drum roll* .. oh miracle .. it's working .. fabulous!
Thanks you very much Draco18s for your help and your patience. Hopefully other users may have a little walkthrough/manual by reading this thread.
Have a nice day,
Pixtar