I found what was the issue.
This controller: controllers/xyz/UserController; in the constructor has ~ 10 service classes. I was removing them 1 by 1 and trying to compile. When the problem disappear and I saw normal compilation error, I found that in this 1 service class is missing import from jetbrains lib:
"org.jetbrains" % "annotations" % "23.0.0",
after adding this, problem disappear. Adding comment, maybe someone will have similar problem.