fuck it

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

 

Solution one:

<!-- 避免出现 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>

Guess you like

Origin http://10.200.1.11:23101/article/api/json?id=326830672&siteId=291194637