-1

I am trying to implement sonar scan in my Scala codes which are in data bricks notebook via Azure-Devops pipeline but getting below error can somebody please help me?

enter image description here

enter image description here

enter image description here

enter image description here

venkat
  • 111
  • 1
  • 1
  • 11

1 Answers1

0

The third-party FindBugs plugin is throwing an error with the following message:

One (sub)project contains Java source files that are not compiled.

According to the FindBugs readme, it needs compiled code i.e. you can't just point it at the source code files. Check that you are building the code before analysing it.

duncanp
  • 1,572
  • 1
  • 10
  • 8