I've created a maven project using m2eclipse plugin, I'am able to import dependencies through the following code,
<repositories>
<repository>
<id>maven-restlet</id>
<name>Public online Restlet repository</name>
<url>http://maven.restlet.org</url>
</repository>
</repositories>
<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>3.8.1</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.restlet.jse</groupId>
<artifactId>org.restlet</artifactId>
<version>2.1.2</version>
</dependency>
However, I want to configure javadocs for the downloaded dependecies so that I can check the documentation while working. How do I achieve the object?