-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle.kts
397 lines (331 loc) · 11.9 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
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
import de.undercouch.gradle.tasks.download.Download
import java.io.ByteArrayInputStream
import java.nio.charset.StandardCharsets
import org.jetbrains.kotlin.gradle.tasks.KotlinCompile
plugins {
java
kotlin("jvm") version "1.4.21"
id ("de.undercouch.download") version "4.0.4"
id ("com.github.johnrengelman.shadow") version "5.2.0"
}
val useLocalDependency: String by project
internal val server = Server(
/**
* Directory of the server
*/
dir = File("${rootProject.projectDir}/server")
)
internal val buildTools = BuildTools(
// Server Version
minecraftVersion = "1.8.8",
// Spigot = true
// Craftbukkit = false
useSpigot = true,
// Use local cached dependency (default = false)
useLocalDependency = if (project.hasProperty("useLocalDependency")) useLocalDependency.toBoolean() else true,
// The version of the built local dependency
localDependencyVersion = "1.8.8-R0.1-SNAPSHOT"
)
allprojects {
group = "me.ihdeveloper"
version = "1.0"
if (project != rootProject) {
apply(plugin = "java")
apply(plugin = "kotlin")
apply(plugin = "de.undercouch.download")
apply(plugin = "com.github.johnrengelman.shadow")
}
val compileKotlin: KotlinCompile by tasks
compileKotlin.kotlinOptions {
languageVersion = "1.4"
}
repositories {
mavenCentral()
mavenLocal()
}
dependencies {
val stdlib = kotlin("stdlib-jdk8")
if (project == rootProject) {
implementation(stdlib)
}
// Include the server jar source
if (buildTools.useLocalDependency && buildTools.localDependencyVersion != null) {
compileOnly("org.spigotmc:spigot:${buildTools.localDependencyVersion}")
} else {
if (server.jar.exists()) {
compileOnly(files(server.jar.absolutePath))
} else if (buildTools.serverJar.exists()) {
compileOnly(files(buildTools.serverJar.absolutePath))
}
}
testCompileOnly("junit", "junit", "4.12")
}
configure<JavaPluginConvention> {
sourceCompatibility = JavaVersion.VERSION_1_8
}
tasks {
/**
* Overwrite the build task to put the compiled jar into the build folder instead of build/libs
*/
build {
dependsOn("shadowJar")
// Copy the compiled plugin jar from build/libs to build/
doLast {
copy {
val libsDir = File("${project.buildDir}/libs")
from(libsDir)
into(libsDir.parent)
}
}
}
shadowJar {
from("LICENSE")
val name = "${archiveBaseName.get()}-${archiveVersion.get()}.${archiveExtension.get()}"
archiveFileName.set(name)
}
/**
* Build the plugin for the server
*/
register("build-plugin") {
dependsOn("build")
if (project == rootProject) {
subprojects.forEach { dependsOn(":${it.name}:build-plugin") }
}
doLast {
// Copy generated plugin jar into server plugins folder
copy {
from(File(project.buildDir, "libs"))
into(server.plugins)
}
logger.lifecycle("Built! plugins/${shadowJar.get().archiveFileName.get()}")
}
}
}
}
tasks {
/**
* Setup the workspace to develop the plugin
*/
register("setup") {
if (!buildTools.useLocalDependency) {
dependsOn("run-build-tools")
}
// Build the plugin to be able to test it
dependsOn("build-plugin")
}
/**
* Download the build tools
*/
register<Download>("download-build-tools") {
onlyIf {
!buildTools.useLocalDependency && !buildTools.file.exists() && !server.jar.exists()
}
val temp = buildTools.buildDir
// Check if the temporary folder doesn't exist
if (!temp.exists())
temp.mkdir() // Create the temporary folder
// Check if the temporary folder is file
if (temp.isFile)
error("Can't use the folder [.build-tools] because it's a file")
// Download the latest successful build of SpigotMC/BuildTools
src("https://hub.spigotmc.org/jenkins/job/BuildTools/lastSuccessfulBuild/artifact/target/BuildTools.jar")
// Put it in the .build-tools/
dest(buildTools.file)
}
/**
* Run build tools to create tools for the workspace
*/
register("run-build-tools") {
dependsOn("download-build-tools")
onlyIf {
!buildTools.useLocalDependency && (!server.jar.exists() && !buildTools.serverJar.exists())
}
doLast {
// Run the build tools to generate the server
javaexec {
workingDir = buildTools.buildDir
main = "-jar"
args = mutableListOf<String>(
buildTools.file.absolutePath,
"--rev",
buildTools.minecraftVersion
)
}
}
}
/**
* Build the server to test the plugin on it
*/
register("build-server") {
dependsOn("run-build-tools")
onlyIf {
!buildTools.useLocalDependency && !server.exists
}
server.mkdir()
doLast {
// Print the EULA to the user
printEULA()
// Wait for 2 seconds to realise the message
try {
Thread.sleep(2 * 1000)
} catch (e: Exception) {}
// Since the process didn't stop
// This means the user indicates to agree on the Minecraft EULA
// And this code automates the indicates process
val eula = server.eula
if (eula.exists()) {
var text = eula.readText()
text = text.replace("eula=false", "eula=true", true)
eula.writeText(text)
} else {
eula.writeText("eula=true")
}
// Copy the selected compiled server jar to the server folder
copy {
from(buildTools.serverJar)
into(server.dir)
rename {
"server.jar"
}
}
// Sends "stop" command to the server to stop after initialising
val stopCommand = "stop"
val input = ByteArrayInputStream(stopCommand.toByteArray(StandardCharsets.UTF_8))
// Run the server to initialise everything and then it executes the command "stop" to stop itself after getting the environment ready
javaexec {
standardInput = input
workingDir = server.dir
main = "-jar"
args = mutableListOf<String>(
server.jar.absolutePath
)
}
// Close the input after the termination of the server
input.close()
}
}
/**
* Run the server with the plugin on it
*/
register("run") {
dependsOn("build-plugin")
doLast {
printIntro()
logger.lifecycle("> Starting the server...")
logger.lifecycle("")
// Run the server to test the plugin
javaexec {
standardInput = System.`in`
workingDir = server.dir
main = "-jar"
args = mutableListOf(
server.jar.absolutePath
)
}
}
}
}
/**
* Print to the user that using the kit indicates that his/her agreement to Minecraft's EULA
*/
fun printEULA() {
val eulaInfo = mutableListOf(
" _____________________________________________________________________________________",
"| _________________________________________________________________________________ |",
"| | | |",
"| | ███████╗██╗ ██╗██╗ █████╗ | |",
"| | ██╔════╝██║ ██║██║ ██╔══██╗ | |",
"| | █████╗ ██║ ██║██║ ███████║ | |",
"| | ██╔══╝ ██║ ██║██║ ██╔══██║ | |",
"| | ███████╗╚██████╔╝███████╗██║ ██║ | |",
"| | | |",
"| | | |",
"| | [#] By using Spigot Starter Kit [#] | |",
"| | | |",
"| | You are indicating your agreement to Minecraft's EULA | |",
"| | https://account.mojang.com/documents/minecraft_eula | |",
"| |_________________________________________________________________________________| |",
"|_____________________________________________________________________________________|"
)
// Separate the EULA for more attention
for (i in 1..3) {
logger.lifecycle("")
}
for (i in eulaInfo) {
logger.lifecycle(i)
}
// Separate the EULA for more attention
logger.lifecycle("")
}
fun printIntro() {
val intro = arrayOf(
""" _____ _ __ """,
""" / ___/____ (_)___ _____ / /_ """,
""" \__ \/ __ \/ / __ `/ __ \/ __/ """,
""" ___/ / /_/ / / /_/ / /_/ / /_ """,
"""/____/ .___/_/\__, /\____/\__/ """,
""" /_/ /____/ """,
""" """,
""" [#] Spigot Starter Kit [#] """,
""" """
)
for (line in intro) {
logger.lifecycle(line)
}
}
internal class BuildTools (
val minecraftVersion: String,
val useSpigot: Boolean,
val useLocalDependency: Boolean,
val localDependencyVersion: String? = null
) {
val buildDir = File(".build-tools")
val file = File(buildDir, "build-tools.jar")
val serverJar = if (useSpigot) {
File(buildDir, "spigot-${minecraftVersion}.jar")
} else {
File(buildDir, "craftbukkit-${minecraftVersion}.jar")
}
}
/**
* Help making the server and structuring it
*/
internal class Server(
val dir: File = File("server")
) {
/**
* Plugins of the sever
*/
val plugins = File(dir, "plugins")
/**
* Server jar that manages the server
*/
val jar = File(dir, "server.jar")
/**
* Minecraft's EULA file
*/
val eula = File(dir, "eula.txt")
/**
* Does the server exist in the right way
*/
val exists: Boolean
get() {
return dir.exists() and plugins.exists() and jar.exists() and eula.exists()
}
/**
* Make the directories required for the server
*/
fun mkdir() {
dir.mkdir()
plugins.mkdir()
}
/**
* Delete the server
*/
fun delete() {
// Delete everything including the directory itself
dir.deleteRecursively()
// Create an empty directory for better user experience
dir.mkdir()
}
}