Java+Maven的工程运行Sonar的方式
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Java+Maven的工程运行Sonar的方式相关的知识,希望对你有一定的参考价值。
step 1:在maven->setting.xml中进行配置
修改mvn工程所用的setting.xml文件,在<profiles></profiles>节点中增加:
<profile>
<id>sonar</id>
<activation>
<activeByDefault>true</activeByDefault>
</activation>
<properties>
<sonar.jdbc.url>
jdbc:mysql://${mysql-url}:${port}/${DbName}?useUnicode=true&characterEncoding=utf8
</sonar.jdbc.url>
<sonar.jdbc.username>${name}</sonar.jdbc.username>
<sonar.jdbc.password>${passwd}</sonar.jdbc.password>
<sonar.host.url>${url}</sonar.host.url>
</properties>
</profile>
step 2:
然后,执行命令 mvn clean install sonar:sonar
如图-->
Maven 插件会自动把所需数据(如单元测试结果、静态检测结果等)上传到 Sonar 服务器上
执行完成后,便可在Web Server中查看分析结果数据
参考
http://www.07net01.com/program/102648.html
http://blog.csdn.net/hunterno4/article/details/11687269
http://www.cnblogs.com/gao241/p/3190701.html
以上是关于Java+Maven的工程运行Sonar的方式的主要内容,如果未能解决你的问题,请参考以下文章