Re: external jar dependency

2006-06-20 Thread Jo Vandermeeren
Yep, copy pasting the mvn command below will do the trick.. And indeed, you should probably choose a good group id, makes your local repostitory easier to browse for humans.. This is typically your company name or package prefix.. The artifact id is usually the name of your application or module

Re: external jar dependency

2006-06-20 Thread Kieran Brady
artifactId=SortSuite) - Original Message - From: "Vinay Kumar" <[EMAIL PROTECTED]> To: "Maven Users List" Sent: Tuesday, June 20, 2006 11:17 AM Subject: Re: external jar dependency Hi Jo, when I am trying to

Re: external jar dependency

2006-06-20 Thread ben short
2:43:31 PM Subject: Re: external jar dependency Hi Vinay, To install your own non-maven project or third party proprietary libraries, you might want to consider the install plugin. It will install the jar in your local maven repository and create a POM for it, so your projects can depend on them and won&

Re: external jar dependency

2006-06-20 Thread Vinay Kumar
Users List Sent: Tuesday, 20 June, 2006 2:43:31 PM Subject: Re: external jar dependency Hi Vinay, To install your own non-maven project or third party proprietary libraries, you might want to consider the install plugin. It will install the jar in your local maven repository and create a POM for it,

Re: external jar dependency

2006-06-20 Thread Jo Vandermeeren
Hi Vinay, To install your own non-maven project or third party proprietary libraries, you might want to consider the install plugin. It will install the jar in your local maven repository and create a POM for it, so your projects can depend on them and won't try to download them from a public rep

RE: external jar dependency

2006-06-20 Thread Jansen Werner
Hey there, > I am new to maven 2 and I dont have any working exp on maven2 > .Before this I have used ant as build tool. I have an > application which requires lots of jar during compilation. I > mean It has dependency on those jars. > So how I can include dependency for these jars. they dont

Re: external jar dependency

2006-06-20 Thread Jo Vandermeeren
Hi Vinay, Maybe you could rename the jars, and add versioning info to them? It won't break them and this greatly simplifies your dependency management in the future.. Regards, Jo On 6/20/06, Vinay Kumar <[EMAIL PROTECTED]> wrote: Hi All, I am new to maven 2 and I dont have any working exp o