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