Files
stream-applications/scripts/remove-jib-plugin.xsl
2022-10-27 12:17:25 +02:00

21 lines
924 B
XML

<?xml version="1.0"?>
<xsl:stylesheet version="1.0"
xmlns:maven="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:output encoding="UTF-8" method="xml"/>
<xsl:template match="@*|node()">
<xsl:copy>
<xsl:apply-templates select="@*|node()"/>
</xsl:copy>
</xsl:template>
<xsl:template match="maven:plugins/maven:plugin">
<xsl:message terminate="no"><!-- matching plugin --></xsl:message>
<xsl:if test="maven:artifactId/text() != 'jib-maven-plugin'">
<xsl:copy>
<xsl:apply-templates select="@*|node()"/>
</xsl:copy>
</xsl:if>
</xsl:template>
</xsl:stylesheet>