Skip to content

Commit

Permalink
Update 1.19.1. Embed MixinExtras into main jar.
Browse files Browse the repository at this point in the history
  • Loading branch information
himekifee committed Aug 2, 2022
1 parent ff253da commit cd9833a
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 6 deletions.
7 changes: 4 additions & 3 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ dependencies {
// PSA: Some older mods, compiled on Loom 0.2.1, might have outdated Maven POMs.
// You may need to force-disable transitiveness on them.

modImplementation "com.terraformersmc:modmenu:4.0.4"
modImplementation "com.terraformersmc:modmenu:4.0.5"
implementation group: 'com.google.code.findbugs', name: 'jsr305', version: '3.0.2'

modApi("me.shedaniel.cloth:cloth-config-fabric:6.2.57") {
Expand All @@ -45,8 +45,9 @@ dependencies {
include group: 'com.electronwill.night-config', name: 'toml', version: '3.6.5'
include group: 'com.electronwill.night-config', name: 'core', version: '3.6.4'

implementation("com.github.LlamaLad7:MixinExtras:0.0.11")
annotationProcessor("com.github.LlamaLad7:MixinExtras:0.0.11")
implementation("com.github.LlamaLad7:MixinExtras:0.0.12")
annotationProcessor("com.github.LlamaLad7:MixinExtras:0.0.12")
include "com.github.LlamaLad7:MixinExtras:0.0.12"
}

processResources {
Expand Down
6 changes: 3 additions & 3 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ org.gradle.jvmargs=-Xmx1G

# Fabric Properties
# check these on https://fabricmc.net/use
minecraft_version=1.19
yarn_mappings=1.19+build.4
minecraft_version=1.19.1
yarn_mappings=1.19.1+build.3
loader_version=0.14.8

# Mod Properties
Expand All @@ -14,4 +14,4 @@ org.gradle.jvmargs=-Xmx1G

# Dependencies
# currently not on the main fabric site, check on the maven: https://maven.fabricmc.net/net/fabricmc/fabric-api/fabric-api
fabric_version=0.58.0+1.19
fabric_version=0.58.5+1.19.1

0 comments on commit cd9833a

Please sign in to comment.