Managing module dependency in Maven parallel build

2012-01-20 Thread Ashish Srivastava
Hi,    (I just subscribed to the mailing list so would appreciate if you could reply directly to my email address too) I am trying out the parallel build feature of Maven 3. My project is divided into multiple modules and one of the module generates a deployable zip file. Another module takes

Removing some modules in a maven profile

2012-01-20 Thread Ashish Srivastava
Hi,    I have say a few modules defiled in the parent pom.xml as: modules    modulea/module    moduleb/module    modulec/module /modules I want the default profile builds the entire module list but create a new profile that say only builds a and b but not c. I have seen a thread where adding

MVN POM giving error with Weblogic 8.1 while working fine with tomcat 5.0

2007-09-23 Thread Ashish Srivastava
.firstam-reis.net/svn/repos/${project.artifactId}/ /url /scm -- /project === Please give your suggestion. Regards, Ashish Srivastava

Re: how to use my own jar as dependencies

2006-03-09 Thread Ashish Srivastava
Thanks Tom. Where do I need to create the library-version.pom file? If say I have a a.jar file in lib/ where to put the following in? project modelVersion4.0.0/modelVersion groupIdGROUIDYOUDEFINE /groupId artifactIdARTIFACTIDYOUDEFINE /artifactId versionYOUVERSION /version /project

import statements in Eclipse and maven2

2006-02-27 Thread Ashish Srivastava
Hi, I am using maven2 plugin on Eclipse and working on a project which uses maven2. In the eclipse' Java editor all the import statements (and the classes) are underlined red as if it could not find the jars. How can I configure the project to read the pom.xml and work out all the dependencies?

Creating WEB-INF/lib directory

2006-02-19 Thread Ashish Srivastava
How can I create the WEB-INF/lib directory and copy the jars which the web-app depends on during the maven packaging? __ Do You Yahoo!? Tired of spam? Yahoo! Mail has the best spam protection around http://mail.yahoo.com

Re: Creating WEB-INF/lib directory

2006-02-19 Thread Ashish Srivastava
] wrote: On 2/19/06, Ashish Srivastava [EMAIL PROTECTED] wrote: I am using maven2 and have defined the dependencies in the pom.xml. What scope should I use? I used compile and provided but it doesn't create the WEB-INF/lib directory. Please keep replies on the mailing list. Using

Warning messages on remote repository

2006-01-31 Thread Ashish Srivastava
Hi, I created a remote repository for a bunch of jars we use in our application. The way I did is manually created the library.pom as : pre project moduleVersion4.0.0/noduleVersion groupIdlibName/groupId artifactIdlibName/groupId version1.0/version /project /pre When I compile the

patternset in maven2

2006-01-02 Thread Ashish Srivastava
Hi, I am very new to maven and even newer to maven2. How can I define a dependency in pom.xml in maven2 so that all the jars/zips in a directory gets included when I compile or package the project? In maven1.x I think it was done by the patternset and then include but don't know in maven2. Help