11

I have a pom.xml as such

<project xmlns="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/maven-v4_0_0.xsd">
  <modelVersion>4.0.0</modelVersion>
  <groupId>com.qualtrics.sujitv</groupId>
  <artifactId>maven-test</artifactId>
  <packaging>jar</packaging>
  <version>1.2.3.4</version>
  <name>Test app</name>
  <url>http://maven.apache.org</url>

</project>

I am trying to use xmllint to get the version however when I run

xmllint --xpath 'string(project/version)' ./pom.xml

it outputs nothing

Inian
  • 80,270
  • 14
  • 142
  • 161
user3626708
  • 727
  • 2
  • 8
  • 24

1 Answers1

34

Since your XML is using namespaces, there's no real nice way to do it. For a direct xpath query, if it's safe to ignore the namespace, you could do something like this:

$ xmllint --xpath '/*[local-name()="project"]/*[local-name()="version"]/text()' pom.xml

If you wanted to do it the "right" way, you'll need to start a shell to setup the namespaces and output the desired value. Unfortunately, you'll have to clean out the prompts in the output.

$ xmllint --shell pom.xml <<< 'setns ns=http://maven.apache.org/POM/4.0.0
cat /ns:project/ns:version/text()'
Jeff Mercado
  • 129,526
  • 32
  • 251
  • 272