Ciao Jair,

[EMAIL PROTECTED] wrote on 20/11/2002 11:36:32 AM:

> Hi Dion, 
> 
> I have included the jars filew on the local Marven repository like this:
> 
>  +maven-1.0-beta-7
>    + repository
>       + proggetto
>         +jars 
>            x.jar
>            y.jar
>            z.jar 
> 
> after that on my project.xml I have included then on dependencies that 
like
> this:
> 
> <?xml version="1.0" encoding="ISO-8859-1"?>
> <project>
> ....
> ..
> 
>  <dependencies>
> 
     <dependency>
       <id>proggetto</id>
       <version></version>
       <jar>x.jar</jar>
       <jar>y.jar</jar> 
       <jar>z.jar</jar>
     </dependency>

Should be

     <dependency>
       <id>proggetto:x</id>
       <version></version>
       <jar>x.jar</jar>
     </dependency>

     <dependency>
       <id>proggetto:y</id>
       <version></version>
       <jar>y.jar</jar> 
     </dependency>

     <dependency>
       <id>proggetto:z</id>
       <version></version>
       <jar>z.jar</jar> 
     </dependency>

> but it doesnot work.  I am doing something wrong?

Try that and see how it goes.

> How is the way to get the source code of Maven?


See http://jakarta.apache.org/site/sourceindex.html for more detail on how 
to get the source of Maven, or any other Apache Jakarta project.
--
dIon Gillard, Multitask Consulting
Blog:      http://www.freeroller.net/page/dion/Weblog
Work:      http://www.multitask.com.au


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

Reply via email to