Hi, I am trying to use <https://github.com/Zoltu/G...
# gradle
k
Hi, I am trying to use https://github.com/Zoltu/Gradle.Plugin.Versioning it allows for additional configuration through gradle like this:
Copy code
ZoltuGitVersioning {
    customVersionToString { versionInfo ->
        "${versionInfo.major}.${versionInfo.minor}.${versionInfo.patch}.${versionInfo.commitCount}"
    }
}
But there is no such class in the library as
ZoltuGitVersioning
.
ZoltuGitVersioning
is defined as
Copy code
private fun exposeConfigurationObject(project: Project) = project.extensions.create("ZoltuGitVersioning", Configuration::class.java, { versionInfo })
How should I refer to it from my kotlin build script?