close

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

Hello Guys, How are you all? Hope You all Are Fine. Today I am facing weird error Plugin ‘org.springframework.boot:s in java. So Here I am Explain to you all the possible solutions here.

Without wasting your time, Let’s start This Article to Solve This Error.

How Plugin ‘org.springframework.boot:spring-boot-maven-plugin:’ not found Error Occurs ?

I am facing weird error.

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

How To Solve Plugin ‘org.springframework.boot:spring-boot-maven-plugin:’ not found Error ?

  1. How To Solve Plugin ‘org.springframework.boot:spring-boot-maven-plugin:’ not found Error?

    To Solve Plugin ‘org.springframework.boot:spring-boot-maven-plugin:’ not found Error Here To resolve this error you need to add the version of the plugin in the pom.xml. Just like this: ${project.parent.version} Second solution is By adding a version of the plugin in the pom.xml my issue was resolved.

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

    To Solve Plugin ‘org.springframework.boot:spring-boot-maven-plugin:’ not found Error Here To resolve this error you need to add the version of the plugin in the pom.xml. Just like this: ${project.parent.version} Second solution is By adding a version of the plugin in the pom.xml my issue was resolved.

Solution 1: Just add the version of the plugin in the pom.xml

Here To resolve this error you need to add the version of the plugin in the pom.xml. Just like this.

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

Now your error will be solved.

Solution 2: add this line pom.xml

By adding a version of the plugin in the pom.xml my issue was resolved.

<version>2.4.3</version>

Summary

It’s all About this issue. Hope all solution helped you a lot. Comment below Your thoughts and your queries. Also, Comment below which solution worked for you?

Also, Read

4 thoughts on “[Solved] Plugin ‘org.springframework.boot:spring-boot-maven-plugin:’ not found”

Leave a Comment