-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle.kts
50 lines (41 loc) · 1.05 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
plugins {
id("fpgradle-minecraft") version("0.10.1")
}
group = "mega"
minecraft_fp {
mod {
modid = "fluidlogged"
name = "FluidLogged"
rootPkg = "$group.fluidlogged"
}
api {
packages = listOf("api")
}
mixin {
pkg = "internal.mixin.mixins"
pluginClass = "internal.mixin.plugin.MixinPlugin"
}
core {
coreModClass = "internal.core.CoreLoadingPlugin"
accessTransformerFile = "fluidlogged_at.cfg"
}
tokens {
tokenClass = "Tags"
}
publish {
changelog = "https://github.com/GTMEGA/FluidLogged/releases/tag/$version"
maven {
repoName = "mega"
repoUrl = "https://mvn.falsepattern.com/gtmega_releases"
}
}
}
repositories {
exclusive(mavenpattern(), "com.falsepattern")
cursemavenEX()
}
dependencies {
implementationSplit("com.falsepattern:falsepatternlib-mc1.7.10:1.5.9")
implementationSplit("com.falsepattern:chunkapi-mc1.7.10:0.6.1")
compileOnly(deobfCurse("cofhcore-69162:2388750"))
}