axion-release-plugin
axion-release-plugin copied to clipboard
Gradle release & version management plugin.
**Bug** When pushRelease is called and a tag that you are trying to push already exists on remote repo it fails with an unrelated error: :pushRelease Pushing all to remote:...
Tagging as it is works fine for me, but when I add simple hook to change the gradle.properties file and they perform release, commit is pushed without any branch attached...
I'm trying to setup the release plugin for a larger project (~80 modules). cV and nextRelease works fine, if I'm ignoring the org.eclipse.jgit.errors.RepositoryNotFoundException. The project is structured as: ``` project...
I'm looking to know the next version without actually making any changes to the repo, sort of like the `currentVersion`. I'd like to set up versioning rules in the build...
Kind of the same issue I'm experiencing on #162 but instead of a `..-beta`, I have a `..-rc.` in place. When I run `./gradlew cV` one or more commits after...
I'm not quite sure where the issue here lands, but I'm having an issue with the `pre 'commit'` hook. I have the following code: ``` gradle ... String pluginPath =...
We've been using this plugin for quite a long time in the Accurest project, but after switching to version 1.3.4, we have the following issue: after running `./gradlew createRelease` three...
If I wanted to impose a tag naming convention, or in other words, disallow some tags, how could I do that? I need a hook that gets called no matter...
I use this plugin in version '1.14.0'. The axion-release-plugin has a dependency on ``` project.ext.versions = [ jgit : '5.12.0.202106070339-r', ] ... implementation group: 'org.eclipse.jgit', name: 'org.eclipse.jgit', version: versions.jgit ```...
version=0.0.1-SNAPSHOT in gradle.properties is ignored currentVersion returns 0.1.0-SNAPSHOT, but I have no idea where that's coming from. There is no such tag on the repo. ''' $ git tag 0.0.1...