mirror of
https://github.com/architectury/architectury-api.git
synced 2026-03-28 03:56:59 -05:00
Update to Loom 0.10.0 and add Mixins
This commit is contained in:
@@ -4,10 +4,14 @@ plugins {
|
||||
}
|
||||
|
||||
loom {
|
||||
// mixinConfig "architectury.mixins.json"
|
||||
forge {
|
||||
mixinConfig "architectury.mixins.json"
|
||||
|
||||
localMods {
|
||||
it.add(project(":forge").sourceSets.main)
|
||||
localMods {
|
||||
forge {
|
||||
it.add(project(":forge").sourceSets.main)
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -20,16 +24,16 @@ dependencies {
|
||||
forge "net.minecraftforge:forge:${gradle.rootProject.architectury.minecraft}-${rootProject.forge_version}"
|
||||
|
||||
implementation project(path: ":forge", configuration: "dev")
|
||||
implementation(project(path: ":common")) {
|
||||
implementation(project(path: ":common", configuration: "dev")) {
|
||||
transitive = false
|
||||
}
|
||||
developmentForge(project(path: ":common")) {
|
||||
developmentForge(project(path: ":common", configuration: "dev")) {
|
||||
transitive = false
|
||||
}
|
||||
implementation(project(path: ":testmod-common")) {
|
||||
implementation(project(path: ":testmod-common", configuration: "dev")) {
|
||||
transitive = false
|
||||
}
|
||||
developmentForge(project(path: ":testmod-common")) {
|
||||
developmentForge(project(path: ":testmod-common", configuration: "dev")) {
|
||||
transitive = false
|
||||
}
|
||||
}
|
||||
|
||||
@@ -0,0 +1,2 @@
|
||||
{
|
||||
}
|
||||
Reference in New Issue
Block a user