Tagged Questions
Sonar is an open source quality management platform, dedicated to continuously analyze and measure technical quality, from the project portfolio to the class method. http://www.sonarsource.org/
21
votes
3answers
3k views
delete a project from Sonar
does anyone know how to delete a project from a Sonar server?
Thanks,
Ronen.
17
votes
5answers
4k views
11
votes
1answer
390 views
Any current workarounds to use Sonar for Java 7 code?
I try to use Sonar on a Java 7 project (which relies on new syntactic features) and the PMD part and the Checkstyle part fail to parse those files.
The Findbugs part fails to read Java 7 class files.
...
8
votes
5answers
579 views
Are there any Quality Management tools other than Sonar [closed]
We in our organizationa are trying to implement a source code quality management tool. Sonar is one such tool we have come across, and it's quite full of features and is phenomenal. We want to compare ...
8
votes
5answers
1k views
Sonar : any feedback?
I am currently doing a little study over Sonar and (why not) other tools to manage code quality.
I did not found the documentation much clear nor extended and I have some questions.
Does somebody ...
7
votes
3answers
233 views
Ensure minimal coverage on new Subversion commits
We have a massive project with almost no unit tests at all. I would like to ensure from now on that the developers commit new features (or bugs!) without minimal coverage for corresponding unit tests.
...
5
votes
2answers
77 views
Tool for incremental static analysis of code?
Are there any, free, tools which allow incremental static analysis of code (for SVN and preferably Git)? Currently we are using Sonar (2.12 I think?) but the problem is the time it needs to analyse ...
5
votes
4answers
1k views
Is Sonar Replacement for Checkstyle, PMD, FindBugs?
We are working on a web project from scratch and are looking at the below static code analyzers...
conventions (Checkstyle)
bad practices (PMD)
potential bugs (FindBugs).
The project is built on ...
5
votes
3answers
465 views
Measuring distance between two iOS Devices
Yeah, I'm currently wondering about this.
In my use case the devices will be 50cm to 10m apart and I'd like it to be accurate to at least 10 cm. (Therefore GPS is not an option)
2 Ways spring to ...
4
votes
2answers
2k views
Empty GroupID sonar eclipse
I'm using Maven And Sonar with eclipse. I already have my maven projects on LocalHost 9000.
But when i go to eclipse configure>associate with sonar says that my groupId is empty. I think thats not ...
4
votes
2answers
686 views
Is there a Sonar for C#?
I'm looking for a package like Sonar (http://www.sonarsource.org/) that works for C#.
Are there any?
4
votes
4answers
322 views
Can someone show me what a good dependency matrix looks like and specify why?
I would like to start using DSM, but not sure how to get started.
What does a good dependency matrix look like and why? How does it work?
4
votes
3answers
2k views
Create pom.xml file
Could anayone give me some sugestions on how to create a pom.xml file for a multimodules project, that is build with ant? I need to create this pom.xml file in order to analyze the project with Sonar.
...
4
votes
2answers
2k views
Groovy/Grails plugin for Sonar
Sonar is an application for integrating output from several static and test analysis tools into a comprehensive overview of the software's quality.
Unfortunately, most of those analysis tools (PDM, ...
4
votes
1answer
489 views
4
votes
5answers
10k views
Sonar maven integration
I have followed the directions to integrate Sonar with Maven (http://docs.codehaus.org/display/SONAR/Install+Sonar) - altered settings.xml to include sonar repository at http: ...
4
votes
2answers
2k views
Sonar project integration
We've quite big project with own build framework, based mostly on Java (however other languages exist).
We'd like to use Sonar Hudson plugin to graphically present various code metrics.
How do we ...
3
votes
3answers
80 views
Looking for a way to prevent to usage of java.sql.Statement in project
Our team is looking to have better compliance with the OWASP guidelines, and one of the tasks is the prevention of SQL Injection attacks. In order to facilitate this, I was looking for a way to ...
3
votes
1answer
201 views
How to export FindBugs/PMD/Checkstyle rules from Sonar and import into Netbeans
My company has sonar set up to with various plugins (PMD, FindBugs, CheckStyle), and although it is very useful as is (it runs after every Jenkins build that was triggered by a check-in to svn), I ...
3
votes
1answer
182 views
Sonar & Gallio: Gallio won't execute as there are no test projects
I have installed Sonar and configured it to analyze our (.NET) projects (using Sonar-Runner). Everything works great, except the tests (MsTest). I've googled around, spent quite some time just ...
3
votes
1answer
159 views
SonarSource Python alternative?
We are planing to place quality checking for our python code, earlier we used sonar for java projects. Is there any project support python having similar functionality of sonarsource ?
3
votes
1answer
549 views
Why my Sonar Jenkins job never becomes unstable, even with test failures?
I have a job in Jenkins that is run every night. The tasks executed during this build are: compilation, unit tests, integration tests (which are only JUnit tests which are longer than "real unit ...
2
votes
1answer
23 views
Maven assembly set username for tar
I'm using Maven with the Assembly plugin and would like to set the user and group for a tar-file.
I can set access rights to every directory, but without setting the user this is quite useless.
Any ...
2
votes
2answers
189 views
Schedule specific build target in Jenkins?
The group that I work in has standardized on Jenkins for Continuous Integration builds. Code check-in triggers a standard build, Cobertura analysis and publish to an Artifactory SNAPSHOT repo. I've ...
2
votes
3answers
462 views
SONAR - Measure Code Coverage using Cobertura
I am using sonar to measure code quality. One thing that I do not know is the steps to measure code coverage using Cobertura.
I followed the steps from ...
2
votes
1answer
562 views
Sonar plugin not working for projects that use ANT as a build script
Problem
I have just installed the Sonar Jenkins plugin. I went into my configured job (a free style job) that produces a WAR file artifact through an ANT build and did as follows:
Check the Sonar ...
2
votes
2answers
323 views
How to get the full code coverage on a Maven multi-modules project
Imagine a multi-modules Maven project, such as the following one:
parent
+- core
+- main
main is dependent on the core module.
I now write a class CoreClass in core, with 2 methods: method1() ...
2
votes
1answer
748 views
Import checkstyle-configuration from sonar into eclipse-checkstyle-plugin
I want to export checkstyle rules from sonar and import them into the checkstyle eclipse plugin. Unfortunately sonar exports the checkstyle rules to a csv file.
But the checkstyle plugin only accepts ...
2
votes
1answer
142 views
Findbugs reports an incompatible bit mask bug, but I don't see how
I have a Comparator that checks "null"s for the two objects before comparing their contents.
The compare method looks like this:
public int compare(MyClass left, MyClass right) {
if (left ...
2
votes
1answer
213 views
How to re-analyze complete history of a project using Sonar?
I would like to load the entire project history since its inception into Sonar.
I would basically want to execute code like this:
0) checkout version 1 from Subversion
1) checkout next version from ...
2
votes
2answers
471 views
Quality metrics and continuous integration for ruby on rails
In my day work, I work on your classic Java aplication. We use as "software factory" : Maven, Hudson and Sonar.
In my night work, I work on personnal ruby on rails stuff. I have a certain number of ...
2
votes
2answers
748 views
Sonar Installation problem
Information about Installation
Using embedded database Derbis
Problem :
I run bin/windows-x86-32/StartSonar.bat and then click http://localhost:9000
On clicking this, I get the following error:
...
2
votes
1answer
110 views
lines of code between time frame in sonar
I would like to know if Sonar has the option to provide the report for lines of code changed/inserted/updated between the given timeframe ?
2
votes
1answer
735 views
Sonar Eclipse Plugin - “Test connection”
I use Sonar 2.4.1,
Maven 2,
Eclipse SDK 3.5.
Sonar is up and running at http://127.0.0.1:9000.
I've installed Sonar Eclipse Plugin and when i try to add a sonar server and i click ...
2
votes
0answers
335 views
HP Quality Center Status plugin Hudson or Sonar
Does anyone have any idea about a plugin for Hudson or Sonar that connects to HP Quality Center and retrieves a status about the opened DEFECTS in a project?
Thanks in advance.
2
votes
1answer
302 views
Sonar Maven plugin - fail the build on violation
Is there a way to configure Sonar or the Sonar Maven plugin to make a build fail when a violation of a certain priority (Blocker, Critical) is detected?
2
votes
2answers
221 views
Sonar Category Explainations
Can anybody suggest a one/two line explanation of the "five" sonar categories, in such a way that a non-developer can understand what the percentage figure means.
Efficiency
Maintainability
...
2
votes
2answers
313 views
Create new user in sonar
Is it possible to create a new user in sonar without using the web interface?
I need to write a script that inserts the same users for some tools, including sonar.
2
votes
2answers
639 views
How can I speed up Sonar's package design analysis?
I maintain the build process for a large (> 500,000 LOC) Java project. I've just added a Sonar analysis step to the end of the nightly builds. But it takes over three hours to execute ... This isn't ...
2
votes
1answer
2k views
Has anyone successfully deployed Sonar on Jetty 7?
I am trying to deploy Sonar (automatic code monitoring tool) on a Jetty 7 servlet container.
I would like to use the default config first (embedded Derby DB) as a POC and transition to a production ...
1
vote
0answers
10 views
Sonar (software quality) - extending sonar (controllers and views)
I have been fiddling with SONAR for some time now, and I would like to extend it to some point. I don't think I will be able to achieve this with a custom plugin but if I would introduce an additional ...
1
vote
0answers
16 views
SONAR code violation filtering by user
Does anyone know if there is SONAR extension for filtering violations by user/author who introduced them ?
Idea is to pick a user, and SONAR would list all violations made in the code by that ...
1
vote
1answer
84 views
How to get JaCoCo coverage with Sonar in Jenkins?
I followed the instructions here http://docs.codehaus.org/display/SONAR/Hudson+and+Jenkins+Plugin I am NOT using Maven.
My Jenkins job output says:
12:32:33.951 INFO Sensor JaCoCoSensor...
...
1
vote
1answer
27 views
Sonar and Flex plugin - Dollars ($) are not accepted in java class names
In reference to this bug from Sonar:
http://jira.codehaus.org/browse/SONAR-1865
and this one (which cross references the one above):
http://jira.codehaus.org/browse/SONAR-1637
I am still seeing this ...
1
vote
0answers
46 views
“Project coverage is set to 0%” – JaCoCo and Sonar in Jenkins
I moved my job from a single Hudson machine to a multi-slave Jenkins environment, and now JaCoCo coverage no longer works.
WORKING (old):
Hudson 2.0.1,
Jenkins Sonar Plugin 1.7.1,
Sonar 2.1.2
BROKEN ...
1
vote
2answers
37 views
Does local Eclipse project affect statistics of central Sonar installation?
I'd like to see the violations shown by Sonar plugin in my local Eclipse environment. I tried to follow this instruction and have a question on it. In Eclipse I have to set a Sonar server which runs ...
1
vote
2answers
64 views
How can I use Sonar with our project, which is built with ant?
We build our projects with ant and happy with it.
The other day, I wished to give Sonar a try only to discover that it requires me to have maven. So, I guess I need some kind of pom.xml somewhere in ...
1
vote
1answer
66 views
Changed Sonar web.context, now ant task fails
I had a working sonar/jenkins installation, where sonar was installed on localhost:9000 and jenkins was on localhost:8080. I then wanted to hide those services behind Apache and protect them behind ...
1
vote
0answers
112 views
Sonar Configuration Error
Sonar plugin fails to execute
Caused by: java.sql.SQLException: SQL
driver not found org.apache.derby.jdbc.ClientDriver at
...
1
vote
1answer
198 views
SONAR - How to exclude packages that is defined under “sonar.test”
I have a projects in JAVA that I analyze using sonar. Some of the java packages that I have are all under source folder. I also have some test file that I have under a different folders. Now, in ...