sonar doesn't scan *.java file

3.5k Views Asked by At

I have a java web project containing 4 files.

  1. demo.java
  2. web.xml
  3. index.jsp
  4. pom.xml

Execute command

clean verify sonar:sonar

Sonar only checked the web.xml, index.jsp, pom.xml. It did not check demo.java. Sonar version:6.5

enter image description here

2

There are 2 best solutions below

0
On

setting compile Folder,The problem has been settled

0
On

FindBugs static analysis class file not java file.

If you want use findbugs rules you should:

  1. compile java file to class file.
  2. config sonar-project.properties add sonar.java.binaries

    sonar.sources=. sonar.java.binaries=target/classes

BTW. I suggest launch analysis from Maven or Gradle.

Analyzing+Source+Code

OR

You can use default sonarway.


show static analysis tools