I have pom.xml file with a list of dependencies:
<dependencies>
<dependency>
<groupId>commons-collections</groupId>
<artifactId>commons-collections</artifactId>
</dependency>
<dependency>
<groupId>commons-io</groupId>
<artifactId>commons-io</artifactId>
</dependency>
My task is to find out answer to the following questions:
- Is it the latest version of dependency, or newer already exists?
- Is there some conflicts between two dependencies, which is mean that they using the same jar files with a different versions?
- Will be nice to know is there any possibility to retrieve quick documentation about the dependency without leaving IntelliJ IDEA 14.x?