refactor(build): migrate to java-semver

This commit is contained in:
Harsh Shandilya 2024-03-22 00:03:48 +05:30
parent e266534579
commit 93ee16df38
3 changed files with 13 additions and 13 deletions

View file

@ -8,7 +8,7 @@ package app.passwordstore.gradle.versioning
import com.android.build.api.variant.ApplicationAndroidComponentsExtension import com.android.build.api.variant.ApplicationAndroidComponentsExtension
import com.android.build.api.variant.VariantOutputConfiguration import com.android.build.api.variant.VariantOutputConfiguration
import com.android.build.gradle.internal.plugins.AppPlugin import com.android.build.gradle.internal.plugins.AppPlugin
import com.vdurmont.semver4j.Semver import com.github.zafarkhaja.semver.Version
import java.util.Properties import java.util.Properties
import java.util.concurrent.atomic.AtomicBoolean import java.util.concurrent.atomic.AtomicBoolean
import org.gradle.api.Plugin import org.gradle.api.Plugin
@ -56,30 +56,30 @@ class VersioningPlugin : Plugin<Project> {
} }
} }
} }
val version = Semver(versionName) val version = Version.parse(versionName)
tasks.register<VersioningTask>("clearPreRelease") { tasks.register<VersioningTask>("clearPreRelease") {
description = "Remove the pre-release suffix from the version" description = "Remove the pre-release suffix from the version"
semverString.set(version.withClearedSuffix().toString()) semverString.set(version.toStableVersion().toString())
propertyFile.set(propFile) propertyFile.set(propFile)
} }
tasks.register<VersioningTask>("bumpMajor") { tasks.register<VersioningTask>("bumpMajor") {
description = "Increment the major version" description = "Increment the major version"
semverString.set(version.withIncMajor().withClearedSuffix().toString()) semverString.set(version.nextMajorVersion().toString())
propertyFile.set(propFile) propertyFile.set(propFile)
} }
tasks.register<VersioningTask>("bumpMinor") { tasks.register<VersioningTask>("bumpMinor") {
description = "Increment the minor version" description = "Increment the minor version"
semverString.set(version.withIncMinor().withClearedSuffix().toString()) semverString.set(version.nextMinorVersion().toString())
propertyFile.set(propFile) propertyFile.set(propFile)
} }
tasks.register<VersioningTask>("bumpPatch") { tasks.register<VersioningTask>("bumpPatch") {
description = "Increment the patch version" description = "Increment the patch version"
semverString.set(version.withIncPatch().withClearedSuffix().toString()) semverString.set(version.nextPatchVersion().toString())
propertyFile.set(propFile) propertyFile.set(propFile)
} }
tasks.register<VersioningTask>("bumpSnapshot") { tasks.register<VersioningTask>("bumpSnapshot") {
description = "Increment the minor version and add the `SNAPSHOT` suffix" description = "Increment the minor version and add the `SNAPSHOT` suffix"
semverString.set(version.withIncMinor().withSuffix("SNAPSHOT").toString()) semverString.set(version.nextMinorVersion("SNAPSHOT").toString())
propertyFile.set(propFile) propertyFile.set(propFile)
} }
afterEvaluate { afterEvaluate {

View file

@ -5,7 +5,7 @@
package app.passwordstore.gradle.versioning package app.passwordstore.gradle.versioning
import com.vdurmont.semver4j.Semver import com.github.zafarkhaja.semver.Version
import org.gradle.api.DefaultTask import org.gradle.api.DefaultTask
import org.gradle.api.file.RegularFileProperty import org.gradle.api.file.RegularFileProperty
import org.gradle.api.provider.Property import org.gradle.api.provider.Property
@ -21,11 +21,11 @@ abstract class VersioningTask : DefaultTask() {
@get:OutputFile abstract val propertyFile: RegularFileProperty @get:OutputFile abstract val propertyFile: RegularFileProperty
/** Generate the Android 'versionCode' property */ /** Generate the Android 'versionCode' property */
private fun Semver.androidCode(): Int { private fun Version.androidCode(): Long {
return major * 1_00_00 + minor * 1_00 + patch return majorVersion() * 1_00_00 + minorVersion() * 1_00 + patchVersion()
} }
private fun Semver.toPropFileText(): String { private fun Version.toPropFileText(): String {
val newVersionCode = androidCode() val newVersionCode = androidCode()
val newVersionName = toString() val newVersionName = toString()
return buildString { return buildString {
@ -45,6 +45,6 @@ abstract class VersioningTask : DefaultTask() {
@TaskAction @TaskAction
fun execute() { fun execute() {
propertyFile.get().asFile.writeText(Semver(semverString.get()).toPropFileText()) propertyFile.get().asFile.writeText(Version.parse(semverString.get()).toPropFileText())
} }
} }

View file

@ -48,7 +48,7 @@ build-moshi = { module = "com.squareup.moshi:moshi", version.ref = "moshi" }
build-moshi-kotlin = { module = "com.squareup.moshi:moshi-kotlin", version.ref = "moshi" } build-moshi-kotlin = { module = "com.squareup.moshi:moshi-kotlin", version.ref = "moshi" }
build-okhttp = "com.squareup.okhttp3:okhttp:4.12.0" build-okhttp = "com.squareup.okhttp3:okhttp:4.12.0"
build-r8 = "com.android.tools:r8:8.3.37" build-r8 = "com.android.tools:r8:8.3.37"
build-semver = "com.vdurmont:semver4j:3.1.0" build-semver = "com.github.zafarkhaja:java-semver:0.10.2"
build-sentry = "io.sentry.android.gradle:io.sentry.android.gradle.gradle.plugin:4.3.1" build-sentry = "io.sentry.android.gradle:io.sentry.android.gradle.gradle.plugin:4.3.1"
compose-bom = "androidx.compose:compose-bom:2024.03.00" compose-bom = "androidx.compose:compose-bom:2024.03.00"
compose-foundation-core = { module = "androidx.compose.foundation:foundation" } compose-foundation-core = { module = "androidx.compose.foundation:foundation" }