Resolving: MNG-1155...Applied patch for OS X path of javadoc.

git-svn-id: https://svn.apache.org/repos/asf/maven/components/trunk@315040 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
John Dennis Casey 2005-10-12 20:40:34 +00:00
parent 7df3803ef7
commit 2bc772a524
1 changed files with 4 additions and 0 deletions

View File

@ -885,6 +885,10 @@ public class JavadocReport
{
javadocExe = new File( SystemUtils.getJavaHome() + "/../sh", javadocCommand );
}
else if ( SystemUtils.IS_OS_MAC_OSX )
{
javadocExe = new File( SystemUtils.getJavaHome() + "/bin", javadocCommand );
}
else
{
javadocExe = new File( SystemUtils.getJavaHome() + "/../bin", javadocCommand );