First of all, I only have two days working with maven. I have read the book Better Buils with Maven completely and any possible documentation found in maven.apache.org.
I would like to call two o more plugins sequentially, example - user-profile-plugin - loads user properties into maven runtime environment. - weblogic-plugin - start weblogic, needs some property set by previous plugin They are no part of any phase since they can be called outside of maven lifecycle. Example: mvn org.company.plugin:weblogic-plugin:startwl - this will start weblogic I would like the plug-in user-profile-plugin be called before running weblogic-plugin. Please, let me know is there a way of doing or which approach should I follow in case that Maven does not support it. Thx in advance.
