gradle-git-versioning-plugin icon indicating copy to clipboard operation
gradle-git-versioning-plugin copied to clipboard

This extension will set project version, based on current Git branch or tag.

Results 18 gradle-git-versioning-plugin issues
Sort by recently updated
recently updated
newest added

Reduce the amount of config in `build.gradle.kts` by creating buildSrc convention plugins. This shouldn't have any functional impact. Depends on #100 * set up buildSrc * create convention plugins for...

At the moment the version is constructed based on a static string template. The plugin will do a find/replace in the `version` string for format placeholders, and replace them with...

enhancement

When running from git submodule it would normally inspect submodule git situation instead of main repo. To enable usage when based in submodule added option to override git directory (by...

I've tried to use [RevAPI](https://plugins.gradle.org/plugin/org.revapi.revapi-gradle-plugin) to determine the version number for source/binary compatible changes programatically ```kotlin val majorVersionIncrement: String = "\${describe.tag.version.major.next}.0.0" val minorVersionIncrement: String = "\${describe.tag.version.major}." + "\${describe.tag.version.minor.next}.0" val patchVersionIncrement:...

Hi, I wanted to access the project property `git.commit.timestamp` and tried several things like `val commitTime: Long = (project.properties.get("git.commit.timestamp") as String).toLong()` and `val commitTime: Long = (gitVersioning.ext.get("git.commit.timestamp") as String).toLong()`, but...

Hi, The project I'm working on uses a 6-section version number scheme that has semantic meaning within the org. The first 5 sections of the version number will always be...

Currently the plugin prints out 5 separate log messages describing refs, configurations, versions, and describeTagFirstParent, plus a newline. This is in addition to printing out the actual fully resolved version....

``` > Configure project : matching ref: BRANCH - feat/DV-8832/productsup-export ref configuration: BRANCH - pattern: .+ version: ${ref} project version: feat-DV-8832-productsup-export project version: feat-DV-8832-productsup-export project version: feat-DV-8832-productsup-export project version: feat-DV-8832-productsup-export...

enhancement