Hi,

   I have to include the content of htdocs folder but not htdocs in my war
file. htdocs path is project.src.main.webapp. Can you please tell me how to
do that.

My pom.xml is given below:-  



<plugin>
                                                
<artifactId>maven-war-plugin</artifactId>
                                                 <version>2.1.1</version>
                                                 <configuration>
                                                                   
<webResources>
                                                                                
                                                                 <resource>
                                                                                
  
<directory>${project.basedir}/src/main/webapp/htdocs</directory>
                                                                                
        <includes>
                                                                                
                <include>**</include>
                                                                                
        </includes>
                                                                                
</resource>
                                                          </webResources>
           
<packagingExcludes>${project.basedir}/src/main/webapp/htdocs</packagingExcludes>
                                                   </configuration>
                                                 </plugin>


Any help is greatly appreciated

--
View this message in context: 
http://maven.40175.n5.nabble.com/WebApp-content-Info-required-tp4737506p4737506.html
Sent from the Maven - Users mailing list archive at Nabble.com.

---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to