From: <[EMAIL PROTECTED]>

If i want use some jars which has no version number and it doesn't change
like "weblogic.jar"

How do i it in Maven2

I've just been inventing version numbers for them, matching the version
number of whatever product they came with.  For a Java library that comes
with IBM's UniData 6.1:

m2 install:install-file
  -Dfile=/path/to/uojsdk/lib/asjava.zip
  -DgroupId=asjava.uniobjects
  -DartifactId=asjava
  -Dversion=6.1
  -Dpackaging=jar

Even if you could do it (and the m2 repository directory structure doesn't
seem like it would support a .jar with no version number) this doesn't seem
like a good idea.  There will be another version at some point, and you need
a way to switch one project at a time to the new version.

--
Wendy Smoak


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

Reply via email to