options-profiles/common/build.gradle
axolotlmaid 2690515316 Add Neoforge and upgrade template
Forge is not working but I can't really do anything about it
2024-06-02 17:27:15 +01:00

28 lines
No EOL
809 B
Groovy

architectury {
common rootProject.enabled_platforms.split(',')
}
repositories {
exclusiveContent {
forRepository {
maven {
name = "Modrinth"
url = "https://api.modrinth.com/maven"
}
}
filter {
includeGroup "maven.modrinth"
}
}
}
dependencies {
// We depend on Fabric Loader here to use the Fabric @Environment annotations,
// which get remapped to the correct annotations on each platform.
// Do NOT use other classes from Fabric Loader.
modImplementation "net.fabricmc:fabric-loader:${rootProject.fabric_loader_version}"
// Mod implementations
modImplementation "maven.modrinth:sodium:mc1.20.6-0.5.8"
modImplementation "maven.modrinth:sodium-extra:mc1.20.6-0.5.5"
}