Reputation: 33
When I tried to create a jar file using maven plugin in eclipse, I got thus error while trying to execute that jar:
Exception in thread "main" java.lang.IllegalStateException: Failed to get nested archive for entry BOOT-INF/lib/spring-boot-starter-actuator-2.0.3.RELEASE.jar
This seems to be a bug in 2017. Is there any solution for this now?
Upvotes: 3
Views: 8920
Reputation: 128
Your executable jar file doesn't contain above jar file.You should build jar with dependencies.
Upvotes: 1