Mailing List
Home
Forum Home
Maven - Project building tool
Axis - Java SOAP implementation
Lucene - Full-featured text search engine APIs
Cocoon - MVC web framework based on XML/XSL
Fop - Create PDF, PCL, PS, SVG, XML driven by XSL formatting objects.
Log4J - A log library
POI - Java Excel, Word and other Microsoft Office files manipulating library
Oracle database error code ...
Subjects
log4j warning: No appenders could be found
java security AccessControlException: access denied (java io FilePermission clie
java lang InstantiationException: org apache tools ant Main
Apache Axis Tutorial
Subject: Struts <logic iterate >
log4j properties How to parse outpu to multiple files
configuring log4j with BEA Weblogic 8 1
How to use XSL FOP Java together
JSP precompile
Proposal: Adding jar manifest classpath in jar and war plugins
Servlet File Download dialog problem (IE6,Adobe 6 0)
java security AccessControlException: access denied (java io FilePermission
Unsupported major minor version 48 0 problem while running the an
   telope task
Subject: axis wsdl2java Ant Task usage
net sf hibernate MappingException: Error reading resource: test/User hbm xml
Building EAR ANT Script for websphere 5 0
CREATING WAR Files
Classpath problem
jsp data into Excel
Jboss 3 2 3+ vs Tomcat Axis Question
RE: How to include jars and add them into the MANIFEST MF/Class Path
attribute
Printing problem
Subject: InstantiationException
Couldn 't find trusted certificate
Please : How can one install ant 1 6 0 under Eclipse 2 1 ?
Excel: Too many different cell formats
Subject: AXIS: tomcat timeout ?
1 3 final: now giving me java io FileNotFoundException (Too many
open files)
XDoclet, Struts and Maven: Where to start? SOLUTION
Subject: Running junit tests fails
 
Subject: Re: Filtering in src/main/webapp/WEB-INF with maven-war-plugin

Subject: Re: Filtering in src/main/webapp/WEB-INF with maven-war-plugin

2007-10-03       - By Junqi Wu

 Back


Arnaud Bailly wrote:
>
> Matthias Berndt <berndt.matthias@(protected)> writes:
>
>> Greetings,
>>
>> I'd like to filter the web.xml in src/main/webapp/WEB-INF. I tried to
>> follow the instructions on
>>
>> http://maven.apache.org/plugins/maven-war-plugin/examples/adding-filtering
-webresources.html
>>
>> but it doesn't work src/main/webapp/WEB-INF/web.xml. Can anyone give me
>> an advice or provide an sample configuration?
>>
>
> Hello, the following POM fragment does it:
>
>
> <project xmlns="http://maven.apache.org/POM/4.0.0"
> <build>
>  <filters>
>   <filter>${filter.config}</filter>
>  </filters>
>  <plugins>
>  <plugin>
>    <artifactId>maven-war-plugin</artifactId>
>    <configuration>
>     <webResources>
>      <webResource>
>       <directory>
>        ${basedir}/src/main/webapp-filtered
>       </directory>
>       <filtering>true</filtering>
>       <includes>
>        <include>**/*.xml</include>
>        <include>**/*.jsp</include>
>       </includes>
>      </webResource>
>     </webResources>
>    </configuration>
>   </plugin>
>  </plugins>
> </build>
> </project>
>
>> Thank you
>> Matthias Berndt
>
> HTH
> --
> OQube < software engineering \ g??nie logiciel >
> Arnaud Bailly, Dr.
> \web> http://www.oqube.com
>
>
> -- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ------
> To unsubscribe, e-mail: users-unsubscribe@(protected)
> For additional commands, e-mail: users-help@(protected)
>
>
>


Yes, this works,but the example described in
http://maven.apache.org/plugins/maven-war-plugin/examples/adding-filtering
-webresources.html
as following does not work.

<configuration>
     <webResources>
   <filters>
        <filter>properties/config.prop</filter>
      </filters>

       <resource>
        [...]
        <resource>
          <directory>configurations</directory>
          <!-- override the destination directory for this resource -->
          <targetPath>WEB-INF</targetPath>
          <!-- enable filtering -->
          <filtering>true</filtering>
          <excludes>
             <exclude>**/properties<exclude>
          </excludes>
        </resource>
       </resource>
     </webResources>
   </configuration>

I mean the filter and targetPath within the configuration tag.

Junqi
--
View this message in context: http://www.nabble.com/Filtering-in-src-main
-webapp-WEB-INF-with-maven-war-plugin-tf4150581s177.html#a13031885
Sent from the Maven - Users mailing list archive at Nabble.com.


-- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ------
To unsubscribe, e-mail: users-unsubscribe@(protected)
For additional commands, e-mail: users-help@(protected)