我正在尝试在我的 maven pom 中激活配置文件,如下所示:-
<profile>
<id>test</id>
</properties>
<activation>
<property>
<name>env.SITE</name>
<value>test</value>
</property>
</activation>
</profile>
现在我将heroku配置为具有环境变量SITE,如下所示:-
heroku 配置:添加站点=测试。
我希望环境变量在推送代码时触发配置文件。然而,这并没有发生。