Maven,在Profiles中分配常见步骤的方法

时间:2013-11-14 16:57:54

标签: java maven

我的POM.xml情况如下:

... 
<profiles>
  <profile>     
     -some actions B
     -some common for both profiles actions
  </profile>
  <profile>
     -some actions A
     -some common for both profiles actions
  </profile>
</profiles>

我可以使用哪些方法来执行常见操作以避免复制/粘贴?

之后,如何在我的Java代码中识别现在执行哪个配置文件?

我需要这个,因为代码对于两个配置文件都很常见,我无法将它分开,所以我想在我的java代码中创建一些条件,在那里我将能够根据当前的配置文件选择进一步的操作。我试图在我的pom.xml中使用SystemProperty配置它不成功,我无法通过System.getProperty(..)获取此属性,我也怀疑这是一个好方法。

0 个答案:

没有答案