axion-release-plugin
axion-release-plugin copied to clipboard
Gradle release & version management plugin.
Currently, the axion-release-plugin pushes all tags when creating a release, and will therefore potentially also push tags that were unintended. Wouldn't it be cleaner if only the newly created release...
Hi, I would like to use axion-release-plugin to name my version artifacts and tag prefix in azure devOps pipeline. I tried all tips from https://axion-release-plugin.readthedocs.io/en/latest/configuration/ci_servers/#azure-devops-pipelines like: ./gradlew release \ -Prelease.disableChecks...
We use `axion-release-plugin` in our git monorepo which consists of over 60 deployables. Profiling our build process revealed that `axion-release-plugin` is responsible for most of execution time in configuration phase....
This is a proposal for solving problem discussed in #142 ### Problem Creating versions like: `1.0.0-beta1` in a dynamic and generic way, without defining custom `versionIncrementor`. ### Proposed solution Add...
I'm trying to configure axion-plugin with my multi-module project just as it says the documentation "https://axion-release-plugin.readthedocs.io/en/latest/configuration/basic_usage/". ``` buildscript { repositories { google() jcenter() maven("https://plugins.gradle.org/m2/") } dependencies { classpath("com.raxdenstudios:android-plugins:0.15") } }...
Hello! Im currently using Jenkins and multibranch pipeline for our CI. During jenkins job I get following error when running` ./gradlew release -Prelease.disableChecks -Prelease.pushTagsOnly` ``` > Task :verifyRelease Skipping uncommitted...
I really like behavior of `versionCreator 'versionWithBranch'`, except one thing. I want it to work for snapshots only. E.g. on branch `hotfix` I want `currentVersion` return: - `1.0.1` when on...
`axion-release` was first written back in the days, when Gradle recommended writing plugins in Groovy and a lot of build ran on Java 1.6 or 1.7. This is no longer...
When Running the gradle task gradlew release -Prelease.disableChecks -Prelease.pushTagsOnly getting the NPE. Attached the stack trace for reference.
Thanks for a nice plugin 8) I have a use case, where I need to consider versions in all branches and find the largest amongst them all. Given the git...