Hi
I get some regressions with maven-release-plugin related to
http://jira.codehaus.org/browse/MRELEASE-261
Here is a testCase to demonstrate the issue. This is the same testCase as
the existing one BUT the parent project is not first one in the reactor
project list
public void
testGetCommonBasedirOfRegularMultiModuleRootNotBeeingFirstInReactor()
throws Exception
{
assertEquals( "/working/directory/flat-multi-module",
ReleaseUtil.getCommonBasedir( Arrays.asList(
new MavenProject[]{
createProject( "/working/directory/flat-multi-module/core"
),
createProject( "/working/directory/flat-multi-module" ),
createProject( "/working/directory/flat-multi-module/webapp"
)} ), '/' ) );
}
The result from getCommonBasedir is "/working/directory/"
Should I reopen the issue or create a new one ?