You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
id("dev.deftu.gradle.tools.resources") // Applies resource processing so that we can replace tokens, such as our mod name/version, in our resources.
12
12
id("dev.deftu.gradle.tools.bloom") // Applies the Bloom plugin, which allows us to replace tokens in our source files, such as being able to use `@MOD_VERSION` in our source files.
13
13
id("dev.deftu.gradle.tools.shadow") // Applies the Shadow plugin, which allows us to shade our dependencies into our mod JAR. This is NOT recommended for Fabric mods, but we have an *additional* configuration for those!
14
+
id("dev.deftu.gradle.tools.ducks") // Creates a ducks source set, which allows us to use theoretical classes which may not exist at runtime (such as things which are in other mods).
14
15
id("dev.deftu.gradle.tools.minecraft.loom") // Applies the Loom plugin, which automagically configures Essential's Architectury Loom plugin for you.
15
16
id("dev.deftu.gradle.tools.minecraft.releases") // Applies the Minecraft auto-releasing plugin, which allows you to automatically release your mod to CurseForge and Modrinth.
16
17
}
17
18
18
-
val accessTransformerName ="patcher1${mcData.version.minor}_at.cfg"
19
-
20
19
toolkitLoomHelper {
21
20
useOneConfig {
22
21
version ="1.0.0-alpha.49"
@@ -31,8 +30,6 @@ toolkitLoomHelper {
31
30
+module
32
31
}
33
32
}
34
-
useDevAuth("1.2.1")
35
-
useMixinExtras("0.4.1")
36
33
37
34
// Turns off the server-side run configs, as we're building a client-sided mod.
38
35
disableRunConfigs(GameSide.SERVER)
@@ -45,73 +42,66 @@ toolkitLoomHelper {
45
42
if (mcData.isForge) {
46
43
// Configures the Mixin tweaker if we are building for Forge.
0 commit comments