Hello,
install plugin will achieve it.
Please see
http://maven.apache.org/plugins/maven-install-plugin/install-file-mojo.html

you run command
maven -e -X install:installfile -DartifactId=yourownjar.jar
-DgroupId=yourgroupId (eg com.company.project) -DgeneratePom=TRUE
-Dpackaging=jar -Dversion=yourversion

This installs jar on your local repository.
You add inside your pom.xml
<dependency>
   <groupID>yourgroupId </groupId>
  <artifactId>yourownjar</artifactId>
 <version>yourversion</version>

</dependency>

Tom

2006/3/29, Venkatagopalaraju <[EMAIL PROTECTED]>:
> Hi,
>
>      I am working on multiple projects. I need to use our own jars as a 
> dependencies. Could you please let me know, How can I use our own jars as 
> dependencies in my local repository...?
>
>
> Thanks & Regards
>    Raju
>
>

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to