Skip to content

Commit

Permalink
Fix gson version not being set
Browse files Browse the repository at this point in the history
  • Loading branch information
Gamebuster19901 committed Dec 5, 2024
1 parent 7bccf71 commit ae8bdac
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 2 additions & 0 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -79,6 +79,7 @@ task processSource(type: Sync) {
def commonsTextVersion = libs.versions.commons.Text.version.get()
def vineFlowerVersion = libs.versions.vineflower.version.get()
def loomVersion = libs.versions.fabric.Loom.version.get()
def gsonVersion = libs.versions.gson.version.get()

//transitive dependencies
def log4jVersion = libs.versions.log4j.version.get()
Expand All @@ -90,6 +91,7 @@ task processSource(type: Sync) {
//dependencies that projects using WilderWorkspace will need in order to mod Wildermyth
providerVersion: providerVersion,
fabricLoaderVersion: fabricLoaderVersion,
gsonVersion: gsonVersion,

//dependencies for building and running WilderWorkspace gradle plugin itself
commonsIOVersion: commonsIOVersion,
Expand Down
4 changes: 2 additions & 2 deletions gradle/libs.versions.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ fabric_loom_version = "1.9.2"
log4j_version = "2.24.2"
provider_version = "1.5.0.3"
vineflower_version = "1.10.1"

gson_version = "2.11.0"
fabric_loader_version = "0.16.9"

[libraries]
Expand All @@ -15,7 +15,7 @@ commons_text = { module = "org.apache.commons:commons-text", version.ref = "comm
commons_io = { module = "commons-io:commons-io", version.ref = "commons_io_version"}
fabric-loom = { module = "net.fabricmc:fabric-loom", version.ref = "fabric_loom_version"}
vineflower = { module = "org.vineflower:vineflower", version.ref = "vineflower_version"}
gson = { module = "com.google.code.gson:gson", version = "2.11.0"}
gson = { module = "com.google.code.gson:gson", version.ref = "gson_version"}

fabric-loader = { module = "net.fabricmc:fabric-loader", version.ref = "fabric_loader_version" }
provider = { module = "com.wildermods:provider", version.ref = "provider_version" }
Expand Down

0 comments on commit ae8bdac

Please sign in to comment.