In IntelliJ, I'm getting the error
Plugin 'org.springframework.boot:spring-boot-maven-plugin:' not found
for the below code
<build>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
</plugin>
</plugins>
</build>
I can not change the code, and it is working for my colleagues
I have tried:
From the Preferences in Intelli J, navigate to "Build, Execution, Deployment > Build Tools > Maven", check the "Use plugin registry", and click "OK". Then "File > Invalidate Caches / Restart" to reload IntelliJ. The error will go away automatically.
But it did not work, any ideas?