解决引用相同jar文件导致的错误,错误代码
Multiple artifacts of the module commons-io#commons-io;2.3 are retrieved to the same file! Update the retrieve pattern to fix this error.
ivy代码
<ivy:retrieve pattern="lib/[artifact].[ext]" conf="dev" />
解决:
<ivy:retrieve pattern="lib/[artifact](-[classifier]).[ext]" conf="dev" />
原因:
未知,只是从别人那里学的