如何通过maven属性激活配置文件?
我正在尝试使用内部定义的属性激活maven配置文件:pom.xml
<project>
[...]
<properties>
<run.it>true</run.it>
</properties>
[...]
<profiles>
<profile>
<activation>
<property><name>run.it</name></property>
</activation>
[...]
</profile>
</profiles>
[...]
</project>
显然它不起作用。但是,激活从命令行工作:
mvn -Drun.it
是“设计使然”吗?如果是,可能的解决方法是什么?