操蛋啊日

Could not get configured mojo for org.apache.maven.plugins:maven-checkstyle-plugin:2.17:checkstyle {execution: checkstyle}
Plugin org.apache.maven.plugins:maven-checkstyle-plugin:2.17 or one of its dependencies could not be resolved: Could not find artifact com.sun:tools:jar:1.7.0 at specified path D:\JAVA\JDK\jre7/../lib/tools.jar

解决方法一:

<!-- 避免出现 Could not find artifact com.sun:tools:jar:1.7.0问题 --> 
<dependency>   
<groupId>com.sun</groupId>   
<artifactId>tools</artifactId>   
<version>1.5.0</version>   
<scope>system</scope>   
<systemPath>${java.home}/lib/tools.jar</systemPath>   
</dependency>

猜你喜欢

转载自chinajmw.iteye.com/blog/2304926
今日推荐