-
Notifications
You must be signed in to change notification settings - Fork 29
Getting Started
Alexthe666 edited this page Jul 24, 2019
·
17 revisions
To add Citadel to your development workspace, add the following to your build.gradle:
repositories{ maven { name = "CurseForge" url = "https://minecraft.curseforge.com/api/maven/" } }
above
apply plugin: 'net.minecraftforge.gradle'
Below, add
compile 'citadel:citadel:VERSION_NUMBER:deobf'
(where VERSION_NUMBER is a version of citadel, ex. 1.0.0) inside the dependencies
block. Your build.gradle should look similar to the following...
` ...
buildscript { ... } repositories{ maven { name = "CurseForge" url = "https://minecraft.curseforge.com/api/maven/" } } apply plugin: 'net.minecraftforge.gradle'
...
dependencies { minecraft 'net.minecraftforge:forge:MC_VERSION-FORGE_VERSION' compile 'citadel:citadel:1.0.0:deobf' }
...
`