-
Notifications
You must be signed in to change notification settings - Fork 68
/
Copy pathpublishTasks.gradle.kts
56 lines (47 loc) · 2.42 KB
/
publishTasks.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
import java.util.Properties
/**
* Usage
* ./gradlew publishOnMavenCentral -PshouldRelease=false
*
* shouldRelease=true will publish & release the build. no manual intervention needed
* shouldRelease=false will only publish the build, need to manually release from https://central.sonatype.com/publishing/deployments
*/
tasks.register("publishOnMavenCentral") {
val shouldRelease = project.findProperty("shouldRelease")?.toString()?.toBoolean() ?: false
doLast {
val gradleFile = file("$rootDir/gradle.properties")
val credentialsFile = file("$rootDir/mavenCredentials.properties")
if (!credentialsFile.exists()) {
throw GradleException("❌ Credential file not found: $credentialsFile")
}
// Read existing gradle.properties content into a mutable map
val gradleProperties = Properties().apply { load(gradleFile.inputStream()) }.toMutableMap()
// Read credentials from credential.properties
val credentials = Properties().apply { load(credentialsFile.inputStream()) }
// Backup original gradle.properties content
val originalContent = gradleFile.readText()
// Override common keys & keep non-overlapping keys untouched
credentials.forEach { (key, value) -> gradleProperties[key.toString()] = value.toString() }
gradleProperties["signing.secretKeyRingFile"] = "$rootDir/secring.gpg"
// Write updated gradle.properties back to file
gradleFile.writer().use { writer ->
gradleProperties.forEach { (key, value) -> writer.write("$key=$value\n") }
}
try {
val releaseCommand =
if (shouldRelease) "publishAndReleaseToMavenCentral" else "publishToMavenCentral"
val releaseCommandMessage = if (shouldRelease) "Publish & Release" else "Publish"
// Run the Gradle publish command
println("🔹 Running Gradle publish task : $releaseCommandMessage")
project.exec {
commandLine("./gradlew", releaseCommand, "--no-configuration-cache")
}
println("✅ $releaseCommandMessage successful!")
println("Validate the deployment at https://central.sonatype.com/publishing/deployments")
} finally {
// Revert gradle.properties to original state
println("🔄 Reverting gradle.properties...")
gradleFile.writeText(originalContent)
}
}
}