Skip to content
This repository has been archived by the owner on Dec 8, 2024. It is now read-only.

Commit

Permalink
Fix Mixin Extras to use maven central instead of JitPack.
Browse files Browse the repository at this point in the history
  • Loading branch information
MerchantPug committed Dec 11, 2023
1 parent 36edaea commit ed58a0c
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
1 change: 1 addition & 0 deletions fabric/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -94,6 +94,7 @@ repositories {
url = 'https://maven.parchmentmc.org'
}
mavenLocal()
mavenCentral()
}

dependencies {
Expand Down
5 changes: 3 additions & 2 deletions neoforge/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,7 @@ repositories {
name = "Jared's maven"
url = "https://maven.blamejared.com/"
}
mavenCentral()
}

mixin {
Expand Down Expand Up @@ -128,8 +129,8 @@ dependencies {
exclude group: 'net.minecraftforge'
})
//MixinExtras
implementation(annotationProcessor("com.github.llamalad7.mixinextras:mixinextras-common:${mixin_extras_version}"))
implementation(jarJar("com.github.llamalad7.mixinextras:mixinextras-forge:${mixin_extras_version}")) {
implementation(annotationProcessor("io.github.llamalad7:mixinextras-common:${mixin_extras_version}"))
implementation(jarJar("io.github.llamalad7:mixinextras-forge:${mixin_extras_version}")) {
jarJar.ranged(it, "[${mixin_extras_version},)")
}
//Mixin
Expand Down

0 comments on commit ed58a0c

Please sign in to comment.