Skip to content

Commit

Permalink
Add sgui dependency
Browse files Browse the repository at this point in the history
  • Loading branch information
andantet committed Nov 14, 2023
1 parent b094240 commit 29825c8
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 2 deletions.
7 changes: 7 additions & 0 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,11 @@ repositories {
name = "Andante"
url = "https://maven.andante.dev/releases/"
}

maven {
name = "Nucleoid"
url = "https://maven.nucleoid.xyz/"
}
}

sourceSets {
Expand All @@ -41,6 +46,8 @@ dependencies {
include modImplementation ("dev.andante:audience:$audience_version")
include modImplementation ("dev.andante:codex:$codex_version")

include modImplementation ("eu.pb4:sgui:$sgui_version")

modImplementation "com.ptsmods:devlogin:$devlogin_version"
}

Expand Down
2 changes: 2 additions & 0 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,8 @@ bubble_version=1.0.4
audience_version=2.1.3
codex_version=1.4.0

sgui_version=1.3.0+1.20.2

# Mod Properties
mod_version=1.0.0
maven_group=net.mcbrawls
Expand Down
6 changes: 4 additions & 2 deletions src/main/resources/fabric.mod.json
Original file line number Diff line number Diff line change
Expand Up @@ -37,11 +37,13 @@
}
],
"depends": {
"fabricloader": ">=0.14",
"minecraft": "~1.20.2",
"java": ">=17",
"fabric-api": ">=0.90",
"fabric-language-kotlin": ">=1.9",
"bubble": ">=1.0"
"bubble": "*",
"audience": "*",
"codex": "*",
"sgui": "*"
}
}

0 comments on commit 29825c8

Please sign in to comment.