Fix parameters that were URL but broken under windows

git-svn-id: https://svn.apache.org/repos/asf/maven/maven-1/plugins/trunk@112976 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
dion 2003-02-23 12:51:19 +00:00
parent 8a55953b1d
commit 7ade43c7a6

View File

@ -1,6 +1,6 @@
<?xml version="1.0"?>
<project xmlns:j="jelly:core">
<project xmlns:j="jelly:core" xmlns:u="jelly:util">
<goal
name="pdf:init"
@ -27,6 +27,8 @@
property="maven.fo.navigation.available"/>
<fail message="PDF generation cannot complete as ${docsSrc}/navigation.xml is missing"
unless="maven.fo.navigation.available"/>
<u:file name="${plugin.resources}/project2fo.xslt" var="stylesheetFile" />
<u:file name="${docsSrc}/navigation.xml" var="navigationFile" />
<java classname="org.apache.xalan.xslt.Process" fork="yes" failonerror="true">
<classpath>
<pathelement location="${plugin.getDependencyPath('xerces')}"/>
@ -35,11 +37,11 @@
</classpath>
<sysproperty key="user.language" value="en"/>
<arg value="-in"/>
<arg value="file://${docsSrc}/navigation.xml"/>
<arg value="${navigationFile.toURL().toExternalForm()}"/>
<arg value="-out"/>
<arg value="${docsDest}/project.fo"/>
<arg value="-xsl"/>
<arg value="file://${plugin.resources}/project2fo.xslt"/>
<arg value="${stylesheetFile.toURL().toExternalForm()}"/>
<arg value="-param"/>
<arg value="basePath"/>
<arg value="${docsSrc}"/>