简体   繁体   中英

Latest maven dependency of Apache Commons

I emailed this question to dev@commons.apache.org but have not yet got a response.

I am trying to add a maven dependency to the latest commons-collections package, which I see from the site is 4.0 ( http://commons.apache.org/proper/commons-collections/javadocs/api-release/index.html ).

I see from maven central that the version that it has is 20040616. This looks like a date and not a version number. However, the contents of the jar seems to match the API at http://commons.apache.org/proper/commons-collections/javadocs/api-release/index.html . I would like to confirm if this is the actual 4.0 dependency, that I should be adding.

http://search.maven.org/#artifactdetails%7Ccommons-collections%7Ccommons-collections%7C20040616%7Cjar

commons-collections commons-collections 20040616

Thanks,

Venk

Try this:

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

Please try adding the following dependency

<dependency>
  <groupId>com.github.dirkraft</groupId>
  <artifactId>commons-collections</artifactId>
  <version>4.0-SNAPSHOT</version>
</dependency>

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM