Skip to content

Commit b95a9f4

Browse files
committed
i forgot how to read a manual
1 parent 2aa3374 commit b95a9f4

File tree

4 files changed

+6
-10
lines changed

4 files changed

+6
-10
lines changed

.gitignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,4 +16,5 @@ classes/
1616
.metadata
1717
.vscode
1818
.settings
19-
*.launch
19+
*.launch
20+
.architectury-transformer/

common/build.gradle

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,7 @@ dependencies {
1414
// Do NOT use other classes from fabric loader
1515
modImplementation "net.fabricmc:fabric-loader:${rootProject.fabric_loader_version}"
1616

17-
implementation "com.github.LlamaLad7:MixinExtras:${rootProject.mixinextras_version}"
18-
annotationProcessor "com.github.LlamaLad7:MixinExtras:${rootProject.mixinextras_version}"
17+
implementation(annotationProcessor("com.github.llamalad7.mixinextras:mixinextras-common:${rootProject.mixinextras_version}"))
1918
}
2019

2120
publishing {

fabric/build.gradle

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -32,9 +32,7 @@ dependencies {
3232

3333
modImplementation "com.terraformersmc:modmenu:${rootProject.modmenu_version}"
3434

35-
implementation "com.github.LlamaLad7:MixinExtras:${rootProject.mixinextras_version}"
36-
annotationProcessor "com.github.LlamaLad7:MixinExtras:${rootProject.mixinextras_version}"
37-
include "com.github.LlamaLad7:MixinExtras:${rootProject.mixinextras_version}"
35+
include(implementation(annotationProcessor("com.github.llamalad7.mixinextras:mixinextras-fabric:${rootProject.mixinextras_version}")))
3836

3937
modImplementation "com.ptsmods:devlogin:3.1.1"
4038

forge/build.gradle

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -52,9 +52,8 @@ dependencies {
5252

5353
modImplementation "thedarkcolour:kotlinforforge:${forge_kotlin_version}"
5454

55-
annotationProcessor(shadowCommon("com.github.LlamaLad7:MixinExtras:${mixinextras_version}"))
56-
implementation("com.github.LlamaLad7:MixinExtras:${mixinextras_version}")
57-
forgeRuntimeLibrary("com.github.LlamaLad7:MixinExtras:${mixinextras_version}")
55+
implementation(annotationProcessor("com.github.llamalad7.mixinextras:mixinextras-common:${mixinextras_version}"))
56+
implementation(include("com.github.llamalad7.mixinextras:mixinextras-forge:${mixinextras_version}"))
5857

5958
// modImplementation "com.ptsmods:devlogin:3.1.1"
6059
}
@@ -70,7 +69,6 @@ processResources {
7069
shadowJar {
7170
exclude "fabric.mod.json"
7271
exclude "architectury.common.json"
73-
relocate 'com.llamalad7.mixinextras', 'me.cael.capes.shaded.com.llamalad7.mixinextras'
7472

7573
mergeServiceFiles()
7674

0 commit comments

Comments
 (0)