Commons 4 Maven REPO Collections

Hi, I need 4 apache collective elements due to its more general functions.

I had this dependency:

<dependency> <groupId>commons-collections</groupId> <artifactId>commons-collections</artifactId> <version>4.0-SNAPSHOT</version> </dependency> 

But for a while, he disappeared into the mven repositories.

Does anyone know where I can find it again for maven?

+6
source share
1 answer

Must be

 <dependency> <groupId>org.apache.commons</groupId> <artifactId>commons-collections4</artifactId> <version>4.0</version> </dependency> 
+11
source

All Articles