maven plugin configuration
Posted
by Don
on Stack Overflow
See other posts from Stack Overflow
or by Don
Published on 2010-06-15T13:27:03Z
Indexed on
2010/06/15
15:32 UTC
Read the original article
Hit count: 252
maven-2
|maven-plugin
Hi,
When writing a Maven plugin, you can configure various parameters within the mojo class, e.g.
/**
* The path to the properties files.
*
* @parameter expression="${project.build.directory}"
*/
private File buildDir;
Is there a reference that lists all the available project properties (e.g. ${project.build.directory})? For example, how do I get the value of the resources directory?
Thanks, Don
© Stack Overflow or respective owner