在Maven的pom.xml文件中读取JVM属性

时间:2013-06-24 06:28:41

标签: java maven build jvm pom.xml

我有一个要求,即我使用-D选项传递属性+值。我想访问pom.xml文件中的值。你能帮我知道我怎样才能达到同样目的?

例如: -dname = “BLABLA”

现在在pom.xml文件中我怎么能得到“name”的值? 谢谢你的帮助。

2 个答案:

答案 0 :(得分:1)

查看this问题的已接受答案。它为您提供所需的解决方案。

答案 1 :(得分:0)

此处描述了maven中属性的处理:POM Reference -> Properties

在您的情况下,只需使用:${name}

示例:

的pom.xml

<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/xsd/maven-4.0.0.xsd">
  <modelVersion>4.0.0</modelVersion>

  <groupId>property-test</groupId>
  <artifactId>property-test</artifactId>
  <version>1.0-SNAPSHOT</version>

  <build>
    <plugins>
      <plugin>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-antrun-plugin</artifactId>
        <version>1.7</version>
        <executions>
          <execution>
            <phase>validate</phase>
            <goals>
              <goal>run</goal>
            </goals>
            <configuration>
              <target>
                <echo>Value of FooBar is: ${FooBar}</echo>
              </target>
            </configuration>
          </execution>
        </executions>
      </plugin>
    </plugins>
  </build>

</project>

呼叫:

mvn validate -DFooBar="Hello World"

结果:

 [echo] Value of FooBar is: Hello World