thisを参照してください。ここにはproperties-maven-pluginがあります。
あなたは私がGroovyのプラグインと私が書いた小さなスクリプトを使用することをお勧めすることができますよりも、の.propertiesファイルを使用していないたい場合:このプラグインの実行後
<plugin>
<groupId>org.codehaus.gmaven</groupId>
<artifactId>gmaven-plugin</artifactId>
<version>1.4</version>
<executions>
<execution>
<phase>generate-resources</phase>
<goals>
<goal>execute</goal>
</goals>
<configuration>
<properties>
<header_file>header.html</header_file>
</properties>
<source>
def file = new File(project.properties.header_file)
project.properties.header_content = file.getText()
</source>
</configuration>
</execution>
</executions>
</plugin>
を、 header.html
ファイルの内容を含む${header_content}
プロパティを参照することができます。
ブレンダン、ソリューションは機能しましたか?私はそれを自分で試してみる機会がありませんでした。 –