您的位置:首页 > 其它

Missing artifact com.sun:tools:jar:1.5.0:system 解决方法

2013-09-05 22:43 483 查看
使用maven是有时候会有 Missing artifact com.sun:tools:jar:1.5.0:system错误提示

需要在依赖中加入

<dependency>
<groupId>com.sun</groupId>
<artifactId>tools</artifactId>
<version>1.5.0</version>
<scope>system</scope>
<systemPath>${JAVA_HOME}\lib\tools.jar</systemPath>
</dependency>


svn使用代理方法:

找到C:\Users\ming\AppData\Roaming\Subversion\servers文件

修改

### Information for the first group:
# [group1]
http-proxy-host = 127.0.0.1
http-proxy-port = 8087
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: