我在maven中有多个配置文件,就像这样,
` <profile>
<id>one</id>
<properties>
<env>one</env>
</properties>
</profile>
<profile>
<id>two</id>
<properties>
<env>two</env>
</properties>
</profile>
<profile>
<id>three</id>
<properties>
<env>three</env>
</properties>
</profile>
<profile>
<id>four</id>
<properties>
<env>four</env>
</properties>
</profile>`
我的问题是如何创建可以执行所有配置文件的配置文件(除外 在命令行中执行-Pone,two,three,four )??