-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle.kts
More file actions
451 lines (373 loc) · 13.4 KB
/
build.gradle.kts
File metadata and controls
451 lines (373 loc) · 13.4 KB
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
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
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.5.0"
id("de.undercouch.download") version "4.0.4"
id("com.github.johnrengelman.shadow") version "6.0.0"
}
val useLocalDependency: String by project
val kotlinVersion = "1.5.0"
group = "me.ihdeveloper"
version = "0.1"
// The server to run the plugins on it
internal val server = Server()
// The build tools to use the Bukkit api
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 local version of the cached dependency
localDependencyVersion = "1.8.8-R0.1-SNAPSHOT"
)
allprojects {
repositories {
mavenCentral()
mavenLocal()
maven(url = "https://jitpack.io")
}
}
subprojects {
apply(plugin = "java")
apply(plugin = "kotlin")
apply(plugin = "com.github.johnrengelman.shadow")
configure<JavaPluginConvention> {
sourceCompatibility = JavaVersion.VERSION_1_8
}
dependencies {
if (project.name == "kotlin") {
implementation(kotlin("stdlib"))
implementation(kotlin("reflect"))
implementation("org.jetbrains.kotlinx:kotlinx-coroutines-core:$kotlinVersion")
implementation(project(":game-service"))
implementation(project(":protocol"))
} else {
if (project.name == "game-service") {
implementation(kotlin("stdlib"))
implementation(kotlin("reflect"))
} else {
compileOnly(kotlin("stdlib"))
compileOnly(kotlin("reflect"))
compileOnly("org.jetbrains.kotlinx:kotlinx-coroutines-core:$kotlinVersion")
}
}
// Include the server jar source
if (project.name != "game-service" && project.name != "protocol") {
if (buildTools.useLocalDependency) {
compileOnly("org.spigotmc:spigot:${buildTools.localDependencyVersion}")
} else {
compileOnly(files(buildTools.serverJar.absolutePath))
}
compileOnly(project(":protocol"))
compileOnly("me.ihdeveloper:spigot-dev-tools:v0.3-alpha")
if (project.name != "core")
compileOnly(project(":core"))
}
}
tasks.withType<KotlinCompile>().configureEach {
kotlinOptions {
jvmTarget = "1.8"
useIR = true
}
}
tasks {
shadowJar {
// If there's no version implemented then we give a default version to the project
if (archiveVersion.orNull == null) {
archiveVersion.set(rootProject.version.toString())
}
// Change the generated archive name
val name = "${rootProject.name.toLowerCase()}-${archiveBaseName.get()}-${archiveVersion.get()}.${archiveExtension.get()}"
archiveFileName.set(name)
}
/**
* Overwrite the build task to put the compiled jar into the build folder instead of build/libs
*/
build {
dependsOn("shadowJar")
doLast {
val pluginJar = project.buildDir.absolutePath + "/libs/" + shadowJar.get().archiveFileName.get()
// Copy the compiled plugin jar from build/libs to build/
copy {
from(pluginJar)
into(rootProject.buildDir)
}
}
}
/**
* Copy the generated plugin jar of the project to the server plugins folder
*/
register("copy-to-server") {
onlyIf {
!File(server.plugins, shadowJar.get().archiveFileName.get()).isFile
}
dependsOn("build")
doLast {
val pluginJar = project.buildDir.absolutePath + "/libs/" + shadowJar.get().archiveFileName.get()
// Copy the compiled plugin jar to the server/plugins
copy {
from(pluginJar)
into(server.plugins)
}
}
}
/**
* Prepare the plugin for the server
*/
register("prepare") {
if (project.name != "game-service") {
dependsOn(":build-server")
dependsOn(":clean-plugins")
dependsOn("copy-to-server")
}
}
}
}
tasks {
/**
* Clean the plugins jars in the plugins folder of the server
*/
register("clean-plugins") {
doLast {
for (file in server.plugins.listFiles()!!) {
if (!file.name.startsWith(rootProject.name.toLowerCase()) || !file.name.endsWith(".jar"))
continue
file.delete()
}
}
}
/**
* Setup the workspace to develop the plugin
*/
register("setup") {
// Build the plugin to be able to test it
dependsOn("build-server")
}
/**
* Download the build tools
*/
register<Download>("download-build-tools") {
onlyIf {
!buildTools.useLocalDependency && !buildTools.file.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 && !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")
val server = server
onlyIf {
!server.exists
}
server.mkdir()
doLast {
// Print the EULA to the user
printEULA()
// Wait for 10 seconds to realise the message
try {
Thread.sleep(10 * 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
*/
register("run") {
for (project in subprojects) {
mustRunAfter(":${project.name}:prepare")
}
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
) {
val buildDir = File(".build-tools")
val file = File(buildDir, "build-tools.jar")
val libsDir = File("build/libs/")
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 {
/**
* Directory of the server
*/
val dir: File get() { return File(rootProject.projectDir, "server") }
/**
* Plugins of the sever
*/
val plugins: File get() { return File(dir, "plugins") }
/**
* Server jar that manages the server
*/
val jar: File get() { return File(dir, "server.jar") }
/**
* Minecraft's EULA file
*/
val eula: File get() { return 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()
}
}