For developers that want to add Repurposed Structures to their mod's workspace:
repositories {
maven {
url "https://nexus.resourcefulbees.com/repository/telepathicgrunt/"
}
}
Don't forget to change <modversion> with the actual latest version of this mod like 7.5.0
for example. (See older branches's README.md for their stuff)
dependencies {
...
NEOFORGE:
compileOnly fg.deobf("com.telepathicgrunt:RepurposedStructures:<modversion>+1.21-neoforge")
FABRIC/QUILT:
modCompileOnly "com.telepathicgrunt:RepurposedStructures:<modversion>+1.21-fabric"
ARCH COMMON MODULE:
modCompileOnly "com.telepathicgrunt:RepurposedStructures:<modversion>+1.21-common"
}
For developers that want to add Repurposed Structures to their mod's workspace:
repositories {
maven {
url "https://nexus.resourcefulbees.com/repository/telepathicgrunt/"
}
// Fabric/Quilt only
maven {
url = 'https://api.modrinth.com/maven/'
content {
includeGroup 'maven.modrinth'
}
}
}
Don't forget to change <modversion> with the actual latest version of this mod like 7.5.0
for example. (See older branches's README.md for their stuff)
dependencies {
...
NEOFORGE:
implementation fg.deobf("com.telepathicgrunt:RepurposedStructures:<modversion>+1.21-neoforge")
FABRIC/QUILT:
modImplementation "com.telepathicgrunt:RepurposedStructures:<modversion>+1.21-fabric"
modImplementation "maven.modrinth:midnightlib:1.5.7-fabric"
ARCH COMMON MODULE:
modCompileOnly "com.telepathicgrunt:RepurposedStructures:<modversion>+1.21-common"
}