I just saw on my pom files that there are two different group id's for Apache commons-collections:
<dependency>
<groupId>commons-collections</groupId>
<artifactId>commons-collections</artifactId>
</dependency>
And this one:
<dependency>
<groupId>org.apache.commons.collections</groupId>
<artifactId>commons-collections</artifactId>
</dependency>
Are these two the same? and if they are the same, which one should is use by convention?