Skip to content

Commit

Permalink
update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
jpenilla committed Feb 11, 2022
1 parent 56bc58c commit 525f506
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 8 deletions.
2 changes: 1 addition & 1 deletion fabric/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ configurations.implementation {
repositories {
maven("https://ladysnake.jfrog.io/artifactory/mods/") {
mavenContent {
includeGroup("io.github.onyxstudios.Cardinal-Components-API")
includeGroup("dev.onyxstudios.cardinal-components-api")
}
}
}
Expand Down
14 changes: 7 additions & 7 deletions gradle/libs.versions.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,17 +12,17 @@ plugins:

versions:
minecraft: 1.18.1
checkerQual: 3.21.1
checkerQual: 3.21.2
cloud: 1.7.0-SNAPSHOT
configurate: 4.1.2
adventure: 4.9.3
adventurePlatformFabric: 5.0.0
miniMessage: 4.2.0-SNAPSHOT
paperApi: 1.18.1-R0.1-SNAPSHOT
bStats: 2.2.1
fabricApi: 0.45.0+1.18
fabricLoader: 0.13.0
cardinalComponents: 4.0.1
bStats: 3.0.0
fabricApi: 0.46.4+1.18
fabricLoader: 0.13.1
cardinalComponents: 4.1.2

# buildSrc
indra: 2.1.1
Expand Down Expand Up @@ -133,11 +133,11 @@ dependencies:
version: { ref: minecraft }

cardinalComponentsBase:
group: io.github.onyxstudios.Cardinal-Components-API
group: dev.onyxstudios.cardinal-components-api
name: cardinal-components-base
version: { ref: cardinalComponents }
cardinalComponentsEntity:
group: io.github.onyxstudios.Cardinal-Components-API
group: dev.onyxstudios.cardinal-components-api
name: cardinal-components-entity
version: { ref: cardinalComponents }

Expand Down
13 changes: 13 additions & 0 deletions settings.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,19 @@ pluginManagement {
includeBuild("build-logic")
}

buildscript {
configurations.all {
resolutionStrategy {
eachDependency {
if (requested.group == "com.google.code.gson" && requested.name == "gson") {
useVersion("2.8.9")
because("loom needs 2.8.9, polyglot version catalogs adds 2.8.0 to classpath, force 2.8.9 to avoid issues")
}
}
}
}
}

plugins {
id("ca.stellardrift.polyglot-version-catalogs") version "5.0.0"
}
Expand Down

0 comments on commit 525f506

Please sign in to comment.