got this fixed, thanks for the suggestion Jason.

I changed this FROM:

> <plugin> 
>   <groupId>org.mortbay.jetty<groupId> 
>   <artifactId>maven-jetty-plugin</artifactId> 
>   <version>6.1.22</version> 
>   <configuration> 
> 
> <webAppSourceDirectory>${basedir}/src/main/webapp2</webAppSourceDirectory> 
>      <webXml>${basedir}/src/main/webapp2/WEB-INF/web.xml</webXml> 
>   </configuration> 
> <plugin> 

TO 

<plugin> 
   <groupId>org.mortbay.jetty<groupId> 
   <artifactId>jetty-maven-plugin</artifactId>    <------NOTE, changed name
to jetty-maven-plugin (looks like the artifact name changed in the newer
version)....also removed the version number

   <configuration> 
 
       
<webAppSourceDirectory>${basedir}/src/main/webapp2</webAppSourceDirectory> 

   </configuration> 
 <plugin> 

--
View this message in context: 
http://maven.40175.n5.nabble.com/Maven-Jetty-Plugin-won-t-honor-webAppSourceDirectory-tp4774500p4774583.html
Sent from the Maven - Users mailing list archive at Nabble.com.

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscr...@maven.apache.org
For additional commands, e-mail: users-h...@maven.apache.org

Reply via email to