
Move projects to better reflect the way that Spring Boot is released. The following projects are under `spring-boot-project`: - `spring-boot` - `spring-boot-autoconfigure` - `spring-boot-tools` - `spring-boot-starters` - `spring-boot-actuator` - `spring-boot-actuator-autoconfigure` - `spring-boot-test` - `spring-boot-test-autoconfigure` - `spring-boot-devtools` - `spring-boot-cli` - `spring-boot-docs` See gh-9316
30 lines
1.0 KiB
XML
30 lines
1.0 KiB
XML
<?xml version="1.0"?>
|
|
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
|
|
xmlns:mvn="http://maven.apache.org/POM/4.0.0"
|
|
version="1.0">
|
|
|
|
<xsl:output method="text" encoding="UTF-8" indent="no"/>
|
|
<xsl:key name="by-full-name" match="//mvn:dependency" use="concat(mvn:groupId, '.', mvn:artifactId)"/>
|
|
<xsl:template match="/">
|
|
<xsl:text>|===
</xsl:text>
|
|
<xsl:text>| Group ID | Artifact ID | Version
</xsl:text>
|
|
<xsl:for-each select="//mvn:dependency[generate-id() = generate-id(key('by-full-name',
|
|
concat(mvn:groupId, '.', mvn:artifactId))[1])]">
|
|
<xsl:sort select="mvn:groupId"/>
|
|
<xsl:sort select="mvn:artifactId"/>
|
|
<xsl:text>
</xsl:text>
|
|
<xsl:text>| `</xsl:text>
|
|
<xsl:copy-of select="mvn:groupId"/>
|
|
<xsl:text>`
</xsl:text>
|
|
<xsl:text>| `</xsl:text>
|
|
<xsl:copy-of select="mvn:artifactId"/>
|
|
<xsl:text>`
</xsl:text>
|
|
<xsl:text>| </xsl:text>
|
|
<xsl:copy-of select="mvn:version"/>
|
|
<xsl:text>
</xsl:text>
|
|
</xsl:for-each>
|
|
<xsl:text>|===</xsl:text>
|
|
</xsl:template>
|
|
|
|
</xsl:stylesheet>
|