Most of our applications are still written in Java 8 and we use Gradle for compilation, analysis, etc.
To be able to do a sonar analysis, gradle must run with Java 11. To do this, we use this plugin Gradle - Plugin: org.sonarqube (version 4.4.1.3373)
It’s working very well except for certain projects which have code not compatible with Java 11. When we execute this command (gradle sonarqube), it first builds the application.
Sorry for dropping this thread. I think I got hung up on some specifics of sonar.gradle.skipCompile and the notification got lost in the meantime
Just an update – with the latest version of the SonarScanner for Gradle (v5), the default behavior is such that running gradle sonar should not trigger a build (no sonar.gradle.skipCompile config to fiddle with), and it expects the build will have already been performed prior.