0

I've added a maven dependency for StringUtils (org.apache.commons.lang)

<dependency>
 <groupId>commons-lang</groupId>
 <artifactId></artifactId>
 <version>2.6</version>
</dependency>

I want to see javadoc of that jar , otherwise the javadoc for each functions in (org.apache.commons.lang) when I point the cursor in this function, is there some dependency for it?

Majda
  • 99
  • 1
  • 3
  • 11
  • yes Thanks it resolves my problem I've added org.apache.maven.plugins maven-eclipse-plugin true true – Majda Apr 16 '14 at 09:34

1 Answers1

0

You can use following plugin which I use

             <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-eclipse-plugin</artifactId>
                <version>2.9</version>
                <configuration>
                    <downloadSources>false</downloadSources>
                    <downloadJavadocs>true</downloadJavadocs>
                </configuration>
            </plugin>
Karthik Prasad
  • 9,662
  • 10
  • 64
  • 112