I have a multi-module maven project:
<modules>
<module>app-main</module>
<module>app-shared</module>
</modules>
“app-shared” module has the following service:
package com.bdshadow.app.service;
@Service
@AllArgsConstructor
public class MyService {}
“app-main” module has the following main class:
package com.bdshadow.app;
@SpringBootApplication
public class MyMain {
public static void main(String[] args) {
SpringApplication.run(MyMain.class, args);
}
}
SonarQube doesn’t like MyService
and says that
SonarLint: ‘MyService’ is not reachable by @ComponentsScan or @SpringBootApplication. Either move it to a package configured in @ComponentsScan or update your @ComponentsScan configuration.
But it’s not correct. Moreover, the application runs fine