Installation Modder - ldtteam/PerViamInvenire GitHub Wiki
To install PerViamInvenire as a modder you need to perform the following steps:
- Add the LDTTeam Maven repository to your project:
repositories {
maven {
name 'LDTTeam - Modding'
url 'https://ldtteam.jfrog.io/ldtteam/modding/'
}
}
- Determine which version of PerViamInvenire you want to depend on using CurseForge.
- Add the PerViamInvenire API-jar as a Compile-time and the PerViamInvenire Main-jar as a Run-time dependency:
dependencies {
compileOnly fg.deobf("com.ldtteam:PerViamInvenire:${project.exactMinecraftVersion}-${project.perViamInvenireVersion}:api")
runtimeOnly fg.deobf("com.ldtteam:PerViamInvenire:${project.exactMinecraftVersion}-${project.perViamInvenireVersion}:universal")
}