What does the Maven warning, "The artifact...has been relocated to..." mean?

java, maven

Solution

in your dependency declaration change `groupId` from `org.apache.commons` to `commons-io`

Problem

I am getting these warnings when I attempt to run package. ``` [WARNING] The artifact org.apache.commons:commons-io:jar:1.3.2 has been relocated to commons-io:commons-io:jar:1.3.2 [WARNING] The artifact axis:axis-ant:jar:1.4 has been relocated to org.apache.axis:axis-ant:jar:1.4 ```

Original source