SimplyCompat/common/build.gradle
Chris Toph d9993e541e LIFE IS BEAUTIFUL
Items are created and working-ish in fabric
forge is throwing a fit tho
2025-02-20 03:34:53 -05:00

36 lines
1.3 KiB
Groovy

architectury {
common rootProject.enabled_platforms.split(',')
}
repositories {
maven {
url "https://www.cursemaven.com"
content {
includeGroup "curse.maven"
}
}
maven { url "https://maven.shedaniel.me/" }
}
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"
// Architectury API. This is optional, and you can comment it out if you don't need it.
modImplementation "dev.architectury:architectury:$rootProject.architectury_api_version"
modApi("me.shedaniel.cloth:cloth-config:$rootProject.cloth_config_version") {
exclude(group: "net.fabricmc.fabric-api")
}
modImplementation "curse.maven:simplyswords-659887:5255981"
// runtimeOnly "curse.maven:better-combat-by-daedelus-639842:5625757"
// runtimeOnly "curse.maven:playeranimator-658587:4587214"
// implementation "curse.maven:additional-additions-forge-582387:5155724"
// implementation "curse.maven:create-328085:5838779"
// implementation "curse.maven:create-industry-693815:5811638"
}