Skip to content
Advertisement

SpringBoot no main manifest attribute (maven)

When running my jar file: java -jar target/places-1.0-SNAPSHOT.jar

I’m getting the next error :

no main manifest attribute, in target/places-1.0-SNAPSHOT.jar

The pom.xml contains the spring-boot-maven-plugin:

JavaScript

I also tried to create a MANIFEST.MF file and specifying the class, but it didnt help.

In addition, I also tried:

JavaScript

Main class:

JavaScript

Any idea what else can I try?

Advertisement

Answer

Try adding repackage goal to execution goals.

Otherwise you would need to call the plugin explicitly as mvn package spring-boot:repackage.

With the goal added, you have to call only mvn package.

JavaScript
Advertisement