In the mojo there is a Property with a default value of
"${project.build.directory}/checkout"

When maven is run in a directory with a pom, this will get interpolated as
"/full/path/to_directory_with_pom_file/target"

When maven is run in a directory without a pom, this will get interpolated
to
"${project.basedir}/target"

Why isn't ${project.basedir} expanded to the current working directory?

Reply via email to