-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathbuild.gradle.kts
More file actions
35 lines (27 loc) · 1.03 KB
/
Copy pathbuild.gradle.kts
File metadata and controls
35 lines (27 loc) · 1.03 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
import dev.deftu.gradle.utils.GameSide
plugins {
id("java")
id("dev.deftu.gradle.tools") version("2.69.+")
id("dev.deftu.gradle.tools.resources") version("2.69.+")
id("dev.deftu.gradle.tools.bloom") version("2.69.+")
id("dev.deftu.gradle.tools.shadow") version("2.69.+")
id("dev.deftu.gradle.tools.minecraft.loom") version("2.69.+")
}
repositories {
maven("https://repo.polyfrost.org/releases")
maven("https://repo.polyfrost.org/snapshots")
}
dependencies {
compileOnly("cc.polyfrost:oneconfig-1.8.9-forge:0.2.2-alpha+")
shade("cc.polyfrost:oneconfig-wrapper-launchwrapper:1.0.0-beta+")
implementation("cc.polyfrost:oneconfig-wrapper-launchwrapper:1.0.0-beta+")
compileOnly("org.spongepowered:mixin:0.7.11-SNAPSHOT")
}
toolkitLoomHelper {
useMixinRefMap(modData.id)
useForgeMixin(modData.id)
useTweaker("cc.polyfrost.oneconfig.loader.stage0.LaunchWrapperTweaker")
useDevAuth("+")
useProperty("mixin.debug.export", "true", GameSide.CLIENT)
disableRunConfigs(GameSide.SERVER)
}