Package io.github.gmazzo.gitversion
Interface GitVersionValueSource.Params
-
- All Implemented Interfaces:
-
org.gradle.api.provider.ValueSourceParameters
public interface GitVersionValueSource.Params implements ValueSourceParameters
-
-
Method Summary
Modifier and Type Method Description abstract DirectoryPropertygetGitRoot()abstract Property<String>getTagPrefix()abstract Property<String>getInitialVersion()abstract Property<Boolean>getForceSnapshot()abstract Property<String>getVersionModifier()abstract Property<GitVersionProducer>getVersionProducer()-
-
Method Detail
-
getGitRoot
abstract DirectoryProperty getGitRoot()
-
getTagPrefix
abstract Property<String> getTagPrefix()
-
getInitialVersion
abstract Property<String> getInitialVersion()
-
getForceSnapshot
abstract Property<Boolean> getForceSnapshot()
-
getVersionModifier
abstract Property<String> getVersionModifier()
-
getVersionProducer
abstract Property<GitVersionProducer> getVersionProducer()
-
-
-
-