Brant Levinson wrote:

>If my jar files do not have -'s on the end of them how do I configure maven. Right 
>now it looks for, for example program-.jar, I just want it to look for program.jar.
>  
>
Hi,

you can specify the jar you want like this:

<dependency>
  <id>program</id>
  <version>1.whatever</version>
  <jar>program.jar</jar>
</dependency>

This will look for ${maven.repo.local}/program/jars/program.jar

This is used for non-standard jar names (at least, for Maven they're not 
standard...)

Cheers,
St�phane


___________________________________________________________
Do You Yahoo!? -- Une adresse @yahoo.fr gratuite et en fran�ais !
Yahoo! Mail : http://fr.mail.yahoo.com

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

Reply via email to