Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(api): unused JDA classes should remain (fixes #37) #38

Merged
merged 3 commits into from
Jun 30, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -39,4 +39,4 @@ maven_group = me.axieum.mcmod.minecord
github_repo = axieum/minecord

# Other
org.gradle.jvmargs=-Xmx1G
org.gradle.jvmargs=-Xmx1536M
2 changes: 1 addition & 1 deletion minecord-api/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ shadowJar {
// relocate 'tomp2p.opuswrapper', "${dest}.tomp2p.opuswrapper"

// Minify the result - remove unused classes
minimize()
// minimize()
}

// Provide the fat-jar to Fabric's remapping task
Expand Down
4 changes: 1 addition & 3 deletions minecord-cmds/src/main/resources/fabric.mod.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,7 @@
"me.axieum.mcmod.minecord.impl.cmds.MinecordCommandsImpl"
]
},
"mixins": [
"minecord-cmds.mixins.json"
],
"mixins": [],
"depends": {
"java": ">=17",
"minecraft": "1.19.x",
Expand Down
4 changes: 1 addition & 3 deletions minecord-presence/src/main/resources/fabric.mod.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,7 @@
"me.axieum.mcmod.minecord.impl.presence.MinecordPresenceImpl"
]
},
"mixins": [
"minecord-presence.mixins.json"
],
"mixins": [],
"depends": {
"java": ">=17",
"minecraft": "1.19.x",
Expand Down