Hi guys,
following the details of my issue:
- Sonarqube server version: 8.9 LTS
- SonarScanner: Gradle plugin 3.2.0
- Java version: zulu8.48.0.53-ca-fx-jdk8.0.265-linux_x64
ERROR observed:
09:51:01.924 [WARN] [org.sonarqube.gradle.SonarQubeTask] Unresolved imports/types have been
detected during analysis. Enable DEBUG mode to see them.
09:51:01.925 [DEBUG] [org.sonarqube.gradle.SonarQubeTask] Unresolved imports/types:
- __ cannot be resolved to a type
- log cannot be resolved
PIECE OF CODE affected:
@Slf4j
@RequiredArgsConstructor(onConstructor = @__(@Autowired))
public class XXXX {
public void blaBla() {
doSomethingh();
log.debug("here I log something");
}
}
Seems that because of the 2 lombok annotations the gradleScanner got some strange WARN…
There’s already a solution for this? If not can be addressed?
Thanks
