I'm trying to configure maven in my windows machine. My (webappDirectory) pom.xml is as follows
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-war-plugin</artifactId>
<version>2.0</version>
<configuration>
<webappDirectory>C:\Program Files\apache-tomcat-6.0.32-windows-x86\apache-tomcat-6.0.32\webapps\myapp</webappDirectory>
</configuration>
</plugin>
I'm using apache-tomcat and its working fine. But when i do a clean build and run, nothing goes to my webapp directory. I guess its something to do with the path
I'm a newbie to maven
can anyone help thanks in advance
cheers
thusitha