axion-release-plugin
axion-release-plugin copied to clipboard
Gradle release & version management plugin.
Implement version pinning in Axion (closes #328) TODO: * Missing unit tests for `VersionService` * More integration tests * Documentation
Thanks for a nice plugin. This is the implementation of issue #340 It has code and tests and user documentation allowing user to do ``` scmVersion { useGlobalVersion = true...
Fixes #325 and #314: enables modules dependent on other submodules to have their version incremented, even if there are no code changes in that module. There were two issues with...
This pull request fixes the following restriction: tag prefixes for each module do not overlap, i.e. !tagA.startsWith(tagB) for each permutation of all tag prefixes Now tags are filtered by stronger...
Created predefined incrementers: - createMajorRC: Create a prerelase with -RC1 for the next major version - createMinorRC: Create a prerelease with -RC2 for the next minor version - incrementPrereleaseOrMinor: Increment...
I am executing the following code and recieving the following error ``` [root@vm-1939222 irmo]# ./gradlew -stacktrace release -Prelease.forceVersion=5.1.609 > Configure project : [ant:taskdef] Could not load definitions from resource net/sf/antcontrib/antlib.xml....
I have a use case for a multi project build where `modules a,b,c and d` have a dependency on `module e` (common module they import). I can get `modules a,b,c...
Hi. I'm are using axion for some time in many projects. Recently I needed to update gradle to 7 from 6 and this required update of axion to latest version...
Hello, I'm trying to locally run the release command for testing purposes, as I'm facing trouble in my CI. The documentation states [here ](https://axion-release-plugin.readthedocs.io/en/latest/configuration/authorization/#dynamic_1) ``` task loadGitHubToken Could not find...
With the new support for monorepos, there is an issue when a submodule depends on another module but there are no code changes within the dependent module, in that the...