-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathbuild.gradle.kts
131 lines (108 loc) · 2.87 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
plugins {
eclipse
idea
id("net.neoforged.moddev")
id("com.diffplug.spotless")
}
val modId = "arseng"
base.archivesName = modId
version = System.getenv("ARSENG_VERSION") ?: "0.0.0"
group = "gripe.90"
java.toolchain.languageVersion = JavaLanguageVersion.of(21)
dependencies {
implementation(libs.ae2)
implementation(libs.ars)
}
sourceSets {
main {
resources.srcDir("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 {
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-mod", "ae2",
"--existing-mod", "ars_nouveau"
)
sourceSet = sourceSets.getByName("data")
}
}
}
tasks {
processResources {
exclude("**/.cache")
val props = mapOf("version" to version)
inputs.properties(props)
filesMatching("META-INF/neoforge.mods.toml") {
expand(props)
}
}
withType<JavaCompile> {
options.encoding = "UTF-8"
}
}
spotless {
kotlinGradle {
target("*.kts")
diktat()
}
java {
target("src/**/java/**/*.java")
palantirJavaFormat()
endWithNewline()
indentWithSpaces(4)
removeUnusedImports()
toggleOffOn()
trimTrailingWhitespace()
importOrderFile(rootProject.file("codeformat/$modId.importorder"))
// courtesy of diffplug/spotless#240
// https://github.com/diffplug/spotless/issues/240#issuecomment-385206606
custom("noWildcardImports") {
if (it.contains("*;\n")) {
throw Error("No wildcard imports allowed")
}
it
}
bumpThisNumberIfACustomStepChanges(1)
}
json {
target("src/*/resources/**/*.json")
targetExclude("src/generated/resources/**")
biome()
indentWithSpaces(2)
endWithNewline()
}
}