So, I am trying to add a spring boot jar file as a dependency in another project (testing environment).
However, after it is added to pom and imported. Java import is not working properly. If I looked inside the jar, all packages are added:
BOOT-INF / classes.some.package.classname.class
There are also several spring packages for download, MANIFEST, etc. etc.
No, if I switch spring boot app build to just install and deploy a regular jar using spring-boot-maven-plugin
This is changing and everything is working fine. Unfortunately, this is not a solution for us, as we rely on an executable jar as part of our release process.
Can I build a deployment of both versions of the flag and use a classifier to define each?
thanks
source share