I create an application that depends on a.jar
, which was generated by the spring-boot-maven-plugin. a.jar
depends itself on another b.jar
, which is located it its lib\
folder. When I start my application, I get the following error:
Exception in thread "main" java.lang.NoClassDefFoundError: some_class_located_in_b.jar
It is possible to add a spring-boot-maven-plugin generated jar to the classpath of a third application? If yes, how?