-
Notifications
You must be signed in to change notification settings - Fork 1
Adding to your project
jtljac edited this page Aug 24, 2023
·
4 revisions
DatModdingAPI is available as a maven library at https://maven.datdeveloper.com/
To add to your project, add the following repository in build.gradle
maven {
url "https://maven.datdeveloper.com/releases"
}
Create a version variable in gradle.properties
, changing MINCRAFTVERSION
to your version of minecraft, and VERSION
to the latest available version of Dat Modding API
datmoddingapi_version=MINECRAFTVERSION-VERSION
Then add the following dependency in build.gradle
implementation fg.deobf("com.datdeveloper:datmoddingapi:${datmoddingapi_version}")