This Lib required for ALL my mods
- Property utilities
- BlockAndItem utilities
- WorldGen utilities
- Client utils
- Entity Abstractions
- Config
- Interpolations
- Java utils
- And outer
- EndlessJourney [not finished] (8%)
- VillageUpgrade [not finished] (50%)
- Palladium [Finished] 💠
- H+ [Finished] 💠
- EBE(EnlightenedBlockEntities) [Finished]💠
- GPUTape [Finished] 💠
How to do add my library to dependencies...
repositories {
exclusiveContent {
forRepository {
maven {
name = "Modrinth"
url = "https://api.modrinth.com/maven"
}
}
forRepositories(fg.repository)
filter {
includeGroup "maven.modrinth"
}
}
}
implementation fg.deobf("maven.modrinth:toadlib:<version>")
- Replace with the desired version of ToadLib.
- For example: version - 1.0.2
[[dependencies.{yourModId}]]
modId = "toadlib"
mandatory = true
versionRange = "[{version},)"
ordering = "NONE"
side = "BOTH"
- Replace {version} with the desired version of ToadLib.
- For example: {version} - 1.0.2 ; {modid} - toadmod
- ❗NOTICE❗ version from step 2. >= {version} in step 3. Outherwise it will lead to exception
build
your mod
Read more about the integration here