forked from GTNewHorizons/StructureLib
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathbuild.gradle.kts
More file actions
40 lines (33 loc) · 910 Bytes
/
build.gradle.kts
File metadata and controls
40 lines (33 loc) · 910 Bytes
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
plugins {
id("com.falsepattern.fpgradle-mc") version ("0.19.3")
}
group = "mega"
minecraft_fp {
mod {
modid = "structurelib"
name = "StructureLib"
rootPkg = "com.gtnewhorizon.structurelib"
}
tokens {
tokenClass = "Tags"
modid = "MODID"
name = "MODNAME"
version = "VERSION"
rootPkg = "GROUPNAME"
}
publish {
maven {
repoUrl = "https://mvn.falsepattern.com/gtmega_releases/"
repoName = "mega"
}
}
}
repositories {
exclusive(mega(), "mega", "codechicken")
}
dependencies {
implementation("it.unimi.dsi:fastutil:8.5.16")
runtimeOnlyNonPublishable("codechicken:notenoughitems-mc1.7.10:2.7.51-mega:dev")
runtimeOnlyNonPublishable("codechicken:codechickencore-mc1.7.10:1.4.2-mega:dev")
devOnlyNonPublishable("mega:carpentersblocks-mc1.7.10:3.7.0-mega:dev")
}