-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathbuild.gradle.kts
121 lines (97 loc) · 2.35 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
plugins {
idea
eclipse
id("net.neoforged.moddev")
id("com.diffplug.spotless")
}
val modId = "appliede"
base.archivesName = modId
version = if (System.getenv("GITHUB_REF_TYPE") == "tag") System.getenv("GITHUB_REF_NAME") else "0.0.0"
group = "gripe.90"
java.toolchain.languageVersion = JavaLanguageVersion.of(21)
dependencies {
api(libs.ae2)
api(libs.projecte)
compileOnlyApi(libs.ae2wtlibapi)
runtimeOnly(libs.ae2wtlib)
implementation(libs.teampe)
}
neoForge {
version = libs.versions.neoforge.get()
parchment {
minecraftVersion = libs.versions.minecraft.get()
mappingsVersion = libs.versions.parchment.get()
}
mods {
create(modId) {
sourceSet(sourceSets.main.get())
}
}
runs {
configureEach {
gameDirectory = file("run")
}
create("client") {
client()
}
create("server") {
server()
gameDirectory = file("run/server")
}
}
}
tasks {
jar {
exclude("cn/**")
from(rootProject.file("LICENSE")) {
rename { "${it}_$modId" }
}
}
withType<JavaCompile> {
options.encoding = "UTF-8"
}
processResources {
val props = mapOf("version" to version)
inputs.properties(props)
filesMatching("META-INF/neoforge.mods.toml") {
expand(props)
}
}
}
idea {
module {
isDownloadSources = true
isDownloadJavadoc = true
}
}
spotless {
kotlinGradle {
target("*.kts")
diktat()
}
java {
target("/src/**/java/**/*.java")
endWithNewline()
indentWithSpaces(4)
removeUnusedImports()
palantirJavaFormat()
importOrderFile(file("mega.importorder"))
toggleOffOn()
// 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()
}
}