Re: How do people search for jars and poms?

2006-10-13 Thread Gisbert Amm

Jason Chan wrote:


MVN Registry
http://www.mvnregistry.com/


Thats amazing! Haven't heard about it before. Is it mentioned in the 
Maven documentation somewhere?


-Gisbert

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



Re: How do people search for jars and poms?

2006-10-13 Thread Arnaud HERITIER

There is also www.mvnrepository.com

But it will not help you to find which version of a jar it is.

The only service, based on chechsums, that allow you to do it is Archiva.
But this project isn't yet released. You have to build it yourself.

http://maven.apache.org/archiva/
http://docs.codehaus.org/display/MAVENUSER/Archiva

Arnaud




Jason Chan-3 wrote:
 
 I am using:
 
 MVN Registry
 http://www.mvnregistry.com/
 
 
 On 10/13/06, Christian Goetze [EMAIL PROTECTED] wrote:

 If this is a stupid question, I apologise in advance...

 Given a dependency to a specific set of classes, how do people locate
 the jar that provides it, together with the artifact and group ids? I
 haven't yet found a better way than to search through ibiblio, hoping to
 find something there - but to locate things like javax.xml.rpc.*, it's
 not easy.

 As you can tell, I'm in the process of converting an ant based system
 with lots of checked in .jar files to a maven system. The trouble with
 the checked in .jar files is that they are completely void of any
 version info, and I need to reconstruct the dependency tree by hand.

 How do the pros do it?
 --
 cg

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


 
 

-- 
View this message in context: 
http://www.nabble.com/How-do-people-search-for-jars-and-poms--tf2434140.html#a6792081
Sent from the Maven - Users mailing list archive at Nabble.com.


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



RE: How do people search for jars and poms?

2006-10-13 Thread Chris Hilton
I've been doing the same thing a lot so here's some steps I recommend:

- Inspect the manifest file in the jar. Sometimes you'll find the
version number has helpfully been stowed away in there.

- Look at the version history for the jar in your repository. Sometimes
developers (even yourself!) unwittingly leave helpful comments that
include the version number. :-) At the least, you'll probably want to
notice the date of check-in to help you with...

- Start doing binary comparisons of your local jar versus the publicly
released versions. If you got a date from your source control above, you
can start with the latest one as of that date and work your way back.
Also, in my experience, you should perform this comparison step even if
you found an explicit version in one of the steps above. Someone might
have made a mistake or you might work with a particularly dense team
that sees no problem with modifying released jars and checking them in
as if they were the original jars (*grumble grumble*).

Chris

 -Original Message-
 From: Christian Goetze [mailto:[EMAIL PROTECTED] 
 Sent: Thursday, 12 October, 2006 18:53
 To: Maven Users List
 Subject: How do people search for jars and poms?
 
 If this is a stupid question, I apologise in advance...
 
 Given a dependency to a specific set of classes, how do 
 people locate the jar that provides it, together with the 
 artifact and group ids? I haven't yet found a better way than 
 to search through ibiblio, hoping to find something there - 
 but to locate things like javax.xml.rpc.*, it's not easy.
 
 As you can tell, I'm in the process of converting an ant 
 based system with lots of checked in .jar files to a maven 
 system. The trouble with the checked in .jar files is that 
 they are completely void of any version info, and I need to 
 reconstruct the dependency tree by hand.
 
 How do the pros do it?
 --
 cg
 
 -
 To unsubscribe, e-mail: [EMAIL PROTECTED]
 For additional commands, e-mail: [EMAIL PROTECTED]
 
 

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



How do people search for jars and poms?

2006-10-12 Thread Christian Goetze

If this is a stupid question, I apologise in advance...

Given a dependency to a specific set of classes, how do people locate 
the jar that provides it, together with the artifact and group ids? I 
haven't yet found a better way than to search through ibiblio, hoping to 
find something there - but to locate things like javax.xml.rpc.*, it's 
not easy.


As you can tell, I'm in the process of converting an ant based system 
with lots of checked in .jar files to a maven system. The trouble with 
the checked in .jar files is that they are completely void of any 
version info, and I need to reconstruct the dependency tree by hand.


How do the pros do it?
--
cg

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



Re: How do people search for jars and poms?

2006-10-12 Thread Jason Chan

I am using:

MVN Registry
http://www.mvnregistry.com/


On 10/13/06, Christian Goetze [EMAIL PROTECTED] wrote:


If this is a stupid question, I apologise in advance...

Given a dependency to a specific set of classes, how do people locate
the jar that provides it, together with the artifact and group ids? I
haven't yet found a better way than to search through ibiblio, hoping to
find something there - but to locate things like javax.xml.rpc.*, it's
not easy.

As you can tell, I'm in the process of converting an ant based system
with lots of checked in .jar files to a maven system. The trouble with
the checked in .jar files is that they are completely void of any
version info, and I need to reconstruct the dependency tree by hand.

How do the pros do it?
--
cg

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