Included content
| Name | Version | |
|---|---|---|
This is a fairly sizeable update, enough to increment a version!
New Features
stack size * stack countChanges Thanks to @Wyne10 on GitHub, we have now updated to 1.20!
Note that, due to the significant changes made to the internal MC code, I will likely no longer be porting new changes to older MC versions anymore.
| Name | Version | |
|---|---|---|
Projects on Modrinth are automatically available through a Maven repository for use with JVM build tools such as Gradle. To learn more about the Modrinth Maven API, click here.
Note: When available, you should use the creator's maven repo instead as it will have transitive dependency information that the Modrinth Maven API does not. You may also end up with duplicate dependencies if you use a mix of Modrinth and non-Modrinth Maven repositories for your dependencies, because the group identifier will be different when served through the Modrinth Maven API.
repositories {
exclusiveContent {
forRepository {
maven {
name = "Modrinth"
url = "https://api.modrinth.com/maven"
}
}
// forRepositories(fg.repository) // Uncomment when using ForgeGradle
filter {
includeGroup "maven.modrinth"
}
}
}
// Standard Gradle dependency
dependencies {
implementation "maven.modrinth:MLwpdyw5:6aRHi4GT"
}
// Legacy Loom dependency
dependencies {
modImplementation "maven.modrinth:MLwpdyw5:6aRHi4GT"
}