Tagged Questions

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. ...
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. ...
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
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
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 ...
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
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
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
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
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
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
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
163 views

Ncss Type Count violation

I'm not really clear with this violation raised by PMD. Basically I have 2 questions: What should I do to get rid of this violation? What does the following statement mean? The type has an ...
1
vote
0answers
57 views

Bamboo + sonar.dynamicAnalysis=reuseReports = 0% Rules Compliance

Bamboo is in place to do continuous builds, but want to use Sonar for quality metrics tracking. Unit test pass/fail and Clover code coverage metrics must be captured in Bamboo. But, these same values ...
1
vote
2answers
79 views

Findbugs - “close() invoked on a value that is always null”

I have this block of code private void doSomething(Properties properties) throws XXException { PersistenceManager pm = null; try { pm = new ...
1
vote
1answer
73 views

In Sonar, how to prevent checking some rules in some packages?

We have an Android/Blackberry project with a common part. That part, obviously, is written to compile to both Android and Blackberry targets, and, consequently, cannot use some of the newer Java ...
1
vote
2answers
145 views

What is wrong with my Maven Config?

I want to checkout sonar, so I added the following snippet to my pom.xml the dependency part was taken from http://maven.apache.org/general.html#tools-jar-dependency <profile> ...
1
vote
1answer
417 views

Why is Sonar design view not showing any dependencies for my project?

I've successfully set up Sonar against a large Java project that is built using Ant. I've finally hooked up the JUnit test results and the Cobertura code coverage report. I now see all the packages ...
1
vote
2answers
697 views

Sonar Lite Mode Aux Classpath & Ivy Dependencies

Our project currently uses Ivy for its dependency management. We would really like to integrate our Hudson build server with Sonar. So far this has been a relatively simple and straightforward task. ...
1
vote
1answer
229 views

checkstyle rules that covers Effective Java recommendations

Does anyone know if there is a compilation of check style rules that covers most of the recommendations made by Joshua Bloch in his Effective Java book? I know I can add custom rules in the checkstyle ...
1
vote
2answers
3k views

Sonar do not use the excludeFilterFile from the projects pom.xml

I have findbugs (and checkstyle) configured in my project pom.xml: <plugin> <groupId>org.codehaus.mojo</groupId> ...
0
votes
1answer
26 views

Sonar - Installation fails - StartSonar.bat

I'm trying to install Sonar. I downloaded the latest release as an archive. Extracted it and ran StartSonar.bat. When I navigate to http://localhost:9000/, I get the following error message: We're ...
0
votes
1answer
36 views

How do I make Hudson/Jenkins fail if Sonar thresholds are breeched?

I am using maven to build my java app, Jenkins for CI and Sonar for metrics. Currently I have a build job that creates the sonar report. (Triggered via a post-build step in Jenkins.) I would like ...
0
votes
1answer
47 views

Sonar 2.12 unable to read and import source file

I'm trying to run Sonar 2.12 with Ant runner. Not using maven,But sonar target fails with an exception Unable to read and import the source file : 'D:\JUnitDocletPoC\iLog_Client\src\ ...
0
votes
1answer
23 views

Sonar database date format

I am running into an issue today, where Sonar, during the setup migration process, inserts dates with the English format while our SQL Server instance expects the French format (and this cannot be ...
0
votes
1answer
46 views

Sonar build fails with NullPointerException

I have set up a sonar target in jenkins. It used to work, but started throwing the following exception a few days ago. I can't see what is wrong. The code compiles locally, anbd passes in the ...
0
votes
2answers
182 views

How to make tomcat host both jenkins and sonar without crashing with OutOfMemoryException?

This could be a duplicate of Installing Sonar and Jenkins on Tomcat, if the replies to that question helped me. Alas, I have set CATALINA_OPTS to -Dfile.encoding=UTF-8 -server -Xmx2560m ...
0
votes
1answer
83 views

Setup sonar-runner for multiple java projects

I am trying to run sonar-runner to analyze multiple Java projects in one go. According to the documentation http://docs.codehaus.org/display/SONAR/Analyse+with+a+simple+Java+Runner it is just a matter ...
0
votes
1answer
63 views

Sonar Plugin not compiling after package structure change

I am writing a Sonar GWT Plugin and since a change in the package structure the plugin no longer compiles. I changed the structure from jku.se.drilldown.ui.client to jku.se.drilldown.client.ui ...
0
votes
0answers
54 views

can't find sonar-2.10.jar anywhere

After successful upgrade of sonar to 2.10, I run usual code analysis, got this issue: http://old.nabble.com/Problem-with-Jenkins-integration-td31783437.html with same conclusion, missing ...
0
votes
2answers
390 views

Getting code coverage of my application using JaCoCo Java agent on Tomcat

I want to measure the code coverage of integration tests using the JaCoCo and Sonar tools. For that, I start my Tomcat 5.5 configured with the JaCoCo agent in order to get the dump file from JaCoCo. ...
0
votes
1answer
107 views

Sonar throws error when encounter unicode in java

i am trying to run sonar on our java code using a minimum maven pom. I can run 3 project When i encounter a project having unicode UTF-8 the sonar:sonar command fails! INFO] Sensor ...
0
votes
1answer
324 views

Sonar Configure

I installed Sonar Plugin on my eclipse, (i ran the server .../StartSonar.bat) and when I do test connection on LocalHost:9000 its okay (Connection Sucessfull). Now What should I do to associate my ...
0
votes
3answers
761 views

Sonar plugin Eclipse

Can I use Sonar plugin without others instalations of Sonar ? I'm trying to use following the steps of http://docs.codehaus.org/display/SONAR/Sonar+Eclipse but it dont work. When I try to associate my ...
0
votes
1answer
513 views

Integration Sonar plugin with eclipse

I'm trying to use Sonar plugin with eclipse projects, but when I go to my project and try to "Associate with Sonar" it doesnt work. It says that GroupID is empty. I've searched everywhere and didnt ...
0
votes
1answer
205 views

Afferent coupling in SONAR

I want to find in a given java project, the classes with the highest afferent coupling. I know that the metric is available in SONAR when you drill down to a class from the dashboard when you also ...
0
votes
1answer
169 views

Do a dependency analysis of tests using Sonar (or other)

I have a multi module maven project. I set up Sonar. The most interesting part for me right now is the dependency analysis on package level including the (JUnit) tests. Unfortunatly Sonar seems to ...
0
votes
1answer
599 views

Sonar and Eclipse IAM Plugin

When I am using the newest IAM Eclipse Plugin for Maven with the current Sonar version on a JDK 6 and I get an error while executing the sonar:sonar goal in clean install sonar:sonar The error in ...
-1
votes
2answers
54 views

Malicious code vulnerability - May expose internal representation by returning reference to mutable object

Hi I'm getting the violation as Below Malicious code vulnerability - May expose internal representation by returning reference to mutable object in my code i wrote like this public String[] ...