mirror of https://github.com/apache/maven.git
o Replacing hardcoded path separator ';' value with ${path.separator}.
git-svn-id: https://svn.apache.org/repos/asf/maven/components/trunk@233315 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
bea3c7f17b
commit
5aff0defc2
|
@ -83,6 +83,8 @@ public class JavadocReport
|
|||
/** Default window title */
|
||||
private static final String DEFAULT_WINDOW_TITLE = "${project.name} ${project.version} API";
|
||||
|
||||
private static final String PATH_SEPARATOR = System.getProperty( "path.separator" );
|
||||
|
||||
/**
|
||||
* @parameter expression="${project.build.directory}/site"
|
||||
* @required
|
||||
|
@ -644,7 +646,7 @@ public class JavadocReport
|
|||
classpath.append( (String) i.next() );
|
||||
if ( i.hasNext() )
|
||||
{
|
||||
classpath.append( ";" );
|
||||
classpath.append( PATH_SEPARATOR );
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue