forked from Chisel-Team/Chisel
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle.kts
More file actions
57 lines (46 loc) · 1.34 KB
/
build.gradle.kts
File metadata and controls
57 lines (46 loc) · 1.34 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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
plugins {
id("fpgradle-minecraft") version "0.8.3"
}
group = "team.chisel"
minecraft_fp {
mod {
modid = "chisel"
name = "Chisel"
rootPkg = "$group"
}
api {
packages = listOf("api")
}
core {
accessTransformerFile = "chisel_compile_at.cfg"
coreModClass = "asm.CoreLoadingPlugin"
}
tokens {
tokenClass = "Tags"
}
publish {
maven {
repoUrl = "https://mvn.falsepattern.com/gtmega_releases/"
repoName = "gtmega"
}
}
}
repositories {
exclusive(mavenpattern(), "com.falsepattern")
exclusive(mega(), "codechicken")
exclusive(maven("usrv", "https://mvn.falsepattern.com/usrv")) {
includeModule("com.github.GTNewHorizons", "waila")
}
cursemavenEX()
}
dependencies {
devOnlyNonPublishable("codechicken:notenoughitems-mc1.7.10:2.4.1-mega:dev")
implementation("codechicken:codechickencore-mc1.7.10:1.4.0-mega:dev")
compileOnly("com.falsepattern:falsetweaks-mc1.7.10:3.5.0:dev")
compileOnly("codechicken:forgemultipart-mc1.7.10:1.6.2-mega:dev")
compileOnly("curse.maven:ee3-65509:2305023")
compileOnly("com.github.GTNewHorizons:waila:1.5.22:dev") {
exclude("com.github.GTNewHorizons", "NotEnoughItems")
exclude("com.github.GTNewHorizons", "CodeChickenLib")
}
}