forked from LegacyModdingMC/ChunkAPI
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathbuild.gradle.kts
More file actions
53 lines (44 loc) · 1010 Bytes
/
build.gradle.kts
File metadata and controls
53 lines (44 loc) · 1010 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
41
42
43
44
45
46
47
48
49
50
51
52
53
plugins {
id("com.falsepattern.fpgradle-mc") version("2.1.0")
}
group = "com.falsepattern"
minecraft_fp {
mod {
modid = "chunkapi"
name = "ChunkAPI"
rootPkg = "$group.chunk"
}
api {
packages = listOf("api")
}
mixin {
pkg = "internal.mixin.mixins"
}
core {
coreModClass = "internal.core.CoreLoadingPlugin"
accessTransformerFile = "chunkapi_at.cfg"
}
tokens {
tokenClass = "internal.Tags"
}
publish {
changelog = "https://github.com/LegacyModdingMC/ChunkAPI/releases/tag/$version"
maven {
repoUrl = "https://mvn.falsepattern.com/releases/"
repoName = "mavenpattern"
}
curseforge {
projectId = "844484"
}
modrinth {
projectId = "y0vBUOla"
}
}
}
repositories {
cursemavenEX()
}
dependencies {
//LookingGlass 0.2.0.01
compileOnly(deobfCurse("lookingglass-230541:2321557"))
}