Skip to content

Commit

Permalink
fixed refmap and deps
Browse files Browse the repository at this point in the history
  • Loading branch information
mrsterner committed Jun 4, 2024
1 parent a696bf6 commit e52e33f
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 3 deletions.
3 changes: 3 additions & 0 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -108,6 +108,9 @@ tasks {
from("LICENSE")
}

compileJava{
targetCompatibility = "17"
}

}

Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ parchment_version=2023.09.03-1.20.1
# Mod Properties
mod_name=Lodestone
mod_id=lodestone
mod_version=1.4.44
mod_version=1.4.45
mod_license=GPLv3
mod_group_id=team.lodestar.lodestone
# The authors of the mod. This is a simple text string that is used for display purposes in the mod list.
Expand Down
4 changes: 3 additions & 1 deletion src/main/resources/fabric.mod.json
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,9 @@
"fabricloader": ">=${loader_version}",
"fabric-api": "*",
"minecraft": "~${minecraft_version}",
"java": ">=17"
"java": ">=17",
"cardinal-components-base": "*",
"porting_lib_base": "*"
},
"custom": {
"cardinal-components": [
Expand Down
1 change: 0 additions & 1 deletion src/main/resources/lodestone.mixins.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
"required": true,
"package": "team.lodestar.lodestone.mixin",
"compatibilityLevel": "JAVA_17",
"refmap": "lodestone.refmap.json",
"mixins": [
"BlockItemMixin",
"EntityMixin",
Expand Down

0 comments on commit e52e33f

Please sign in to comment.