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:
Trygve Laugstol 2005-08-18 12:49:31 +00:00
parent bea3c7f17b
commit 5aff0defc2
1 changed files with 3 additions and 1 deletions

View File

@ -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 );
}
}