23 lines
681 B
Groovy
23 lines
681 B
Groovy
architectury {
|
|
common(rootProject.enabled_platforms.split(","))
|
|
}
|
|
|
|
loom {
|
|
accessWidenerPath = file("src/main/resources/anvillib.accesswidener")
|
|
}
|
|
|
|
dependencies {
|
|
// We depend on fabric loader here to use the fabric @Environment annotations and get the mixin dependencies
|
|
// Do NOT use other classes from fabric loader
|
|
modImplementation "net.fabricmc:fabric-loader:${rootProject.fabric_loader_version}"
|
|
modImplementation "software.bernie.geckolib:geckolib-fabric-1.18:3.0.80"
|
|
}
|
|
|
|
publishing {
|
|
publications {
|
|
mavenCommon(MavenPublication) {
|
|
artifactId = rootProject.archives_base_name
|
|
from components.java
|
|
}
|
|
}
|
|
}
|