net.twisterrob.gradle.vcs.VCSExtension.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of twister-convention-versioning Show documentation
Show all versions of twister-convention-versioning Show documentation
Gradle Plugin to set up versioning through properties and DSL.
The newest version!
package net.twisterrob.gradle.vcs
import org.gradle.api.Project
import org.gradle.api.file.FileCollection
interface VCSExtension {
val isAvailable: Boolean
val isAvailableQuick: Boolean
val revision: String
val revisionNumber: Int
fun files(project: Project): FileCollection
}