Maven suddenly ignoring a configuration!

2011-06-07 Thread trant
I had this working fine yesterday, but I am trying to build an EAR file with skinny WARs. Today all I did was add some deployment configurations to the Parent project's pom file. Basically added the weblogic deployment plugin so I can deploy the completed EAR to server. I dont think I modified

Re: Maven suddenly ignoring a configuration!

2011-06-07 Thread trant
Hi Stephen, thanks for the quick response! now that you mentioned maven version - I use MyEclipse which has an embedded version of Maven. When I had this setup working yesterday I was using the latest standalone version of Maven. So I reconfigured MyEclipse to use the standalone version instead

How do I add filtered properties to my pom.xml?

2011-05-18 Thread trant
I use the following setup to have maven inject filtered property values into my application configuration files, such as the Spring applicationContext.xml: File System: src/main/filters/filter-test.properties src/main/filters/filter-live.properties src/main/resources/applicationContext.xml and

RE: How do I add filtered properties to my pom.xml?

2011-05-18 Thread trant
Martin, Thank you for that link. It works! -- View this message in context: http://maven.40175.n5.nabble.com/How-do-I-add-filtered-properties-to-my-pom-xml-tp4406945p4407382.html Sent from the Maven - Users mailing list archive at Nabble.com.

Re: How can I have a goal depend on another goal?

2011-05-12 Thread trant
Hi John, Thanks for the reference to Cargo. It looks like a cool plugin but according to the documentation it falls short - it does not seem to support remote deploy- something which I need. Only now during initial development am I deploying to local instance of WebLogic, however soon when

RE: How can I have a goal depend on another goal?

2011-05-11 Thread trant
When I say deploy I mean as in deploying my packaged application to my web application server. -- View this message in context: http://maven.40175.n5.nabble.com/How-can-I-have-a-goal-depend-on-another-goal-tp4384674p4388273.html Sent from the Maven - Users mailing list archive at Nabble.com.

Re: How can I have a goal depend on another goal?

2011-05-11 Thread trant
Yep, I didn't understand that concept. So what I tried now is I added an execution to my plugin, as follows: executions execution phaseinstall/phase goals

How can I have a goal depend on another goal?

2011-05-10 Thread trant
I am a newcomer to maven so forgive me if this sounds stupid... I setup a web application project in MyEclipse, and built a pom.xml that deploys my war archive to WebLogic. this works fine, however it is just a standalone piece. For the whole process, I need to first run maven package to build