getting below error in eclipse while importing maven project and trying to update it... Error resolving version for plugin 'org.springframework.boot:spring-boot-maven-plugin' from the repositories [local (C:\tBuild\repo), central (https://repo.maven.apache.org/maven2)]: Plugin not found in any plugin repository -> [Help 1]
enter image description here
In general you should share your pom.xml
to get the the correct answer otherwise we can only speculate.
Here are some of the possible reasons:
You haven't specified the spring boot maven plugin version, at least raises a warning about it.
This can be resolved automatically if you inherit from spring boot parent or use bill of materials. These require additional declarations in your pom. For parent (usual approach) it should be something like:
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>2.2.2.RELEASE</version>
</parent>
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With