Today We are Going To Solve Plugin ‘org.springframework.boot:spring-boot-maven-plugin:’ not found in Java. Here we will Discuss All Possible Solutions and How this error Occurs So let’s get started with this Article.
Contents
How to Fix Plugin ‘org.springframework.boot:spring-boot-maven-plugin:’ not found Error?
- How to Fix Plugin ‘org.springframework.boot:spring-boot-maven-plugin:’ not found Error?
To Fix Plugin ‘org.springframework.boot:spring-boot-maven-plugin:’ not found Error just Configure your pom. Here you have to do is just configure your pom like in the given below code. By doing this you can solve your error.
<groupId>org.springframework.boot</groupId> <artifactId>spring-boot-maven-plugin</artifactId> <version>${project.parent.version}</version>
- Plugin ‘org.springframework.boot:spring-boot-maven-plugin:’ not found
To Fix Plugin ‘org.springframework.boot:spring-boot-maven-plugin:’ not found Error just Add version of the spring-boot-starter-parent. You have to just add version of the spring-boot-starter-parent in the plugin section just like below and you can solve your issue.
<plugin> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-maven-plugin</artifactId> <version>2.3.5.RELEASE</version> </plugin>
Solution 1 : Configure your pom
Here you have to do is just configure your pom like in the given below code. By doing this you can solve your error.
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
<version>${project.parent.version}</version>
Solution 2 : Add version of the spring-boot-starter-parent
You have to just add version of the spring-boot-starter-parent in the plugin section just like below and you can solve your issue.
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
<version>2.3.5.RELEASE</version>
</plugin>
Solution 3 : Add the version of the plugin in the pom.xml
Just add the version of the plugin in the pom.xml It will help you.
<version>2.4.3</version>
Conclusion
So these were all possible solutions to this error. I hope your error has been solved by this article. In the comments, tell us which solution worked? If you liked our article, please share it on your social media and comment on your suggestions. Thank you.
Also Read These Solutions
- ImportError: cannot import name ‘force_text’ from ‘django.utils.encoding’
- java.lang.IllegalArgumentException: Could not resolve placeholder
- Excel file format cannot be determined, you must specify an engine manually
- General error during semantic analysis: Unsupported class file major version 60
- Command CompileSwiftSources failed with a nonzero exit code xcode 13