axion-release-plugin
axion-release-plugin copied to clipboard
Does not detect changes from parent directory
After upgrading plugin to version >=1.11.0, it only detects changes under project root directory (after monorepo support). In my project I have the following structure:
/.git
/dir/gradlew
/dir/build.gradle
in the settings I set:
scmVersion {
repository {
directory = project.rootProject.file('../')
}
}
./gradlew cV only detects changes made somewhere in /dir/(...).
It is not a monorepo, I have one project, but it is not in the same place as root git directory.