-
-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathbuild.gradle.kts
57 lines (50 loc) · 1.46 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
plugins {
id("fpgradle-minecraft") version("0.10.0")
}
group = "com.falsepattern"
minecraft_fp {
java {
compatibility = jabel
version = JavaVersion.VERSION_17
}
mod {
modid = "falsepatternlib"
name = "FalsePatternLib"
rootPkg = "$group.lib"
}
api {
packages = listOf("asm", "compat", "config", "dependencies", "mapping", "mixin", "optifine", "text", "toasts", "turboasm", "util")
packagesNoRecurse = listOf(".")
}
core {
coreModClass = "internal.asm.CoreLoadingPlugin"
}
tokens {
tokenClass = "internal.Tags"
modid = "MODID"
name = "MODNAME"
version = "VERSION"
rootPkg = "GROUPNAME"
}
publish {
changelog = "https://github.com/FalsePattern/FalsePatternLib/releases/tag/$version"
maven {
repoUrl = "https://mvn.falsepattern.com/releases/"
repoName = "mavenpattern"
}
curseforge {
projectId = "665627"
}
modrinth {
projectId = "eGLBEILf"
}
}
}
repositories {
exclusive(maven("horizon", "https://mvn.falsepattern.com/horizon/"), "com.gtnewhorizons.retrofuturabootstrap")
exclusive(jitpack(), "com.github.LegacyModdingMC.UniMixins")
}
dependencies {
compileOnly("com.gtnewhorizons.retrofuturabootstrap:RetroFuturaBootstrap:1.0.7")
compileOnly("com.github.LegacyModdingMC.UniMixins:unimixins-all-1.7.10:0.1.19:dev")
}