I have multiple modules in an IntelliJ project where each module's dependencies are managed by ivy.
My problem is that for every single module, I have to specify the javadoc url of common 3rd party libraries through these tedious actions:
- Pick up the mouse
- Find the library's javadoc in google
- Right click on the module and select Module Settings
- Go to the Dependencies tab
- Click on the correct module library
- All modules have their dependencies pulled to their own jar directories through ivy, so combining common libraries into a project-level library is not an option
- Click Edit
- Click Specify documentation URL
- Paste the url
- Click 3 OK's
- Hit Ctrl+Q and see if it worked.
- If it didn't work because I pasted the wrong url or used the wrong library, repeat.
Having to do this for every single module for commons-lang, commons-collections, hibernate, spring, etc gets very tedious. Is there a way to specify a global list of fallback javadoc urls?