Repositories
There are a number of default maven repositories added by the com.possible-triangle.core plugin.
These include the maven of Minecraft (1), SpongePowered (2) and KotlinForForge (3).
- https://libraries.minecraft.net/
- https://repo.spongepowered.org/repository/maven-public/
- https://thedarkcolour.github.io/KotlinForForge/
If you want to include mods from CurseForge or Modrinth, you can use these helper methods.
These are also used by the Packwiz plugin.
build.gradle.kts
repositories {
modrinthMaven()
curseMaven()
// https://registry.somethingcatchy.net/#browse/browse:maven-releases
nexus()
// https://registry.somethingcatchy.net/#browse/browse:maven-snapshots
nexus(snapshot = true)
}