You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
706 B
XML
17 lines
706 B
XML
8 years ago
|
<?xml version="1.0" encoding="utf-8"?>
|
||
|
<xsl:stylesheet version="2.0"
|
||
|
xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:m="http://maven.apache.org/POM/4.0.0"
|
||
|
exclude-result-prefixes="m">
|
||
|
<xsl:output method="xml" encoding="utf-8" indent="yes"
|
||
|
xslt:indent-amount="4" xmlns:xslt="http://xml.apache.org/xslt" />
|
||
|
<xsl:strip-space elements="*" />
|
||
|
<xsl:template match="@*|node()">
|
||
|
<xsl:copy>
|
||
|
<xsl:apply-templates select="@*|node()" />
|
||
|
</xsl:copy>
|
||
|
</xsl:template>
|
||
|
<xsl:template match="/m:project/m:properties/m:main.basedir" />
|
||
|
<xsl:template match="/m:project/m:groupId" />
|
||
|
<xsl:template match="/m:project/m:version" />
|
||
|
<xsl:template match="/m:project/m:build/m:plugins" />
|
||
|
</xsl:stylesheet>
|