com.teamscale.BuildVersion.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of teamscale-gradle-plugin Show documentation
Show all versions of teamscale-gradle-plugin Show documentation
A Gradle plugin that supports collecting Testwise Coverage and uploading reports to Teamscale.
package com.teamscale
import java.util.*
/** Helper for getting the plugin version at runtime. */
object BuildVersion {
private val bundle = ResourceBundle.getBundle("com.teamscale.plugin")
/** Extracts the plugin's version from the jar's plugin.properties file. */
val pluginVersion: String
get() = bundle.getString("pluginVersion")
}