Possible Duplicate:
How to make eclipse “File Search” to also search inside source jars containig some text?
I have an Eclipse Java project using Maven-managed libraries. Inside those libraries, there must be a string variable/field with the value (not name) form-login
.
Eclipse provides the "Java Search" functionality. It allows for searching inside application libraries (including Maven dependencies), but only for the name of a variable, not its value.
The "File Search" functionality on the other hand doesn't provide searching inside application libraries.
How can I find some string (or at least the value of some variable) in my application's used libraries?
Hacks welcome!