Hello. I am working on a MC mod and have never understood fully what gradle is or what it is actually doing.
I noticed in the templates I am using that some fields have placeholders like in this .toml block below:
[[dependencies]]
modId = "example_mod_id"
mandatory = true
versionRange = "[${em_version},)"
I want to use them more and develop my templates.
I understand that they are read from my gradle.properties file during the gradle process.
- How do I use them?
- What do I have to know to be able to set this up without a template? Is it configured in the build.gradle?
Any knowledge is appreciated 🙂