21 lines
422 B
Plaintext
21 lines
422 B
Plaintext
architectury {
|
|
common()
|
|
}
|
|
repositories {
|
|
maven {
|
|
name = "SpongePowered"
|
|
url = uri("https://repo.spongepowered.org/repository/maven-public/")
|
|
}
|
|
}
|
|
dependencies {
|
|
compileOnly("org.spongepowered:mixin:0.8-SNAPSHOT")
|
|
mappings(loom.officialMojangMappings())
|
|
}
|
|
|
|
loom {
|
|
silentMojangMappingsLicense()
|
|
mixinConfig("snowygui-mixins.json")
|
|
refmapName = "snowygui-common-refmap.json"
|
|
}
|
|
|