赞
踩
Maven打包时控制台出现警告:The artifact...has been relocated to...
[WARNING] The artifact org.apache.commons:commons-io:jar:1.3.2 has been relocated to commons-io:commons-io:jar:1.3.2
1.3.2之后的版本groupId换成了commons-io
。所以我们在导入依赖的时候是因为这个原因才给出警告,那解决方式很简单,我们只需要更换commons-io
依赖的groupId就好了
原maven依赖:
- <dependency>
- <groupId>org.apache.commons</groupId>
- <artifactId>commons-io</artifactId>
- <version>1.3.2</version>
- </dependency>
更改groupId后
- <dependency>
- <groupId>commons-io</groupId>
- <artifactId>commons-io</artifactId>
- <version>1.3.2</version>
- </dependency>
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。