Skip to content

TelepathicGrunt/RepurposedStructures

Repository files navigation

The banner logo for Repurposed Structures


COMPILEONLY MAVEN

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.4.0 for example. (See older branches's README.md for their stuff)

dependencies {
   ...
   NEOFORGE: 
     compileOnly fg.deobf("com.telepathicgrunt:RepurposedStructures:<modversion>+1.20.6-neoforge")
     
   FABRIC/QUILT: 
     modCompileOnly "com.telepathicgrunt:RepurposedStructures:<modversion>+1.20.6-fabric"
     
   ARCH COMMON MODULE: 
     modCompileOnly "com.telepathicgrunt:RepurposedStructures:<modversion>+1.20.6-common"
}

 


IMPLEMENTATION MAVEN

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.4.0 for example. (See older branches's README.md for their stuff)

dependencies {
   ...
   NEOFORGE: 
     implementation fg.deobf("com.telepathicgrunt:RepurposedStructures:<modversion>+1.20.6-neoforge")
     
   FABRIC/QUILT: 
     modImplementation "com.telepathicgrunt:RepurposedStructures:<modversion>+1.20.6-fabric"
     modImplementation "maven.modrinth:midnightlib:1.4.1-fabric" 
   
   ARCH COMMON MODULE: 
     modCompileOnly "com.telepathicgrunt:RepurposedStructures:<modversion>+1.20.6-common"
}