Skip to content

Commit

Permalink
Fix gradle shadow
Browse files Browse the repository at this point in the history
  • Loading branch information
DrexHD committed Apr 24, 2024
1 parent 86d2bf1 commit 3b190f7
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 9 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [1.5.4] - 2024-04-24
### Fixed
- Crash on startup (1.20.5)

## [1.5.3] - 2024-04-22
### Added
- Squaremap support
Expand Down
4 changes: 2 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
plugins {
id 'fabric-loom' version '1.6-SNAPSHOT'
id 'com.github.johnrengelman.shadow' version '7.1.2'
id 'io.github.goooler.shadow' version '8.1.7'
id 'maven-publish'
}

Expand Down Expand Up @@ -31,7 +31,7 @@ dependencies {
modImplementation include("eu.pb4:placeholder-api:${project.placeholder_api_version}")
modImplementation include("eu.pb4:player-data-api:${project.player_data_api_version}")
modImplementation include("xyz.nucleoid:server-translations-api:${project.translations_version}")
implementation include("org.spongepowered:configurate-hocon:${project.configurate_hocon_version}")
implementation shadow("org.spongepowered:configurate-hocon:${project.configurate_hocon_version}")

// Mod compat
modCompileOnly "maven.modrinth:styled-chat:${project.styled_chat_version}"
Expand Down
6 changes: 3 additions & 3 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,14 @@
org.gradle.jvmargs=-Xmx1G
# Fabric Properties
# check these on https://fabricmc.net/develop
minecraft_version=1.20.5-rc2
minecraft_version=1.20.5
loader_version=0.15.10
# Mod Properties
mod_version=1.5.3
mod_version=1.5.4
maven_group=me.drex
archives_base_name=vanish
# Dependencies
fabric_version=0.97.5+1.20.5
fabric_version=0.97.6+1.20.5
permission_api_version=0.3.1
placeholder_api_version=2.4.0-pre.1+1.20.5
player_data_api_version=0.5.0+1.20.5
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 @@ -31,10 +31,10 @@
"vanish.mixins.json"
],
"depends": {
"fabricloader": ">=0.15.0",
"fabricloader": ">=0.15.10",
"fabric-api": "*",
"java": ">=17",
"minecraft": ">=1.20.5-rc.2"
"java": ">=21",
"minecraft": ">=1.20.5"
},
"breaks": {
"vanish": "*",
Expand Down
2 changes: 1 addition & 1 deletion src/main/resources/vanish.mixins.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"minVersion": "0.8",
"package": "me.drex.vanish.mixin",
"plugin": "me.drex.vanish.util.VanishMixinConfigPlugin",
"compatibilityLevel": "JAVA_17",
"compatibilityLevel": "JAVA_21",
"injectors": {
"defaultRequire": 1
},
Expand Down

0 comments on commit 3b190f7

Please sign in to comment.