I have a java web project containing 4 files.
- demo.java
- web.xml
- index.jsp
- 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
I have a java web project containing 4 files.
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
FindBugs static analysis class file not java file.
If you want use findbugs rules you should:
config sonar-project.properties add sonar.java.binaries
sonar.sources=.
sonar.java.binaries=target/classes
BTW. I suggest launch analysis from Maven or Gradle.
OR
You can use default sonarway.
setting compile Folder,The problem has been settled