Since you've said that the duplicate question isn't sufficient I'll offer a fairly odd idea to consider. It's not trivial, however neither is your problem if you have 500 jars. You could try using ProGuard on your application. You'll have to configure it to be aware of all entry points (main methods or servlets, etc), see their examples.
It can generate a single jar output that contains only the necessary classes from all of your dependency jars. From that you could cross reference every remaining class in that jar for which dependency jars you actually need. I'm not suggesting that you use the output from ProGuard, simply that you use it for filtering. You'd have to write a script or program to do this though. As I said, non-trivial :)