I am trying to run my first springboot application but facing some issues.
In my application file, this is my code
package com.clog.ServiceMgmt;
import
I had this error happen in a Spring Boot project where I added a custom dependency that made use of Spring (not Spring Boot). The issue in my custom dependency was that it had the following plugin configuration:
org.apache.maven.plugins
maven-shade-plugin
2.4.3
package
shade
com.example.Main
${project.name}
${project.version}
Vendor Name, ${timestamp}
false
Once I removed the shade plugin from my custom dependency, the error disappeared.