-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathbuild.gradle.kts
159 lines (129 loc) · 3.82 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
plugins {
id("net.neoforged.moddev")
id("com.diffplug.spotless")
}
val modId = "megacells"
base.archivesName = modId
version = System.getenv("MEGA_VERSION") ?: "0.0.0"
group = "gripe.90"
java.toolchain.languageVersion = JavaLanguageVersion.of(21)
dependencies {
implementation(libs.ae2)
compileOnly(libs.ae2wtlibapi)
runtimeOnly(libs.ae2wtlib)
implementation(libs.appmek)
compileOnly(libs.mekanism)
compileOnly(variantOf(libs.mekanism) { classifier("generators") })
runtimeOnly(variantOf(libs.mekanism) { classifier("all") })
implementation(libs.arseng)
implementation(libs.arsnouveau)
implementation(libs.appflux)
runtimeOnly(libs.glodium)
implementation(libs.appex)
runtimeOnly(libs.explib)
compileOnly(libs.appbot)
compileOnly(libs.botania)
}
sourceSets {
main {
resources.srcDir(file("src/generated/resources"))
}
create("data") {
val main = main.get()
compileClasspath += main.compileClasspath + main.output
runtimeClasspath += main.runtimeClasspath + main.output
}
}
neoForge {
version = libs.versions.neoforge.get()
parchment {
// minecraftVersion = libs.versions.minecraft.get()
minecraftVersion = "1.21"
mappingsVersion = libs.versions.parchment.get()
}
mods {
create(modId) {
sourceSet(sourceSets.main.get())
sourceSet(sourceSets.getByName("data"))
}
}
runs {
configureEach {
logLevel = org.slf4j.event.Level.DEBUG
gameDirectory = file("run")
}
create("client") {
client()
}
create("server") {
server()
gameDirectory = file("run/server")
}
create("data") {
data()
programArguments.addAll(
"--mod", modId,
"--all",
"--output", file("src/generated/resources/").absolutePath,
"--existing", file("src/main/resources/").absolutePath,
"--existing", file("src/main/resources/optional_cell_colours").absolutePath,
"--existing-mod", "ae2"
)
sourceSet = sourceSets.getByName("data")
}
}
}
tasks {
jar {
from(rootProject.file("LICENSE")) {
rename { "${it}_$modId" }
}
}
withType<JavaCompile> {
options.encoding = "UTF-8"
}
processResources {
exclude("**/.cache")
val props = mapOf("version" to version)
inputs.properties(props)
filesMatching("META-INF/neoforge.mods.toml") {
expand(props)
}
}
}
spotless {
kotlinGradle {
target("*.kts")
diktat()
leadingTabsToSpaces(4)
endWithNewline()
}
java {
target("/src/**/java/**/*.java")
endWithNewline()
leadingTabsToSpaces(4)
removeUnusedImports()
palantirJavaFormat()
importOrderFile(file("mega.importorder"))
toggleOffOn()
// courtesy of diffplug/spotless#240
// https://github.com/diffplug/spotless/issues/240#issuecomment-385206606
// also, ew (7.x): https://github.com/diffplug/spotless/issues/2387#issuecomment-2576459901
custom("noWildcardImports", object : java.io.Serializable, com.diffplug.spotless.FormatterFunc {
override fun apply(input: String): String {
if (input.contains("*;\n")) {
throw GradleException("No wildcard imports allowed.")
}
return input
}
})
bumpThisNumberIfACustomStepChanges(1)
}
json {
target("src/**/resources/**/*.json")
targetExclude("src/generated/resources/**")
biome()
leadingTabsToSpaces(2)
endWithNewline()
}
}