Problem:
Upon doing a mvn clean install of my web app I get only this warning:
[WARNING] The artifact poi:poi-2.5-final:jar:20040302 has been relocated to poi:
poi:jar:2.5-final-20040302
Inside my pom.xml I have poi (Apache POI, for those interested) listed twice :
<dependency>
<groupId>poi</groupId>
<artifactId>poi-2.5-final</artifactId>
<version>20040302</version>
</dependency>
<dependency>
<groupId>poi</groupId>
<artifactId>poi</artifactId>
<version>2.5-final-20040302</version>
</dependency>
What I tried (one which worked):
I tried commenting out the second one,
2.5-final-20040302, which is the one the first one is relocated to. But I get the same error.I tried commenting out the first one,
20040302, and the warning disappears, apparently fixing the problem! :)
Question:
Can someone explain what happened? Why was there two poi's listed? Was it just a duplication error with different formats? Why did only one format not produce the warning? Etc.
It's hard to ask a question when what I am looking for is basic understanding. For context, the pom.xml file was not constructed by me, it was a template Spring/MVC web app project I am basing my code off of. It may or may not have been in error. I am just looking for understanding, although my "hack" fix worked for the moment.
Thank you.