Skip to content

Commit db5a323

Browse files
committed
Update MixinExtras
1 parent e301d7d commit db5a323

File tree

5 files changed

+5
-6
lines changed

5 files changed

+5
-6
lines changed

buildSrc/src/main/groovy/modernfix.common-conventions.gradle

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,5 +77,4 @@ repositories {
7777
maven {
7878
url 'https://maven.terraformersmc.com/releases'
7979
}
80-
maven { url = "https://jitpack.io" }
8180
}

common/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ dependencies {
1010
// We depend on fabric loader here to use the fabric @Environment annotations and get the mixin dependencies
1111
// Do NOT use other classes from fabric loader
1212
modImplementation "net.fabricmc:fabric-loader:${rootProject.fabric_loader_version}"
13-
implementation(annotationProcessor("com.github.llamalad7.mixinextras:mixinextras-common:${rootProject.mixinextras_version}"))
13+
implementation(annotationProcessor("io.github.llamalad7:mixinextras-common:${rootProject.mixinextras_version}"))
1414

1515
modCompileOnly("dev.latvian.mods:kubejs:${kubejs_version}") {
1616
transitive = false

fabric/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ configurations {
2929
dependencies {
3030
modImplementation "net.fabricmc:fabric-loader:${rootProject.fabric_loader_version}"
3131
testImplementation "net.fabricmc:fabric-loader-junit:${rootProject.fabric_loader_version}"
32-
include(implementation(annotationProcessor("com.github.llamalad7.mixinextras:mixinextras-fabric:${rootProject.mixinextras_version}")))
32+
include(implementation(annotationProcessor("io.github.llamalad7:mixinextras-fabric:${rootProject.mixinextras_version}")))
3333

3434
modCompileOnly(fabricApi.module("fabric-api-base", rootProject.fabric_api_version)) { exclude group: 'net.fabricmc', module: 'fabric-loader' }
3535
modCompileOnly(fabricApi.module("fabric-screen-api-v1", rootProject.fabric_api_version)) { exclude group: 'net.fabricmc', module: 'fabric-loader' }

forge/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,8 +45,8 @@ repositories {
4545

4646
dependencies {
4747
forge "net.minecraftforge:forge:${rootProject.forge_version}"
48-
shadow(annotationProcessor("com.github.llamalad7.mixinextras:mixinextras-common:${rootProject.mixinextras_version}"))
49-
runtimeOnly("com.github.llamalad7.mixinextras:mixinextras-common:${rootProject.mixinextras_version}")
48+
shadow(annotationProcessor("io.github.llamalad7:mixinextras-common:${rootProject.mixinextras_version}"))
49+
runtimeOnly("io.github.llamalad7:mixinextras-common:${rootProject.mixinextras_version}")
5050
// Remove the next line if you don't want to depend on the API
5151
// modApi "me.shedaniel:architectury-forge:${rootProject.architectury_version}"
5252

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
org.gradle.jvmargs=-Xmx2G
33

44
junit_version=5.10.0-M1
5-
mixinextras_version=0.2.0-beta.9
5+
mixinextras_version=0.3.2
66

77
mod_id=modernfix
88
minecraft_version=1.16.5

0 commit comments

Comments
 (0)