51 lines
No EOL
1.7 KiB
Groovy
51 lines
No EOL
1.7 KiB
Groovy
architectury {
|
|
common rootProject.enabled_platforms.split(',')
|
|
}
|
|
repositories {
|
|
maven {
|
|
url "https://www.cursemaven.com"
|
|
content {
|
|
includeGroup "curse.maven"
|
|
}
|
|
}
|
|
maven {
|
|
name = 'tterrag maven'
|
|
url = 'https://maven.tterrag.com/'
|
|
}
|
|
exclusiveContent {
|
|
forRepository {
|
|
maven {
|
|
name = "Modrinth"
|
|
url = "https://api.modrinth.com/maven"
|
|
}
|
|
}
|
|
filter {
|
|
includeGroup "maven.modrinth"
|
|
}
|
|
}
|
|
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 "curse.maven:simplyswords-659887:5639538"
|
|
modImplementation "dev.architectury:architectury:$rootProject.architectury_api_version"
|
|
|
|
modCompileOnly("com.simibubi.create:create-$rootProject.minecraft_version:$rootProject.create_version:slim") { transitive = false }
|
|
modCompileOnly "com.jozufozu.flywheel:flywheel-forge-$rootProject.minecraft_version:$rootProject.flywheel_version"
|
|
modCompileOnly "com.tterrag.registrate:Registrate:$rootProject.registrate_version"
|
|
modCompileOnly "curse.maven:additional-additions-forge-582387:5155724"
|
|
modCompileOnly "curse.maven:create-industry-693815:5811638"
|
|
modCompileOnly "curse.maven:create-deep-dark-1020173:5868515"
|
|
modCompileOnly "maven.modrinth:purecoppertools:UhYKtKPC"
|
|
}
|
|
|
|
sourceSets {
|
|
main {
|
|
resources.srcDir project(':common').file('src/generated')
|
|
}
|
|
} |