What is the difference between maven dependencies org.apache.commons:commons-io and commons-io:commons-io?

前端 未结 3 1387
既然无缘
既然无缘 2020-12-03 13:53

Maven repositories contain these two dependencies: org.apache.commons:commons-io:1.3.2 and commons-io:commons-io:1.3.2. What is the difference and which one I should be usin

3条回答
  •  无人及你
    2020-12-03 14:40

    The deployment of

    org.apache.commons:commons-io:1.3.2

    Was a mistake that was ultimately fixed by relocating:

    POM of org.apache.commons:commons-io:1.3.2

    To use commons-io:commons-io:1.3.2.

    The mistake was likely an attempt to migrate the Commons IO library to use the current naming convention for Maven groupIds.

提交回复
热议问题