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

What is the best way to increment minor (not patch) version numbers between releases and also when doing a prerelease? Are there examples of custom `versionIncrementor` usages around? I need...

This is possible: ``` ./gradlew release -Prelease.versionIncrementer=incrementPrerelease ``` but how can I accomplish this function in the shell including the RC1 portion? ``` scmVersion { versionIncrementer 'incrementPrerelease', [initialPreReleaseIfNotOnPrerelease: 'RC1'] }...

I have a demo application which has libraries. It has 2 sub modules: demo/ ->sub-demo1/ ->sub-demo2/ Their gradle configurations: **build.gradle.kts** for demo ```kotlin plugins { java id("pl.allegro.tech.build.axion-release") version "1.16.1" }...

Hi All, Could you please have a look and advise what may have been set up in wrong way in the following Axion plugin configuration as the expectation I'd had...

configuring axion in gradle project. I want to force a default version for all the SNAPSHOT jar. but when I am preapring the build locally it is failing with below...

How would one check if the current version is a snapshot programmatically? Currently, I am using ```kotlin val Project.isSnapshot: Boolean get() = version.toString().endsWith("-SNAPSHOT") ``` however, this feels sub-par. There currently...

Reproduction scenario: - Create a new (empty) Gradle project with Gradle 8.4 (for simplicity: without subprojects) - Apply the Base Plugin in the plugins block (Gradle builtin plugin) - Apply...

This is likely just be an issue with my understanding, but I'm struggling to use the Kotlin DSL example as is from https://axion-release-plugin.readthedocs.io/en/latest/examples/examples/#use-with-gradle-kotlin-dsl. I'm getting this error: Could not find...

I try to declare and configure `axion-release-plugin` from `buildSrc` directory and `libs.versions.toml` versions catalog file with Gradle-7.6 and JDK-17. Then we have - In `libs.versions.toml`: ``` [libraries] (...) axion-release-plugin =...

Hi Team, We are trying to use `postRelease` hook to update the version in readMe with latest version which is just released. Below is the code, I have taken from...