${properties}
プロファイルに基づいてフィルタリングされた web.xmlを持っています。jetty:run を使用して最終的なプロパティで web.xml を使用したいのですが、まだ成功していません。常に web.xml へのデフォルトのパスに固執します。file:/home/---/Projects/project/trunk/src/main/webapp/WEB-INF/web.xml
私はもう試した:
<plugin>
<groupId>org.mortbay.jetty</groupId>
<artifactId>jetty-maven-plugin</artifactId>
<version>8.1.4.v20120524</version>
<configuration>
<webAppConfig>
<overrideDescriptor>target/project/WEB-INF/web.xml</overrideDescriptor>
</webAppConfig>
</configuration>
</plugin>
と
<plugin>
<groupId>org.mortbay.jetty</groupId>
<artifactId>jetty-maven-plugin</artifactId>
<version>8.1.4.v20120524</version>
<configuration>
<overrideWebXml>target/project/WEB-INF/web.xml</overrideWebXml>
</configuration>
</plugin>
問題の一部は、誰もそれを書き留めていないように見えるため、どの構成がどのバージョンに対応するかを知ることです。また、OverrideDescriptor は、eclipsepedia のドキュメントに基づいて、Web コンテキスト構成にのみ追加されます。