Skip to content

TelepathicGrunt/Bumblezone

Repository files navigation

The banner logo for The Bumblezone with a friendly and hostile bee shown below the mod name

See the wiki for more details about this bee-tastic mod!


COMPILEONLY MAVEN

For developers that want to add Bumblezone 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 "com.telepathicgrunt:Bumblezone:<modversion>+1.20.6-neoforge"
     
   FABRIC/QUILT: 
     modCompileOnly "com.telepathicgrunt:Bumblezone:<modversion>+1.20.6-fabric"
     
   ARCH COMMON MODULE: 
     modCompileOnly "com.telepathicgrunt:Bumblezone:<modversion>+1.20.6-common"
}

IMPLEMENTATION MAVEN

For developers that want to add Bumblezone to their mod's workspace:

repositories {
    maven {
        url = 'https://nexus.resourcefulbees.com/repository/maven-public/'
        content {
            includeGroup 'com.telepathicgrunt'
            includeGroup 'earth.terrarium.athena'
            includeGroup 'com.teamresourceful.resourcefullib'
        }
    }
    
    // Fabric/Quilt only
    maven {
        url = 'https://api.modrinth.com/maven/'
        content {
            includeGroup 'maven.modrinth'
        }
    }
    maven {
        name = "Ladysnake Mods"
        url = 'https://maven.ladysnake.org/releases'
    }
}

 

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 "com.telepathicgrunt:Bumblezone:<modversion>+1.20.6-neoforge"
     implementation "earth.terrarium.athena:athena-forge-1.20.5:3.4.0"
     implementation "com.teamresourceful.resourcefullib:resourcefullib-forge-1.20.5:2.6.0-beta.7"
     
   FABRIC/QUILT: 
     modImplementation "com.telepathicgrunt:Bumblezone:<modversion>+1.20.6-fabric"
     modImplementation "earth.terrarium.athena:athena-fabric-1.20.5:3.4.0"
     implementation "com.teamresourceful.resourcefullib:resourcefullib-fabric-1.20.5:2.6.0-beta.7"
     modImplementation "maven.modrinth:midnightlib:1.5.5-fabric" 
   
   ARCH COMMON MODULE: 
     modCompileOnly "com.telepathicgrunt:Bumblezone:<modversion>+1.20.6-common"
}

YourKit

https://www.yourkit.com/images/yklogo.png

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.