> I'm creating my own mojos and I need to get the webapp directory. What
> expression can I apply to a path to get the directory?. Can I have a List of

Refer to the documentation:
http://maven.apache.org/plugins/maven-war-plugin/war-mojo.html

Which tells us you are looking for the following:
warSourceDirectory of type File

So your code would be like:
/*...@parameter default-value="${warSourceDirectory}" */
private File warSourceDir;

Wayne

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

Reply via email to