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

Does not detect changes from parent directory

Open klekowskim opened this issue 3 years ago • 0 comments

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.

klekowskim avatar May 31 '22 12:05 klekowskim