-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbuild.gradle.kts
69 lines (55 loc) · 1.68 KB
/
build.gradle.kts
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
plugins {
id("fpgradle-minecraft") version("0.10.2")
}
group = "mega"
minecraft_fp {
java {
compatibility = jabel
}
mod {
modid = "blendtronic"
name = "Blendtronic"
rootPkg = "$group.blendtronic"
}
mixin {
pkg = "mixin.mixins"
pluginClass = "mixin.plugin.MixinPlugin"
}
core {
accessTransformerFile = "blendtronic_at.cfg"
coreModClass = "asm.CoreLoadingPlugin"
}
tokens {
tokenClass = "Tags"
}
publish {
maven {
repoUrl = "https://mvn.falsepattern.com/gtmega_releases"
repoName = "mega"
}
}
}
repositories {
cursemavenEX()
exclusive(mavenpattern(), "com.falsepattern")
exclusive(maven("mega_uploads", "https://mvn.falsepattern.com/gtmega_uploads"), "optifine")
exclusive(maven("horizon", "https://mvn.falsepattern.com/horizon"), "com.gtnewhorizons.retrofuturabootstrap")
ic2EX()
modrinthEX()
}
dependencies {
implementationSplit("com.falsepattern:falsepatternlib-mc1.7.10:1.5.7")
compileOnly("com.gtnewhorizons.retrofuturabootstrap:RetroFuturaBootstrap:1.0.7")
compileOnly(deobf("optifine:optifine:1.7.10_hd_u_e7"))
implementation("it.unimi.dsi:fastutil:8.5.13")
// Extra Utilities 1.2.12
compileOnly(deobfCurse("extra-utilities-225561:2264383"))
// BuildCraft 7.1.25
compileOnly(deobfCurse("buildcraft-61811:4055732"))
// Thaumcraft 4.2.3.5
compileOnly(deobfCurse("thaumcraft-223628:2227552"))
// BiblioCraft 1.11.7
compileOnly(deobfCurse("bibliocraft-228027:2423369"))
compileOnly(deobfModrinth("baubles-expanded:2.1.4"))
compileOnly(ic2)
}