axion-release-plugin icon indicating copy to clipboard operation
axion-release-plugin copied to clipboard

Gradle release & version management plugin.

Results 177 axion-release-plugin issues
Sort by recently updated
recently updated
newest added
trafficstars

We have a Jenkins worker on an EC2 instance working with IAM role with all necessary permissions to pull/push using git to codecommit. When we execute straight up git pull/push...

We're pushing releases from our CI server into github via SSH authentication over corkscrew to bypass certain network restrictions. Even though I've pointed axion to our key, it doesn't seem...

Hi I have a simple project with axion: ``` plugins { id 'java' id 'pl.allegro.tech.build.axion-release' version '1.10.1' } scmVersion { branchVersionCreator = [ 'rc/.*' : 'versionWithBranch' ] branchVersionIncrementer = [...

I have a simple requirement, and already use this plugin for releasing, so was curious if this plugin could handle it. For smoke testing purposes I have with a Gradle...

@adamdubiel In the document, users should get the same output as the currentVersion task, but actually it is not. there is another issue #207 talks about this issue, but it...

axion-release-plugin: 1.10.0 Gradle: 4.10.2 Configuration: ``` buildscript { dependencies { classpath group: 'pl.allegro.tech.build', name: 'axion-release-plugin', version: '1.10.0' } } apply plugin: 'pl.allegro.tech.build.axion-release' project.version = scmVersion.version ``` When executing the steps...

I have a project that cannot use semantic versioning. I am a strong proponent of semantic versioning, but this particular project has some special circumstances for which semantic versioning is...

Given a project that has never been released yet (no release tags), using the Axion defaults, the following happens: ``` > gradlew currentVersion Project version: 0.1.0-SNAPSHOT ``` ``` > gradlew...

Having the latest tag `2.1.0-beta` the next version resolved by Axion when a default incrementer is used is `2.1.1`. I would expect `2.1.0` which is resolved when `2.1.0-alpha` is found....

Hello. I'm evaluating this plugin, It seems to be just what I needed. Reading the documentation, I am a little bit confused on how the 'BranchVersionIncrementer' works. I have this...