-
Notifications
You must be signed in to change notification settings - Fork 11
Home
Welcome to the sonar-icode-cnes-plugin wiki!
Sonar-icode-cnes-plugin is a SonarQube plugin integrating i-Code CNES results into SonarQube dashboard. i-Code CNES is a free open source code checker for Fortran and Shell, available here : https://github.com/lequal/i-CodeCNES.
Required : git, Java 8 and maven 3.5.0 (or latest)
- Clone github repository :
git clone https://github.com/lequal/sonar-icode-cnes-plugin.git
- Build using maven from the project directory :
mvn clean install
- The generated plugin can be found into the target directory
(<sonar-icode-cnes-plugin_dir>/target)
- Copy the generated jar into
<SonarQube_installation_directory>/extensions/plugins
. - Restart SonarQube :
sonar restart
orservice sonar restart
- Check SonarQube logs :
tail -f <SonarQube_installation_directory>/logs/web.log
- Open SonarQube web interfaces
http://<SonarQube_installation_host_ip>:9000
orhttp://localhost:9000
if your are on the host machine. - Select "Icode Quality Profile" and add selected i-Code CNES rules to the Profile.
For all project source files, run:
icode <source_file> > <result_file>
Where:
- The source file
<source_file>
shall have for extension .f, .f77, .f90 or .sh. - The i-Code CNES standard output stream shall be stored into a report file whose name is given in SonarQube property
sonar.icode.reports.path
.
In your project directory, create sonar-project.properties file, containing the following items :
sonar.projectKey=<your_project_key>
sonar.projectName=<your_project_name>
sonar.projectVersion= <your_project_version>
# Comma-separated paths to directories with sources (required)
sonar.sources=.
# Tells SonarQube where the i-Code CNES analysis reports are
sonar.icode.reports.path=<report_path>
# Encoding of the source files
sonar.sourceEncoding=UTF-8
Once you got i-Code CNES results and sonar-project.properties
configured, you can launch sonar-scanner from your project's directory : sonar-scanner
.
sonar-icode-cnes-plugin integrates all i-Code CNES rules. For more information on rules definition, please look directly on i-Code CNES github page : https://github.com/lequal/i-CodeCNES.
You can contribute to sonar-icode-cnes-plugin :
- following the defined CODE_OF_CONDUCT
- using the PULL_REQUEST_TEMPLATE
- using the ISSUE_TEMPLATE
Contact : [email protected]
Bugs and Feature requests : https://github.com/lequal/sonar-icode-cnes-plugin/issues
sonar-icode-cnes-plugin is under GNU GPL v3.