多数のpom.xml
ファイルから Maven GAV (groupId、artifactId、version) を抽出する必要があります。すべての POM に親 POM 宣言があるわけではないため、親 GAV とプロジェクト GAV の間の継承を考慮する必要があります。
bash など、Linux シェルで簡単にスクリプトを作成できるツールのみを使用したいと考えています。
私が見つけた最善の解決策は、XSL 変換を使用することです。extract-gav.xsl
次の内容のファイルを作成します。
<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet version="1.0"
xmlns:pom="http://maven.apache.org/POM/4.0.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:output indent="yes" omit-xml-declaration="yes"/>
<xsl:strip-space elements="*"/>
<xsl:template match="/pom:project">
<!-- this XML element just serves as a bracket and may be omitted -->
<xsl:element name="artifact">
<xsl:text> </xsl:text>
<!-- process coordinates declared at project and project/parent -->
<xsl:apply-templates select="pom:groupId|pom:parent/pom:groupId" mode="copy-coordinate"/>
<xsl:apply-templates select="pom:artifactId|pom:parent/pom:artifactId" mode="copy-coordinate"/>
<xsl:apply-templates select="pom:version|pom:parent/pom:version" mode="copy-coordinate"/>
</xsl:element>
</xsl:template>
<xsl:template match="*" mode="copy-coordinate">
<!-- omit parent coordinate if same coordinate is explicitly specified on project level -->
<xsl:if test="not(../../*[name(.)=name(current())])">
<!-- write coordinate as XML element without namespace declarations -->
<xsl:element name="{local-name()}">
<xsl:value-of select="."/>
</xsl:element>
<xsl:text> </xsl:text>
</xsl:if>
</xsl:template>
</xsl:stylesheet>
この変換は、次のコマンドを使用してシェルで呼び出すことができます (libxslt がインストールされていると仮定します)。xsltproc extract-gav.xsl pom.xml
これにより、次の形式で出力が生成されます。
<artifact>
<groupId>org.example.group</groupId>
<artifactId>example-artifact</artifactId>
<version>1.2.0</version>
</artifact>
別の形式が必要な場合、XSL 変換は、ニーズに合うように簡単に適応できる必要があります。たとえば、次の変換では、GAV をタブ区切りのプレーン テキストとして書き込みます。
<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet version="1.0"
xmlns:pom="http://maven.apache.org/POM/4.0.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:output method="text"/>
<xsl:strip-space elements="*"/>
<xsl:template match="/pom:project">
<!-- process coordinates declared at project and project/parent -->
<xsl:apply-templates select="pom:groupId|pom:parent/pom:groupId" mode="copy-coordinate"/>
<xsl:apply-templates select="pom:artifactId|pom:parent/pom:artifactId" mode="copy-coordinate"/>
<xsl:apply-templates select="pom:version|pom:parent/pom:version" mode="copy-coordinate"/>
<xsl:text> </xsl:text>
</xsl:template>
<xsl:template match="*" mode="copy-coordinate">
<xsl:if test="not(../../*[name(.)=name(current())])">
<xsl:value-of select="."/>
<xsl:text>	</xsl:text>
</xsl:if>
</xsl:template>
</xsl:stylesheet>
grep -v '\[' <( mvn help:evaluate -Dexpression="project.groupId" 2>/dev/null &&
mvn help:evaluate -Dexpression="project.artifactId" 2>/dev/null &&
mvn help:evaluate -Dexpression="project.version" 2>/dev/null )