Sonar安装- 企业管理与软件工程- 博客园

1.下载sonar安装版,解压;

2.bin\windows-x86-32\StartSonar.bat

3.mvn clean install sonar:sonar

4.Browse to http://localhost:9000, default login/password is admin/admin.

5.mvn org.codehaus.sonar:sonar-maven-plugin:1.8:sonar -Dsonar.skipInstall=true 安装插件,目前这个插件还是1.8版,地址看插件版本

 

  1. #--------------------------------------------------------  
  2. # To use an environment variable, use the following syntax :  ${env:NAME_OF_ENV_VARIABLE}  
  3. # For example :  
  4. #   sonar.jdbc.url: ${env:SONAR_JDBC_URL}  
  5. #---------------------------------------------------------  
  6.   
  7.   
  8. #---------------------------------------------------------  
  9. # WEB  
  10. #---------------------------------------------------------  
  11. # Listen host/port and context path (for example / or /sonar). Default values are 0.0.0.0:9000/   
  12. # ONLY IF STANDALONE MODE. NOT USED IF DEPLOYED AS A WAR.  
  13. sonar.web.host:                           0.0.0.0  
  14. sonar.web.port:                           9000  
  15. sonar.web.context:                        /sonar  
  16.   
  17. # Apache mod_jk connector. Supported only in standalone mode.   
  18. # Uncomment to activate AJP13 connector.   
  19. #sonar.ajp13.port: 8009  
  20.   
  21. #---------------------------------------------------------  
  22. # DATABASE  
  23. #---------------------------------------------------------  
  24.   
  25. # Comment the 4 following lines to deactivate the default embedded database (used only for tests and demos)  
  26. #sonar.jdbc.url:                            jdbc:derby://localhost:1527/sonar;create=true  
  27. #sonar.jdbc.driverClassName:                org.apache.derby.jdbc.ClientDriver  
  28. #sonar.jdbc.validationQuery:                values(1)  
  29. # data directory, autodetected : /data if standalone application, /WEB-INF/classes/data if WAR deployement (exploded mode)  
  30. #sonar.embeddedDatabase.dataDir:  
  31.   
  32. # MySql  
  33. # uncomment the 3 following lines to use MySQL  
  34. sonar.jdbc.url:                            jdbc:mysql://localhost:3306/sonar?useUnicode=true&characterEncoding=utf8  
  35. sonar.jdbc.driverClassName:                com.mysql.jdbc.Driver  
  36. sonar.jdbc.validationQuery:                select 1  
  37.   
  38. # Oracle  
  39. # uncomment the 3 following lines to use Oracle  
  40. #sonar.jdbc.url:                            jdbc:oracle:thin:@localhost/XE  
  41. #sonar.jdbc.driverClassName:                oracle.jdbc.driver.OracleDriver  
  42. #sonar.jdbc.validationQuery:                select 1 from dual  
  43.   
  44. # PostgreSQL  
  45. # uncomment the 3 following lines to use PostgreSQL  
  46. #sonar.jdbc.url:                            jdbc:postgresql://localhost/sonar  
  47. #sonar.jdbc.driverClassName:                org.postgresql.Driver  
  48. #sonar.jdbc.validationQuery:                select 1  
  49.   
  50. # generic settings  
  51. sonar.jdbc.username:                       sonar  
  52. sonar.jdbc.password:                       sonar  
  53. sonar.jdbc.maxActive:                      10  
  54. sonar.jdbc.maxIdle:                        5  
  55. sonar.jdbc.minIdle:                        2  
  56. sonar.jdbc.maxWait:                        5000  
  57. sonar.jdbc.minEvictableIdleTimeMillis:     600000  
  58. sonar.jdbc.timeBetweenEvictionRunsMillis:  30000  
  59.   
  60. # Transaction isolation level. Default driver setting is used by default.  
  61. # Values : 1 (TRANSACTION_READ_UNCOMMITED), 2 (TRANSACTION_READ_COMMITTED), 4 (TRANSACTION_REPEATABLE_READ), 8 (TRANSACTION_SERIALIZABLE)  
  62. #sonar.jdbc.defaultTransactionIsolation: 2  
  63.   
  64.   
  65. # When packaged in a WAR, JDBC datasource can be configured into the application server then registered to JNDI.  
  66. # In such a case Sonar uses this datasource to connect to database, else if binds itself its own datasource.  
  67. # Note : Jonas does not accept to bind subcontexts, so name should be something like 'jdbc-sonar', without slashes.  
  68. #sonar.jdbc.jndiName:                       jdbc/sonar  
  69.   
  70.   
  71. #---------------------------------------------------------  
  72. # EXTENSIONS  
  73. #---------------------------------------------------------  
  74. # Absolute path of coding rules extensions (custom rules that are not provided with tools like Checkstyle or PMD).  
  75. # This parameter is useful when Sonar is deployed as a WAR. It avoids from packaging the WAR file each time extensions JARs are updated.  
  76. # The directory contains subdirectories like checkstyle/ and pmd/  
  77. # Example :  
  78. # sonar.rules.extensionsPath:  /user/home/jdoe/sonar/extensions   

MVN

  1. <!--  
  2. Licensed to the Apache Software Foundation (ASF) under one  
  3. or more contributor license agreements.  See the NOTICE file  
  4. distributed with this work for additional information  
  5. regarding copyright ownership.  The ASF licenses this file  
  6. to you under the Apache License, Version 2.0 (the  
  7. "License"); you may not use this file except in compliance  
  8. with the License.  You may obtain a copy of the License at  
  9.   
  10.     http://www.apache.org/licenses/LICENSE-2.0  
  11.   
  12. Unless required by applicable law or agreed to in writing,  
  13. software distributed under the License is distributed on an  
  14. "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY  
  15. KIND, either express or implied.  See the License for the  
  16. specific language governing permissions and limitations  
  17. under the License.  
  18. -->  
  19.   
  20. <!--  
  21.  | This is the configuration file for Maven. It can be specified at two levels:  
  22.  |  
  23.  |  1. User Level. This settings.xml file provides configuration for a single user,   
  24.  |                 and is normally provided in $HOME/.m2/settings.xml.  
  25.  |  
  26.  |                 NOTE: This location can be overridden with the system property:  
  27.  |  
  28.  |                 -Dorg.apache.maven.user-settings=/path/to/user/settings.xml  
  29.  |  
  30.  |  2. Global Level. This settings.xml file provides configuration for all maven  
  31.  |                 users on a machine (assuming they're all using the same maven  
  32.  |                 installation). It's normally provided in   
  33.  |                 ${maven.home}/conf/settings.xml.  
  34.  |  
  35.  |                 NOTE: This location can be overridden with the system property:  
  36.  |  
  37.  |                 -Dorg.apache.maven.global-settings=/path/to/global/settings.xml  
  38.  |  
  39.  | The sections in this sample file are intended to give you a running start at  
  40.  | getting the most out of your Maven installation. Where appropriate, the default  
  41.  | values (values used when the setting is not specified) are provided.  
  42.  |  
  43.  |-->  
  44. <settings>  
  45.   <!-- localRepository  
  46.    | The path to the local repository maven will use to store artifacts.  
  47.    |  
  48.    | Default: ~/.m2/repository  -->  
  49.   <localRepository>D:/.m2/repository</localRepository>  
  50.   
  51.   
  52.   <!-- interactiveMode  
  53.    | This will determine whether maven prompts you when it needs input. If set to false,  
  54.    | maven will use a sensible default value, perhaps based on some other setting, for  
  55.    | the parameter in question.  
  56.    |  
  57.    | Default: true  
  58.   <interactiveMode>true</interactiveMode>  
  59.   -->  
  60.   
  61.   <!-- offline  
  62.    | Determines whether maven should attempt to connect to the network when executing a build.  
  63.    | This will have an effect on artifact downloads, artifact deployment, and others.  
  64.    |  
  65.    | Default: false  
  66.   <offline>false</offline>  
  67.   -->  
  68.   
  69.   <!-- proxies  
  70.    | This is a list of proxies which can be used on this machine to connect to the network.  
  71.    | Unless otherwise specified (by system property or command-line switch), the first proxy  
  72.    | specification in this list marked as active will be used.  
  73.    |-->  
  74.     <proxies>  
  75.         <!-- proxy  
  76.             | Specification for one proxy, to be used in connecting to the network.  
  77.             <nonProxyHosts>local.net,some.host.com</nonProxyHosts>  
  78.             |-->  
  79.             <proxy>  
  80.             <id>tnt</id>  
  81.             <active>true</active>  
  82.             <protocol>http</protocol>  
  83.             <username></username>  
  84.             <password></password>  
  85.             <host>10.168.0.7</host>  
  86.             <port>3128</port>  
  87.               
  88.             </proxy>  
  89.           
  90.     </proxies>  
  91.   
  92.   <!-- servers  
  93.    | This is a list of authentication profiles, keyed by the server-id used within the system.  
  94.    | Authentication profiles can be used whenever maven must make a connection to a remote server.  
  95.    |-->  
  96.   <servers>  
  97.     <!-- server  
  98.      | Specifies the authentication information to use when connecting to a particular server, identified by  
  99.      | a unique name within the system (referred to by the 'id' attribute below).  
  100.      |   
  101.      | NOTE: You should either specify username/password OR privateKey/passphrase, since these pairings are   
  102.      |       used together.  
  103.      |  
  104.     <server>  
  105.       <id>deploymentRepo</id>  
  106.       <username>repouser</username>  
  107.       <password>repopwd</password>  
  108.     </server>  
  109.     -->  
  110.       
  111.     <!-- Another sample, using keys to authenticate.  
  112.     <server>  
  113.       <id>siteServer</id>  
  114.       <privateKey>/path/to/private/key</privateKey>  
  115.       <passphrase>optional; leave empty if not used.</passphrase>  
  116.     </server>  
  117.     -->  
  118.   </servers>  
  119.   
  120.   <!-- mirrors  
  121.    | This is a list of mirrors to be used in downloading artifacts from remote repositories.  
  122.    |   
  123.    | It works like this: a POM may declare a repository to use in resolving certain artifacts.  
  124.    | However, this repository may have problems with heavy traffic at times, so people have mirrored  
  125.    | it to several places.  
  126.    |  
  127.    | That repository definition will have a unique id, so we can create a mirror reference for that  
  128.    | repository, to be used as an alternate download site. The mirror site will be the preferred   
  129.    | server for that repository.  
  130.    |-->  
  131.   <mirrors>  
  132.     <!-- mirror  
  133.      | Specifies a repository mirror site to use instead of a given repository. The repository that  
  134.      | this mirror serves has an ID that matches the mirrorOf element of this mirror. IDs are used  
  135.      | for inheritance and direct lookup purposes, and must be unique across the set of mirrors.  
  136.      |  
  137.     <mirror>  
  138.       <id>mirrorId</id>  
  139.       <mirrorOf>repositoryId</mirrorOf>  
  140.       <name>Human Readable Name for this Mirror.</name>  
  141.       <url>http://my.repository.com/repo/path</url>  
  142.     </mirror>  
  143.      -->  
  144.   </mirrors>  
  145.     
  146.   <!-- profiles  
  147.    | This is a list of profiles which can be activated in a variety of ways, and which can modify  
  148.    | the build process. Profiles provided in the settings.xml are intended to provide local machine-  
  149.    | specific paths and repository locations which allow the build to work in the local environment.  
  150.    |  
  151.    | For example, if you have an integration testing plugin - like cactus - that needs to know where  
  152.    | your Tomcat instance is installed, you can provide a variable here such that the variable is   
  153.    | dereferenced during the build process to configure the cactus plugin.  
  154.    |  
  155.    | As noted above, profiles can be activated in a variety of ways. One way - the activeProfiles  
  156.    | section of this document (settings.xml) - will be discussed later. Another way essentially  
  157.    | relies on the detection of a system property, either matching a particular value for the property,  
  158.    | or merely testing its existence. Profiles can also be activated by JDK version prefix, where a   
  159.    | value of '1.4' might activate a profile when the build is executed on a JDK version of '1.4.2_07'.  
  160.    | Finally, the list of active profiles can be specified directly from the command line.  
  161.    |  
  162.    | NOTE: For profiles defined in the settings.xml, you are restricted to specifying only artifact  
  163.    |       repositories, plugin repositories, and free-form properties to be used as configuration  
  164.    |       variables for plugins in the POM.  
  165.    |  
  166.    |-->  
  167.   <profiles>  
  168.     <!-- profile  
  169.      | Specifies a set of introductions to the build process, to be activated using one or more of the  
  170.      | mechanisms described above. For inheritance purposes, and to activate profiles via <activatedProfiles/>  
  171.      | or the command line, profiles have to have an ID that is unique.  
  172.      |  
  173.      | An encouraged best practice for profile identification is to use a consistent naming convention  
  174.      | for profiles, such as 'env-dev''env-test''env-production''user-jdcasey''user-brett', etc.  
  175.      | This will make it more intuitive to understand what the set of introduced profiles is attempting  
  176.      | to accomplish, particularly when you only have a list of profile id's for debug.  
  177.      |  
  178.      | This profile example uses the JDK version to trigger activation, and provides a JDK-specific repo.  
  179.     <profile>  
  180.       <id>jdk-1.4</id>  
  181.   
  182.       <activation>  
  183.         <jdk>1.4</jdk>  
  184.       </activation>  
  185.   
  186.       <repositories>  
  187.         <repository>  
  188.       <id>jdk14</id>  
  189.       <name>Repository for JDK 1.4 builds</name>  
  190.       <url>http://www.myhost.com/maven/jdk14</url>  
  191.       <layout>default</layout>  
  192.       <snapshotPolicy>always</snapshotPolicy>  
  193.     </repository>  
  194.       </repositories>  
  195.     </profile>  
  196.     -->  
  197.   
  198.     <!--  
  199.      | Here is another profile, activated by the system property 'target-env' with a value of 'dev',  
  200.      | which provides a specific path to the Tomcat instance. To use this, your plugin configuration  
  201.      | might hypothetically look like:  
  202.      |  
  203.      | ...  
  204.      | <plugin>  
  205.      |   <groupId>org.myco.myplugins</groupId>  
  206.      |   <artifactId>myplugin</artifactId>  
  207.      |     
  208.      |   <configuration>  
  209.      |     <tomcatLocation>${tomcatPath}</tomcatLocation>  
  210.      |   </configuration>  
  211.      | </plugin>  
  212.      | ...  
  213.      |  
  214.      | NOTE: If you just wanted to inject this configuration whenever someone set 'target-env' to  
  215.      |       anything, you could just leave off the <value/> inside the activation-property.  
  216.      |  
  217.     <profile>  
  218.       <id>env-dev</id>  
  219.   
  220.       <activation>  
  221.         <property>  
  222.       <name>target-env</name>  
  223.       <value>dev</value>  
  224.     </property>  
  225.       </activation>  
  226.   
  227.       <properties>  
  228.         <tomcatPath>/path/to/tomcat/instance</tomcatPath>  
  229.       </properties>  
  230.     </profile>  
  231.     -->  
  232.      <profile>  
  233.             <id>sonar</id>  
  234.             <activation>  
  235.                 <activeByDefault>true</activeByDefault>  
  236.             </activation>  
  237.             <properties>  
  238.                 <!-- EXAMPLE FOR MYSQL -->  
  239.                 <sonar.jdbc.url>  
  240.                   jdbc:mysql://localhost:3306/sonar?useUnicode=true&amp;characterEncoding=utf8  
  241.                 </sonar.jdbc.url>  
  242.                 <sonar.jdbc.driver>com.mysql.jdbc.Driver</sonar.jdbc.driver>  
  243.                 <sonar.jdbc.username>sonar</sonar.jdbc.username>  
  244.                 <sonar.jdbc.password>sonar</sonar.jdbc.password>  
  245.   
  246.                 <!-- SERVER ON A REMOTE HOST 2.1.2中已经变成http://localhost:9000-->  
  247.                  <sonar.host.url>http://localhost:9000/sonar</sonar.host.url>   
  248.             </properties>  
  249.         </profile>  
  250.   </profiles>  
  251.   
  252.   <!-- activeProfiles  
  253.    | List of profiles that are active for all builds.  
  254.    |  
  255.   <activeProfiles>  
  256.     <activeProfile>alwaysActiveProfile</activeProfile>  
  257.     <activeProfile>anotherAlwaysActiveProfile</activeProfile>  
  258.   </activeProfiles>  
  259.   -->  
  260.   
  261.       
  262.   
  263. </settings>   

 

 

收集数据

 maven项目

1。mvn clean install -Dtest=false -DfailIfNoTests=false

2。mvn sonar:sonar or mvn org.codehaus.sonar:sonar-maven-plugin:1.8:sonar

 

not maven项目

1.建一个pom.xml

  1. <project xmlns="http://maven.apache.org/POM/4.0.0"  
  2.        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"  
  3.        xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">  
  4.   <modelVersion>4.0.0</modelVersion>  
  5.   <groupId>eric</groupId>  
  6.   <artifactId>mmsitem</artifactId>  
  7.   <name>mmsitem</name>  
  8.   <version>1</version>  
  9.   <build>  
  10.         <sourceDirectory>../src</sourceDirectory>  
  11.     <outputDirectory>../WebRoot/WEB-INF/classes</outputDirectory>  
  12.         <plugins>  
  13.            <plugin>  
  14.               <groupId>org.apache.maven.plugins</groupId>  
  15.               <artifactId>maven-compiler-plugin</artifactId>  
  16.               <configuration>  
  17.                   <source>1.5</source>  
  18.                   <target>1.5</target>  
  19.                   <excludes>  
  20.                       <exclude>**/*.*</exclude>  
  21.                   </excludes>  
  22.               </configuration>  
  23.            </plugin>  
  24.         </plugins>  
  25.   </build>  
  26.   <properties>  
  27.     <sonar.dynamicAnalysis>false</sonar.dynamicAnalysis>  
  28.   </properties>  
  29. </project>  

 2。mvn sonar:sonar or mvn org.codehaus.sonar:sonar-maven-plugin:1.8:sonar

郑重声明:资讯 【Sonar安装- 企业管理与软件工程- 博客园】由 发布,版权归原作者及其所在单位,其原创性以及文中陈述文字和内容未经(企业库qiyeku.com)证实,请读者仅作参考,并请自行核实相关内容。若本文有侵犯到您的版权, 请你提供相关证明及申请并与我们联系(qiyeku # qq.com)或【在线投诉】,我们审核后将会尽快处理。
—— 相关资讯 ——