Yous the man... You think it would mention that somewhere in the
documentation lol. Thanks a bunch
--
View this message in context:
http://maven.40175.n5.nabble.com/Mojo-Complex-Object-From-Pom-tp2639350p2639516.html
Sent from the Maven Developers mailing list archive at Nabble.com.
---
I am trying to pass an object through my pom to my maven mojo.
I have a class...
public class Shortcut {
/**
* @parameter expression="${project}"
*/
private String name;
private String description;
private String commandLine;
pub