wutzebaer
wutzebaer

Reputation: 14863

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?

Upvotes: 6

Views: 3578

Answers (1)

Thilo
Thilo

Reputation: 262494

Should be

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

Upvotes: 11

Related Questions