我有一个 Maven (3.0.4) 项目,其中处理一些外部资源,并使用配置文件中定义的一些属性过滤它们。
当我启动程序集插件(手动或挂接到阶段)时,maven-resource-plugin 似乎不认为命令行指定的配置文件处于活动状态。这样,与指定配置文件中定义的属性相关的标记不会被替换。
如果我定义了一个配置文件activeByDefault,即使命令行指定了另一个配置文件,它也被认为是活动的......
这是一个例子:
<plugin>
<artifactId>maven-resources-plugin</artifactId>
<version>2.5</version>
<executions>
<execution>
<id>copy-script</id>
<phase>process-resources</phase>
<goals>
<goal>copy-resources</goal>
</goals>
<configuration>
<outputDirectory>${basedir}/target</outputDirectory>
<resources>
<resource>
<directory>${basedir}/src/main/bash</directory>
<filtering>true</filtering>
</resource>
</resources>
</configuration>
</execution>
</executions>
</plugin>
...
<profiles>
<profile>
<id>staging</id>
<properties>
<remote.url>some_stag_value</remote.url>
</properties>
</profile>
<profile>
<id>prod</id>
<properties>
<remote.url>some_prod_value</remote.url>
</properties>
</profile>
</profiles>