在 ma maven 项目中,我在 pom.xml 中有如下内容
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>2.19.1</version>
<configuration>
<systemPropertyVariables>
<environment>DEV</environment>
</systemPropertyVariables>
</configuration>
</plugin>
当然,我在我的 Java 代码中使用了这个属性。但是我的问题是,如果我在 Eclipse 中运行我的测试,那么这个属性不会从 pom 文件中读取,最后我的“环境”属性保持为空。
如果我从控制台运行我的测试并添加 ' -Denvironment=DEV ' 那么就可以了。
我的问题是如何配置 Eclipse 以便在我从控制台运行它时看到我的“环境”属性?
有人可以帮忙吗?我自己找不到解决方案...
慕斯709654
相关分类