是否可以将参数从命令行传递到pom.xml
文件中的属性?
例如,我运行mvn ... argument
和pom.xml
<properties>
<myproperty> here should add argument from command line</myproperty>
</properties>
感谢您的帮助。
答案 0 :(得分:105)
对于您的属性示例,请执行以下操作:
mvn install "-Dmyproperty=my property from command line"
注意整个属性定义的引号。如果您的属性包含空格,则需要它们。
答案 1 :(得分:14)
在pom.xml里面
<project>
.....
<profiles>
<profile>
<id>linux64</id>
<activation>
<activeByDefault>true</activeByDefault>
</activation>
<properties>
<build_os>linux</build_os>
<build_ws>gtk</build_ws>
<build_arch>x86_64</build_arch>
</properties>
</profile>
<profile>
<id>win64</id>
<activation>
<property>
<name>env</name>
<value>win64</value>
</property>
</activation>
<properties>
<build_os>win32</build_os>
<build_ws>win32</build_ws>
<build_arch>x86_64</build_arch>
</properties>
</profile>
</profiles>
.....
<plugin>
<groupId>org.eclipse.tycho</groupId>
<artifactId>target-platform-configuration</artifactId>
<version>${tycho.version}</version>
<configuration>
<environments>
<environment>
<os>${build_os}</os>
<ws>${build_ws}</ws>
<arch>${build_arch}</arch>
</environment>
</environments>
</configuration>
</plugin>
.....
在此示例中,当您运行没有任何参数的pom mvn clean install
时,将执行默认配置文件。
使用mvn -Denv=win64 clean install
将执行win64配置文件。
请参阅http://maven.apache.org/guides/introduction/introduction-to-profiles.html
答案 2 :(得分:8)
我使用了属性插件来解决这个问题。
属性在pom中定义,并写入my.properties文件,然后可以从Java代码中访问它们。
在我的情况下,测试代码需要访问此属性文件,所以在pom中,属性文件被写入maven的testOutputDirectory:
<configuration>
<outputFile>${project.build.testOutputDirectory}/my.properties</outputFile>
</configuration>
如果您希望应用代码可以访问属性,请使用outputDirectory:
<configuration>
<outputFile>${project.build.outputDirectory}/my.properties</outputFile>
</configuration>
对于那些寻找更全面的例子的人(由于我没有理解属性标签的命名如何影响在pom文件中的其他位置检索它们的能力,我花了一点时间才开始工作),我的pom看起来如下:
<dependencies>
<dependency>
...
</dependency>
</dependencies>
<properties>
<app.env>${app.env}</app.env>
<app.port>${app.port}</app.port>
<app.domain>${app.domain}</app.domain>
</properties>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>2.20</version>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>properties-maven-plugin</artifactId>
<version>1.0.0</version>
<executions>
<execution>
<phase>generate-resources</phase>
<goals>
<goal>write-project-properties</goal>
</goals>
<configuration>
<outputFile>${project.build.testOutputDirectory}/my.properties</outputFile>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
在命令行上:
mvn clean test -Dapp.env=LOCAL -Dapp.domain=localhost -Dapp.port=9901
因此可以从Java代码访问这些属性:
java.io.InputStream inputStream = Thread.currentThread().getContextClassLoader().getResourceAsStream("my.properties");
java.util.Properties properties = new Properties();
properties.load(inputStream);
appPort = properties.getProperty("app.port");
appDomain = properties.getProperty("app.domain");
答案 3 :(得分:4)
您可以将变量名称指定为项目文件。例如,在您的插件配置中,只提供一个标签,如下所示: -
<projectFile>${projectName}</projectFile>
然后在命令行上,您可以将项目名称作为参数传递: -
mvn [your-command] -DprojectName=[name of project]
答案 4 :(得分:1)
mvn clean package -DpropEnv=PROD
然后在POM.xml中像这样使用
<properties>
<myproperty>${propEnv}</myproperty>
</properties>