Skip to content

Commit

Permalink
Keep dependencies up-to-date
Browse files Browse the repository at this point in the history
Because what if I wanted to add compat to something else?
  • Loading branch information
EnnuiL committed Oct 8, 2024
1 parent d30b1e9 commit 38e25cc
Show file tree
Hide file tree
Showing 3 changed files with 24 additions and 12 deletions.
14 changes: 13 additions & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,19 @@ group = project.maven_group

repositories {
maven { url 'https://maven.terraformersmc.com/releases/' }
maven { url 'https://api.modrinth.com/maven' }
repositories {
exclusiveContent {
forRepository {
maven {
name = "Modrinth"
url = "https://api.modrinth.com/maven"
}
}
filter {
includeGroup "maven.modrinth"
}
}
}
}

loom {
Expand Down
16 changes: 8 additions & 8 deletions gradle/libs.versions.toml
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
# The latest versions are available at https://quiltmc.org/en/usage/latest-versions/
[versions]
# The latest versions are available at https://lambdaurora.dev/tools/import_quilt.html
minecraft = "1.21"
quilt_mappings = "1.21+build.2"
minecraft = "1.21.1"
quilt_mappings = "1.21.1+build.3"

quilt_loom = "1.6.8"
quilt_loader = "0.26.0"
quilt_loom = "1.7.4"
quilt_loader = "0.26.4"

fabric_api = "0.100.3+1.21"
ennuis_bigger_inventories = "0.2.0-beta.2+1.21"
emi = "1.1.7+1.21"
fabric_api = "0.105.0+1.21.1"
ennuis_bigger_inventories = "0.2.0-beta.3+1.21"
emi = "1.1.16+1.21.1"

[libraries]
minecraft = { module = "com.mojang:minecraft", version.ref = "minecraft" }
Expand Down
6 changes: 3 additions & 3 deletions src/main/resources/fabric.mod.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,9 @@
"environment": "*",
"mixins": ["ennuis_bigger_gambiarra.mixins.json"],
"depends": {
"fabricloader": ">=0.15.11",
"minecraft": "~1.21",
"fabric-api": ">=0.100.3",
"fabricloader": ">=0.16.0",
"minecraft": "=1.21.1",
"fabric-api": ">=0.102.0",
"ennuis_bigger_inventories": ">=0.2.0-"
}
}

0 comments on commit 38e25cc

Please sign in to comment.