Re: How do I get multiproject:install to run jar:install in sub-directories?

2009-11-09 Thread laredotornado
Thanks but I have sadly not yet joined the real world of Maven 2. I'm using maven 1.1. Given this, any ideas about my questions? - Dave Dan Tran wrote: by default maven2 runs in reactor mode ( equivalent of maven 1 multi project ) so what you are looking for is mvn deploy

Re: How do I get multiproject:install to run jar:install in sub-directories?

2009-11-09 Thread Lukas Theussl
If your sub-projects are of type jar then multiproject:install will run jar:install automatically on all configured sub-projects. See http://maven.apache.org/maven-1.x/plugins/multiproject/goals.html HTH, -Lukas laredotornado wrote: Hi, I'm using Maven 1.1. I have model and service

Re: How do I get multiproject:install to run jar:install in sub-directories?

2009-11-09 Thread laredotornado
Below are the contents of my service/project.properties file ... maven.multiproject.type=javaapp maven.javaapp.jar.name=${pom.artifactId}-${pom.currentVersion}.jar maven.javaapp.mainclass=myco.dor.dmv.driver.youthful.AddressFileProcessor maven.javaapp.type=jar maven.compile.target=1.5 What is

Re: How do I get multiproject:install to run jar:install in sub-directories?

2009-11-09 Thread Wayne Fay
Thanks but I have sadly not yet joined the real world of Maven 2.  I'm using maven 1.1.  Given this, any ideas about my questions? You really should/must move to Maven2 asap. There is almost no good reason to remain on M1, and the pain of migrating to M2 is pretty minor vs the immediate

Re: How do I get multiproject:install to run jar:install in sub-directories?

2009-11-09 Thread laredotornado
Sadly, the decision to move to maven 2 is beyond my control. I know the company has plans for it, but for now this is the hand I was dealt. If you have any insights into the question posed, I am grateful. - Daev Wayne Fay wrote: Thanks but I have sadly not yet joined the real world of