MPMULTIPROJECT-61: do not escape xml as text in overview page transformation

git-svn-id: https://svn.apache.org/repos/asf/maven/maven-1/plugins/trunk@295002 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
ltheussl 2005-10-05 06:09:04 +00:00
parent 781222e6b0
commit aa0a449e6c

View File

@ -185,13 +185,16 @@
<j:if test="${overviewPageCreate=='true'}"> <j:if test="${overviewPageCreate=='true'}">
<ant:echo>Creating overview page</ant:echo> <ant:echo>Creating overview page</ant:echo>
<j:set var="encoding" value="${maven.docs.outputencoding}"/> <j:set var="stylesheetURI" value="file:${plugin.resources}/templates/projects-overview.jelly"/>
<doc:jslFile <j:file
output="${maven.gen.docs}/${overviewPageLink}.xml" name="${maven.gen.docs}/${overviewPageLink}.xml"
stylesheet="${plugin.resources}/templates/projects-overview.jelly" encoding="${maven.docs.outputencoding}"
encoding="${encoding}" omitXmlDeclaration="false"
outputMode="xml" escapeText="false"
prettyPrint="true"/> outputMode="xml"
prettyPrint="true">
<j:include uri="${stylesheetURI.toString()}"/>
</j:file>
</j:if> </j:if>
</goal> </goal>