Skip to content

Commit

Permalink
Fix Project Deps
Browse files Browse the repository at this point in the history
  • Loading branch information
UnRealDinnerbone committed Jan 7, 2024
1 parent 09a5d64 commit 664970f
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 4 deletions.
4 changes: 2 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
### 4.0.0
### 4.0.1

- Updated to 1.20.4
- Fix Dependencies
3 changes: 3 additions & 0 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -112,6 +112,9 @@ publishMods {
accessToken = providers.environmentVariable("CURSE_TOKEN")
projectId = "${curse_id}"
minecraftVersions.add("${minecraft_version}")
requires {
slug = "trenzalore"
}
}

curseforge("curseforgeFabric") {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ public void generateAdvancement(Consumer<AdvancementHolder> consumer) {
AdvancementType.TASK,
true,
true,
false
true
)
.addCriterion("enter_dimension", ChangeDimensionTrigger.TriggerInstance.changedDimensionTo(JAMDRegistry.OVERWORLD.getKey().level()))
.build(new ResourceLocation(JAMD.MOD_ID, "enter_mining_dimension")));
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Project
mod_version=4.0.0
mod_version=4.0.1
maven_group=com.unrealdinnerbone
curse_id=422981
mod_name=JAMD
Expand Down
5 changes: 5 additions & 0 deletions settings.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,9 @@ pluginManagement {
}
}

plugins {
id "org.jetbrains.gradle.plugin.idea-ext" version "1.1.7" apply(false)
id 'org.gradle.toolchains.foojay-resolver-convention' version '0.5.0'
}

include("common", "neo", "fabric", "forge")

0 comments on commit 664970f

Please sign in to comment.