In some scenarios, you need to use some elements included in the fat jar, like:
- MANIFEST
- Dependency jars
But using the the command: mvn spring-boot:run
doesn´t run the application using that way and it is only possible to find that elements if you execute:
mvn package
java -jar target/YOUR_APPLICATION_AS_FAT_JAR.jar
Does exist any configuration to use spring-boot:run using as an input the fat jar?
Many thanks in advance