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.13 for example. (See older branches's README.md for their stuff)
dependencies {
...
NEOFORGE:
compileOnly fg.deobf("com.telepathicgrunt:RepurposedStructures:<modversion>+1.21.4-neoforge")
FABRIC/QUILT:
modCompileOnly "com.telepathicgrunt:RepurposedStructures:<modversion>+1.21.4-fabric"
ARCH COMMON MODULE:
modCompileOnly "com.telepathicgrunt:RepurposedStructures:<modversion>+1.21.4-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.13 for example. (See older branches's README.md for their stuff)
dependencies {
...
NEOFORGE:
implementation fg.deobf("com.telepathicgrunt:RepurposedStructures:<modversion>+1.21.4-neoforge")
FABRIC/QUILT:
modImplementation "com.telepathicgrunt:RepurposedStructures:<modversion>+1.21.4-fabric"
modImplementation "maven.modrinth:midnightlib:1.5.7-fabric"
ARCH COMMON MODULE:
modCompileOnly "com.telepathicgrunt:RepurposedStructures:<modversion>+1.21.4-common"
}YourKit supports open source projects with innovative and intelligent tools for monitoring and profiling Java and .NET applications. YourKit is the creator of YourKit Java Profiler, YourKit .NET Profiler, and YourKit YouMonitor.

