-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle.kts
246 lines (219 loc) · 7.49 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
// last updated: 2024/9/14
plugins {
`java-library`
signing
`maven-publish`
//application
}
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 projVersion: 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("example")
)
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
group = projGroupId
version = projVersion
repositories {
mavenCentral()
// snapshot repositories
//maven("https://s01.oss.sonatype.org/content/repositories/snapshots")
//maven("https://oss.sonatype.org/content/repositories/snapshots")
//maven("https://s01.oss.sonatype.org/content/repositories/releases")
//maven("https://oss.oss.sonatype.org/content/repositories/releases")
}
dependencies {
// add your dependencies
}
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")
}
java {
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 = "$projName $projVersion 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/")
}
if (jdkEnablePreview.toBoolean()) {
addBooleanOption("-enable-preview", true)
addStringOption("source", jdkVersion)
}
}
}
}
//application {
// applicationName = projName
// mainClass = "org.example.Main"
//}
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 projName,
"Implementation-Vendor" to projOrg.name,
"Implementation-Version" to projVersion
//"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 = projArtifactId
from(rootProject.file(projLicenseFileName)) {
rename(projLicenseFileName, "${projLicenseFileName}_$projArtifactId")
}
}
if (hasPublication.toBoolean() && publicationRepo != null) {
publishing.publications {
register<MavenPublication>("mavenJava") {
groupId = projGroupId
artifactId = projArtifactId
version = projVersion
description = projDesc
from(components["java"])
pom {
name = projName
description = projDesc
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 }
}
}
}
}
publishing.repositories {
maven {
name = publicationRepo.name
credentials {
username = publicationRepo.usernameFrom.firstNotNullOfOrNull(rootProject::findProperty).toString()
password = publicationRepo.passwordFrom.firstNotNullOfOrNull(rootProject::findProperty).toString()
}
url = uri(
if (publicationRepo.snapshotPredicate(projVersion)) publicationRepo.snapshotRepo
else publicationRepo.releaseRepo
)
}
}
signing {
if (!publicationRepo.snapshotPredicate(projVersion) && publicationSigning.toBoolean()) {
sign(publishing.publications["mavenJava"])
}
}
}