Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Commons Collections 4 Maven REPO

Hi i need apache's commons-collections 4, because of its more generic functions.

I had this dependency:

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

But for a while it disappeared in the mven repositories.

Does anaybody know where i can find it again for maven?

like image 534
wutzebaer Avatar asked Jan 30 '14 09:01

wutzebaer


1 Answers

Should be

<dependency>
    <groupId>org.apache.commons</groupId>
    <artifactId>commons-collections4</artifactId>
    <version>4.0</version>
</dependency>
like image 175
Thilo Avatar answered Oct 31 '22 03:10

Thilo