forked from thinkaurelius/titan
-
Notifications
You must be signed in to change notification settings - Fork 0
/
jre6.xslt
34 lines (27 loc) · 1.46 KB
/
jre6.xslt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
<xsl:stylesheet version="2.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns="http://maven.apache.org/POM/4.0.0"
xpath-default-namespace="http://maven.apache.org/POM/4.0.0">
<xsl:output omit-xml-declaration="yes" />
<xsl:template match="@* | node()">
<xsl:copy>
<xsl:apply-templates select="@* | node()" />
</xsl:copy>
</xsl:template>
<!-- Rewrite artifactIds -->
<xsl:template match="artifactId[starts-with(text(), 'titan' ) and not(contains(text(), '-jre6')) and not(text() = 'titan-site')]">
<artifactId xmlns="http://maven.apache.org/POM/4.0.0"><xsl:value-of select="./text()" />-jre6</artifactId>
</xsl:template>
<!-- Rewrite compiler target -->
<xsl:template match="/project/properties/compiler.target">
<compiler.target>1.6</compiler.target>
</xsl:template>
<!-- Rewrite assembly archive names (used in titan-dist) -->
<xsl:template match="/project/properties/distribution.assembly.name[not(contains(text(), '-jre6'))]">
<distribution.assembly.name><xsl:value-of select="./text()" />-jre6</distribution.assembly.name>
</xsl:template>
<!-- Rewrite failsafe dependency scan configuration (used in titan-dist) -->
<xsl:template match="dependenciesToScan/dependency[contains(text(), 'com.thinkaurelius.titan') and not(contains(text(), '-jre6'))]">
<dependency><xsl:value-of select="./text()" />-jre6</dependency>
</xsl:template>
</xsl:stylesheet>