Tips On Solving The Error “Plugin ‘org.springframework.boot:spring-boot-maven-plugin:’ not found”

The common error that you would most likely encounter when trying to build an application using Spring Boot is the error “Plugin ‘org.springframework.boot:spring-boot-maven-plugin:’ not found”. In this blog will, we will go over which solutions you can use to solve this issue successfully.

Tips On Solving The Error “Plugin ‘org.springframework.boot:spring-boot-maven-plugin:’ not found”

Plugin ‘org.springframework.boot:spring-boot-maven-plugin:’ not found

To fix the problem “Plugin ‘org.springframework.boot:spring-boot-maven-plugin:’ not found”, you should include the plugin’s version in the pom.xml file. Similar to: ${project.parent.version}. Then, your problem will be fixed by including a version of the plugin in the pom.xml file.

Option 1: Simply include the plugin’s version in the pom.xml file.

Here, to fix the problem “Plugin ‘org.springframework.boot:spring-boot-maven-plugin:’ not found”, include the plugin’s version in the pom.xml file. Exactly like this: 

<groupId>org.springframework.boot</groupId> 
<artifactId>spring-boot-maven-plugin</artifactId> 
<version>${project.parent.version}</version> 

Now you have solved your problem.

Option 2: Include this line in your pom.xml file.

Your problem will be fixed by including a plugin version in the pom.xml file.

<version>2.4.3</version>

Conclusion

We hope our blog post on how to solve the “Plugin ‘org.springframework.boot:spring-boot-maven-plugin:’ not found” problem was useful. With this information, you should be able to handle this annoyance, as well as a slew of other concerns when you design your application.

Please leave a comment if you want to learn more about the topic or if you have any questions or ideas to share. Thank you for taking the time to read this!


Related Articles

Scroll to Top