How to connect source and javadoc to IntelliJ IDEA libraries, which are automatically associated with Grails dependency resolution and are not explicitly specified in the IDEA project settings?
For example, in BuildConfig.groovy
grails.project.dependency.resolution = { repositories { mavenRepo "http://oss.sonatype.org/content/repositories/releases/" } dependencies { runtime 'org.elasticsearch:elasticsearch:0.17.7' } }
Is there any way for IDEA to automatically pick up the source and javadoc from the Maven repository?
source share