niclas 2004/04/11 05:27:00
Modified: util/plugin maven.xml
Added: util/plugin copy-all.xsl
Log:
First cut at Resolved Entities.
Revision Changes Path
1.2 +10 -0 avalon/util/plugin/maven.xml
Index: maven.xml
===================================================================
RCS file: /home/cvs/avalon/util/plugin/maven.xml,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- maven.xml 8 Dec 2003 09:31:55 -0000 1.1
+++ maven.xml 11 Apr 2004 12:27:00 -0000 1.2
@@ -1,2 +1,12 @@
<project default="plugin:install">
+
+ <goal name="resolve-entities" >
+ <ant:xslt in="${basedir}/project.xml" out="${maven.build.dir}/project.xml"
+ style="copy-all.xsl">
+ <outputproperty name="method" value="xml" />
+ <outputproperty name="standalone" value="yes"/>
+ <outputproperty name="indent" value="yes"/>
+ </ant:xslt>
+ </goal>
+
</project>
1.1 avalon/util/plugin/copy-all.xsl
Index: copy-all.xsl
===================================================================
<?xml version="1.0"?>
<xsl:stylesheet version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns="http://www.w3.org/1999/xhtml">
<xsl:template match="@*|*|text()|processing-instruction()" priority="-1">
<xsl:copy>
<xsl:apply-templates select="@*|*|text()|processing-instruction()"/>
</xsl:copy>
</xsl:template>
</xsl:stylesheet>
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]