I've inherited an Ant-based project that has over 80MB of jar files in a lib dir. I'd like to convert it to Maven. The jar files are named very simply, like quartz.jar. Since there is no indication of group id, much less version, converting this to pom.xml format is going to be very painful.
Is there a service or API that will return the Maven coordinates (group, artifact, version) for a jar file, given its SHA?
My fallback will be to examine the MANIFEST file from each jar, which will at least give me version info, if not specific Maven coordinates.