Hi, my analysis has failed
this is the error that the github console shows:
ERROR: Error during SonarScanner execution
[79]org.sonar.java.AnalysisException: Your project contains .java files, please provide compiled classes with sonar.java.binaries property, or exclude them from the analysis with sonar.exclusions property.
if i exclude .java files, giving .class files, my analysis go well but sonar don’t recognise issues.
if i keep .java files, i see this error and code analysis doesn’t work
Yes, if you provide .java files, you also need to provide .class files. That means you need to compile before you run analysis. Then you’ll have .class files to feed into analysis.
Aaand… I’ve just noticed the autoscan tag on your post. Are you using autoscan?