- Set up config w/ modified SimpleConfig - Set up ExpectPlatform - Set up WeaponTypes - Added items to ItemRegister - Added dmg modifier to ToolMaterials
39 lines
No EOL
1.4 KiB
Groovy
39 lines
No EOL
1.4 KiB
Groovy
architectury {
|
|
common rootProject.enabled_platforms.split(',')
|
|
}
|
|
repositories {
|
|
maven {
|
|
url "https://www.cursemaven.com"
|
|
content {
|
|
includeGroup "curse.maven"
|
|
}
|
|
}
|
|
// maven {
|
|
// name = "Team Resourceful Maven"
|
|
// url = "https://maven.teamresourceful.com/repository/maven-public/"
|
|
// }
|
|
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"
|
|
|
|
// modImplementation "com.teamresourceful.resourcefulconfig:resourcefulconfig-common-$minecraft_version:$rconfig_version"
|
|
modImplementation "curse.maven:simplyswords-659887:5639538"
|
|
modImplementation "dev.architectury:architectury:$rootProject.architectury_api_version"
|
|
|
|
// 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"
|
|
}
|
|
|
|
sourceSets {
|
|
main {
|
|
resources.srcDir project(':common').file('src/generated')
|
|
}
|
|
} |