我在本地机器上使用声纳已经很长时间了,但有一次它突然卡住并开始失败。sonar maven mojo 吐出了以下构建错误:
[ERROR] BUILD ERROR
[INFO] ------------------------------------------------------------------------
[INFO] Can not execute Sonar
Embedded error: Fail to download the file: http://192.168.212.197:9000/deploy/plugins/findbugs/sonar-findbugs-plugin-3.2.1.jar (no proxy)
Read timed out
[INFO] ------------------------------------------------------------------------
或者
[INFO] ------------------------------------------------------------------------
[ERROR] BUILD ERROR
[INFO] ------------------------------------------------------------------------
[INFO] Can not execute Sonar
Embedded error: Fail to download the file: http://192.168.212.197:9000/deploy/jdbc-driver.jar (no proxy)
Read timed out
[INFO] ------------------------------------------------------------------------
我尝试通过更改默认主机来摆弄声纳配置 - 尝试了我的本地 IP 尝试了 'localhost' 尝试了我的域名,但它只是说它无法下载 jdbc-driver.jar 或 findbugs-plugin-3.2.1.jar。当我在网络浏览器中输入 URL 时,我会立即获取这两个 jar 中的任何一个,我认为这表明一旦声纳应用程序启动并运行它们就可以获取,并且我可以在声纳网络应用程序部署文件夹中成功找到这些 jars。
我也在使用 MySQL 5.1,甚至尝试使用默认开箱即用的 DERBY DB。阅读了很多关于类似主题的文章,但在 pom 或其他地方存在一些配置问题。这是不同的,我无法解决这个问题。举个例子,它曾经可以工作,但有一天它停止了,也许这是一些网络问题?
有没有人对此有任何想法?