sonarqube安装好后,使用sonar-runner出错?
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了sonarqube安装好后,使用sonar-runner出错?相关的知识,希望对你有一定的参考价值。
具体错误信息如下:
error during sonar runner exectuionunable to execute sonarcaused by:you must define the following mandatory properties for 'unknown':sonar.projectKey,sonar.projectName,sonar.projectVersion,sonar.sourcesTo see the full stack trace of the errors re-run sonarQube Runner with the -e switchRe-run sonar Qube Runner using the -X switch to enable full debug logging.
这个是哪里配置的不对了么?这个设置的是访问本地的项目,如何设置成访问svn上的项目了?
官网下载网址:
http://repository.codehaus.org/org/codehaus/sonar-plugins/sonar-runner/1.0/sonar-runner-1.0.zip
2、环境变量,设置SONAR_RUNNER_HOME,在Path下添$SONAR_RUNNER_HOME/bin (Unix) or %SONAR_RUNNER_HOME%/bin。
3、修改$SONAR_RUNNER_HOME/conf/sonar-runner.properties文件,打开database connection, server URL的注释
命令行中输入sonar-runner –h查看是否配置成功追问
那可不可以给我远程设置一下?
参考技术A Cause by 提示你没有配置几个属性,key name version soures重新百度看看你配置文件吧 举例
sonar.sourceEncoding=UTF-8
sonar.projectKey=test
sonar.projectName=test
sonar.projectVersion=1.0
sonar.sources=.
sonar.language=java
cocoapods安装好后repo换源
1.pod repo
然后会出现以下内容,如下是我已经换了之后的,而你的URL还是github的
master
- Type: git (master)
- URL: https://git.coding.net/CocoaPods/Specs.git
- Path: /Users/Mingo/.cocoapods/repos/master
网上给出了一个铺天盖地的方法,,使用如下方法换掉repo的源:
pod repo remove master
pod repo add master https://git.coding.net/CocoaPods/Specs.git
pod repo update
然而呀,,,,我试了好多次结果是:
[!] To setup the master specs repo, please run pod setup
.
最后继续查找,找到了如下的,方法:
执行:
git clone https://git.coding.net/CocoaPods/Specs.git ~/.cocoapods/repos/master
过来许久以后,
有如图就正常了
最后切记要:
pod repo update
显示上图:说明安装成功。
这时候在 pod repo 就是和开始的地方一样了。。
这样之后,,相信我们的pod install 和 pod update 等等都有快速好多了。
以上是关于sonarqube安装好后,使用sonar-runner出错?的主要内容,如果未能解决你的问题,请参考以下文章