Skip to content

Commit

Permalink
Fix mixin refmap and update cloth config dependency
Browse files Browse the repository at this point in the history
  • Loading branch information
itsmeow committed Dec 16, 2021
1 parent b94a11a commit e018217
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 4 deletions.
5 changes: 3 additions & 2 deletions fabric/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -39,9 +39,10 @@ dependencies {
modImplementation "net.fabricmc:fabric-loader:${rootProject.fabric_loader_version}"
modApi "net.fabricmc.fabric-api:fabric-api:${rootProject.fabric_api_version}"
modApi "me.shedaniel:architectury-fabric:${rootProject.architectury_version}"
modApi ("me.shedaniel.cloth:config-2:4.8.3") {
modApi ("curse.maven:cloth-config-319057:${rootProject.cloth_config_version}") {
exclude(group: "net.fabricmc.fabric-api")
}
runtimeOnly("me.shedaniel.cloth:basic-math:0.6.0")

implementation(project(path: ":common", configuration: "dev")) {
transitive = false
Expand Down Expand Up @@ -223,7 +224,7 @@ publishing {
def configurationNames = ["modImplementation", "modApi"]
configurationNames.each { configurationName ->
configurations[configurationName].allDependencies.each {
if (!(it.name in ["imdlib", "architectury-transformer", "common"]) && !(it.group in ["curse.maven"])) {
if (!(it.name in ["imdlib", "architectury-transformer", "common", "basic-math"]) && !(it.group in ["curse.maven"])) {
def dependencyNode = dependenciesNode.appendNode('dependency')
dependencyNode.appendNode('groupId', it.group)
dependencyNode.appendNode('artifactId', it.name)
Expand Down
6 changes: 4 additions & 2 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
architectury_version = 1.26.39
fabric_loader_version = 0.12.11
fabric_api_version = 0.42.0+1.16
imdlib_version = 1.16.5-2d896680b539ec3d6fa9ad30c533331b5e2944f6
imdlib_version = 1.16.5-c561e1ce761e9c6bc6c22e185ffd5ee151239e08

# Publishing
github = itsmeow/betteranimalsplus
Expand All @@ -24,4 +24,6 @@
# Misc
org.gradle.jvmargs = -Xmx4G
org.gradle.daemon = true
cardinal_components_version = 2.8.3
cardinal_components_version = 2.8.3
# 4.13.49
cloth_config_version=3559633

0 comments on commit e018217

Please sign in to comment.