我在POM中定义了个人资料。现在我想用m2e导入这个项目。当我这样做时,默认配置文件被忽略。另一方面,如果我在导入之前明确设置了配置文件哪些配置文件应该处于活动状态(导入Maven项目>高级),那么将使用正确的配置文件导入项目。
使用m2e导入时,为什么会忽略配置文件?如果maven可以在命令行上确定正确的配置文件,为什么不能使用M2E呢?
<profiles>
<profile>
<id>important-profile</id>
<activation>
<activeByDefault>true</activeByDefault>
</activation>
<build>
... important stuff ...