-
Notifications
You must be signed in to change notification settings - Fork 28
/
build.gradle.kts
executable file
·92 lines (77 loc) · 2.8 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
import org.jetbrains.kotlin.gradle.tasks.KotlinJvmCompile
import build.release.createRelease
import org.jetbrains.kotlin.gradle.dsl.JvmTarget
description = "Robocode: Build the best - destroy the rest!"
group = "dev.robocode.tankroyale"
val version: String = libs.versions.tankroyale.get()
val ossrhUsername: String? by project
val ossrhPassword: String? by project
val tankRoyaleGitHubToken: String? by project
val `nuget-api-key`: String? by project
plugins {
alias(libs.plugins.kotlin.jvm)
alias(libs.plugins.kotlin.serialization)
alias(libs.plugins.nexus.publish)
alias(libs.plugins.benmanes.versions) // dependency management only
}
subprojects {
repositories {
mavenLocal()
mavenCentral()
}
tasks {
withType<KotlinJvmCompile>().configureEach {
compilerOptions {
jvmTarget = JvmTarget.JVM_11
}
}
// Make sure to replace $version token in version.txt when processing the resources
withType<ProcessResources> {
filesMatching("version.properties") {
expand(mapOf("version" to version))
}
}
}
}
tasks {
register("build-release") {
dependsOn(
"bot-api:java:assemble", // Bot API for Java VM
"bot-api:dotnet:assemble", // Bot API for .Net
"booter:assemble", // Booter (for booting up bots locally)
"server:assemble", // Server
"gui-app:assemble", // GUI
"sample-bots:java:zip", // Sample bots for Java
"sample-bots:csharp:zip", // Sample bots for C#
"buildDocs:uploadDocs", // Documentation
"bot-api:dotnet:uploadDocs", // Docfx documentation for .NET Bot API
"bot-api:java:uploadDocs" // Javadocs for Java Bot API
)
}
register("create-release") {
dependsOn("build-release")
doLast {
val version = libs.versions.tankroyale.get()
if (tankRoyaleGitHubToken.isNullOrBlank()) {
throw IllegalStateException("'token' is null or blank meaning that it is missing")
}
createRelease(projectDir, version, tankRoyaleGitHubToken!!)
}
}
}
nexusPublishing {
repositories.apply {
sonatype { // only for users registered in Sonatype after 24 Feb 202
nexusUrl.set(uri("https://s01.oss.sonatype.org/service/local/"))
snapshotRepositoryUrl.set(uri("https://s01.oss.sonatype.org/content/repositories/snapshots/"))
username.set(ossrhUsername)
password.set(ossrhPassword)
}
}
}
val initializeSonatypeStagingRepository by tasks.existing
subprojects {
initializeSonatypeStagingRepository {
shouldRunAfter(tasks.withType<Sign>())
}
}