I've never built an executable .jar before, and I'm trying to do so with a Maven project with IntelliJ, and I can't seem to run the program. I've done it through the Project Structure -> artifacts route, and I've set the main class and locations properly or so I thought, in the configuration:
in my pom.xml
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
<executions>
<execution>
<goals>
<goal>repackage</goal>
</goals>
<configuration>
<classifier>spring-boot</classifier>
<mainClass>
app.ContactRunner
</mainClass>
</configuration>
</execution>
</executions>
</plugin>
And here's a screenshot of the project structure along with the MANIFEST.MF
What's missing that I need to add in order to execute this jar? Thanks for the help!
EDIT-=-=-=
I have removed the packaging structure, and it is now just app.ContactRunner
with nothing extra in the MANIFEST file.