generated from Over-Run/project-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle.kts
331 lines (293 loc) · 10.7 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
/*
* freeworld - 3D sandbox game
* Copyright (C) 2024 XenFork Union
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*/
// last updated: 2024/6/10
plugins {
`java-platform`
signing
`maven-publish`
}
val hasJavadocJar: String by rootProject
val hasSourcesJar: String by rootProject
val projGroupId: String by rootProject
val projArtifactId: String by rootProject
val projName: String by rootProject
val projDesc: String by rootProject
val projUrl: String? by rootProject
val projLicenseUrl: String? by rootProject
val projScmConnection: String? by rootProject
val projScmUrl: String? by rootProject
val projLicense: String by rootProject
val projLicenseFileName: String by rootProject
val orgName: String by rootProject
val orgUrl: String by rootProject
val projOrg = Organization(orgName, orgUrl)
val jdkVersion: String by rootProject
val jdkEnablePreview: String by rootProject
val jdkEarlyAccessDoc: String? by rootProject
val targetJavaVersion = jdkVersion.toInt()
val projDevelopers = arrayOf(
Developer("squid233")
)
data class Organization(
val name: String,
val url: String
)
data class Developer(
val id: String,
val name: String? = null,
val email: String? = null,
val url: String? = null,
val organization: Organization? = projOrg,
val roles: Set<String>? = null,
val timezone: String? = null,
val properties: Map<String, String?>? = null
)
data class PublicationRepo(
val name: String,
val usernameFrom: List<String>,
val passwordFrom: List<String>,
val snapshotRepo: String,
val releaseRepo: String,
val snapshotPredicate: (String) -> Boolean = { it.endsWith("-SNAPSHOT") }
)
val hasPublication: String by rootProject
val publicationSigning: String by rootProject
val publicationRepo: PublicationRepo? = if (hasPublication.toBoolean()) PublicationRepo(
name = "OSSRH",
usernameFrom = listOf("OSSRH_USERNAME", "ossrhUsername"),
passwordFrom = listOf("OSSRH_PASSWORD", "ossrhPassword"),
snapshotRepo = "https://s01.oss.sonatype.org/content/repositories/snapshots/",
releaseRepo = "https://s01.oss.sonatype.org/service/local/staging/deploy/maven2/"
) else null
val projVersion: String by rootProject
val coreVersion: String by rootProject
val clientVersion: String by rootProject
val mathVersion: String by rootProject
val annotationsVersion: String by rootProject
val commonsPoolVersion: String by rootProject
val gsonVersion: String by rootProject
val logbackVersion: String by rootProject
val reactorVersion: String by rootProject
class GameModule(
val artifactId: String,
val version: String,
val description: String
)
val moduleCore = GameModule(
"freeworld", coreVersion,
"freeworld core library"
)
val moduleClient = GameModule(
"freeworld-client", clientVersion,
"freeworld client library"
)
val moduleMath = GameModule(
"freeworld-math", mathVersion,
"freeworld math library"
)
val gameModules = listOf(
moduleCore,
moduleClient,
moduleMath
)
version = projVersion
allprojects {
group = projGroupId
repositories {
mavenCentral()
// snapshot repositories
//maven { url = uri("https://oss.sonatype.org/content/repositories/snapshots") }
maven("https://s01.oss.sonatype.org/content/repositories/snapshots")
//maven { url = uri("https://oss.oss.sonatype.org/content/repositories/releases") }
maven("https://s01.oss.sonatype.org/content/repositories/releases")
}
}
subprojects {
apply(plugin = "java-library")
val compileOnly by configurations
val implementation by configurations
dependencies {
compileOnly("org.jetbrains:annotations:$annotationsVersion")
implementation("ch.qos.logback:logback-classic:$logbackVersion")
implementation("com.google.code.gson:gson:$gsonVersion")
implementation("org.apache.commons:commons-pool2:$commonsPoolVersion")
implementation(platform("io.projectreactor:reactor-bom:$reactorVersion"))
implementation("io.projectreactor:reactor-core")
implementation("io.projectreactor.addons:reactor-pool")
}
}
gameModules.forEach {
project(":${it.artifactId}") {
version = it.version
tasks.withType<JavaCompile> {
options.encoding = "UTF-8"
if (targetJavaVersion >= 10 || JavaVersion.current().isJava10Compatible) {
options.release = targetJavaVersion
}
if (jdkEnablePreview.toBoolean()) options.compilerArgs.add("--enable-preview")
}
tasks.withType<Test> {
if (jdkEnablePreview.toBoolean()) jvmArgs("--enable-preview")
}
the<JavaPluginExtension>().apply {
val javaVersion = JavaVersion.toVersion(targetJavaVersion)
if (JavaVersion.current() < javaVersion) {
toolchain.languageVersion = JavaLanguageVersion.of(targetJavaVersion)
}
if (hasJavadocJar.toBoolean()) withJavadocJar()
if (hasSourcesJar.toBoolean()) withSourcesJar()
}
tasks.withType<Javadoc> {
isFailOnError = false
options {
encoding = "UTF-8"
locale = "en_US"
windowTitle = "${it.artifactId} ${it.version} Javadoc"
if (this is StandardJavadocDocletOptions) {
charSet = "UTF-8"
isAuthor = true
if (jdkEarlyAccessDoc == null) {
links("https://docs.oracle.com/en/java/javase/$jdkVersion/docs/api/")
} else {
links("https://download.java.net/java/early_access/$jdkEarlyAccessDoc/docs/api/")
}
links("https://over-run.github.io/overrungl/")
if (jdkEnablePreview.toBoolean()) {
addBooleanOption("-enable-preview", true)
addStringOption("source", jdkVersion)
}
}
}
}
tasks.named<Jar>("jar") {
manifestContentCharset = "utf-8"
setMetadataCharset("utf-8")
manifest.attributes(
"Specification-Title" to projName,
"Specification-Vendor" to projOrg.name,
"Specification-Version" to projVersion,
"Implementation-Title" to it.artifactId,
"Implementation-Vendor" to projOrg.name,
"Implementation-Version" to it.version
//"Main-Class" to "org.example.Main"
)
}
if (hasSourcesJar.toBoolean()) {
tasks.named<Jar>("sourcesJar") {
dependsOn(tasks["classes"])
archiveClassifier = "sources"
from(sourceSets["main"].allSource)
}
}
if (hasJavadocJar.toBoolean()) {
tasks.named<Jar>("javadocJar") {
val javadoc by tasks
dependsOn(javadoc)
archiveClassifier = "javadoc"
from(javadoc)
}
}
tasks.withType<Jar> {
archiveBaseName = it.artifactId
from(rootProject.file(projLicenseFileName)).rename(
projLicenseFileName,
"${projLicenseFileName}_${it.artifactId}"
)
}
}
}
if (hasPublication.toBoolean() && publicationRepo != null) {
publishing.publications {
fun MavenPom.setupPom(pomName: String, pomDescription: String, pomPackaging: String) {
name = pomName
description = pomDescription
packaging = pomPackaging
projUrl?.also { url = it }
licenses {
license {
name = projLicense
url = projLicenseUrl
}
}
organization {
name = projOrg.name
url = projOrg.url
}
developers {
projDevelopers.forEach {
developer {
id = it.id
it.name?.also { name = it }
it.email?.also { email = it }
it.url?.also { url = it }
it.organization?.also {
organization = it.name
organizationUrl = it.url
}
it.roles?.also { roles = it }
it.timezone?.also { timezone = it }
it.properties?.also { properties = it }
}
}
}
scm {
projScmConnection?.also {
connection = it
developerConnection = it
}
projScmUrl?.also { url = it }
}
}
gameModules.forEach { gameModule ->
register<MavenPublication>("mavenJava${gameModule.artifactId}") {
groupId = projGroupId
artifactId = gameModule.artifactId
version = gameModule.version
description = gameModule.description
project(":${gameModule.artifactId}") {
from(components["java"])
}
pom {
setupPom(gameModule.artifactId, gameModule.description, "jar")
}
}
}
register<MavenPublication>("mavenBOM") {
from(components["javaPlatform"])
pom {
setupPom(projArtifactId, projDesc, "pom")
}
}
}
publishing.repositories {
maven {
name = publicationRepo.name
credentials {
username = publicationRepo.usernameFrom.firstNotNullOfOrNull { rootProject.findProperty(it) }.toString()
password = publicationRepo.passwordFrom.firstNotNullOfOrNull { rootProject.findProperty(it) }.toString()
}
url = uri(
if (publicationRepo.snapshotPredicate(projVersion)) publicationRepo.snapshotRepo
else publicationRepo.releaseRepo
)
}
}
signing {
if (!publicationRepo.snapshotPredicate(projVersion) && publicationSigning.toBoolean()) {
gameModules.forEach { sign(publishing.publications["mavenJava${it.artifactId}"]) }
sign(publishing.publications["mavenBOM"])
}
}
}
dependencies {
constraints {
gameModules.forEach { api("$projGroupId:${it.artifactId}:${it.version}") }
}
}