Author: jim.ma
Date: 2011-01-28 21:35:56 -0500 (Fri, 28 Jan 2011)
New Revision: 13646
Modified:
stack/cxf/trunk/modules/dist/src/main/distro/test-exclude.xsl
Log:
[JBWS-3080]:Correct xslt file
Modified: stack/cxf/trunk/modules/dist/src/main/distro/test-exclude.xsl
===================================================================
--- stack/cxf/trunk/modules/dist/src/main/distro/test-exclude.xsl 2011-01-29 00:43:36 UTC
(rev 13645)
+++ stack/cxf/trunk/modules/dist/src/main/distro/test-exclude.xsl 2011-01-29 02:35:56 UTC
(rev 13646)
@@ -1,11 +1,11 @@
<?xml version="1.0"?>
<xsl:stylesheet version="1.0"
-xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns:m="http://maven.apache.org/POM/4.0.0">
-<xsl:param name="targetName"/>
-<xsl:output method="text"/>
-<xsl:template match="/">
-<xsl:for-each
select="//m:profile[m:id='$targetName']/m:build/m:plugins/m:plugin[m:artifactId='maven-surefire-plugin']//m:exclude">
-<xsl:value-of select="."/><xsl:text> </xsl:text>
-</xsl:for-each>
-</xsl:template>
+
xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns:m="http://maven.apache.org/POM/4.0.0">
+ <xsl:param name="targetName"/>
+ <xsl:output method="text"/>
+ <xsl:template match="/">
+ <xsl:for-each
select="//m:profile[m:id=$targetName]/m:build/m:plugins/m:plugin[m:artifactId='maven-surefire-plugin']//m:exclude">
+ <xsl:value-of
select="."/><xsl:text> </xsl:text>
+ </xsl:for-each>
+ </xsl:template>
</xsl:stylesheet>