Skip to content

Commit

Permalink
Work around Gradle
Browse files Browse the repository at this point in the history
  • Loading branch information
Ampflower committed Mar 17, 2023
1 parent fd42043 commit c23deb5
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 2 deletions.
3 changes: 2 additions & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,8 @@ dependencies {
minecraft(libs.minecraft)
mappings(loom.officialMojangMappings())
modImplementation(libs.quilt.loader)
modImplementation(libs.spruceui)?.let(::include)
modImplementation(libs.spruceui)
include(libs.spruceui)
modImplementation(libs.modmenu)
modImplementation(libs.quilted.fabric.api)
modRuntimeOnly(libs.bundles.mod.runtime)
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,6 @@ org.gradle.jvmargs=-Xmx1G

# Your project's version
group=net.kjp12
projectVersion=0.0.3
projectVersion=0.0.4
modrinthId=z23qey0b
minecraftCompatible=1.19,1.19.1,1.19.2
4 changes: 4 additions & 0 deletions src/main/resources/quilt.mod.json
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,10 @@
{
"id": "java",
"versions": ">=${java}"
},
{
"id": "spruceui",
"versions": "*"
}
]
},
Expand Down

0 comments on commit c23deb5

Please sign in to comment.