I am trying to add all banks from web-inf / lib to Bundle-ClassPath. I saw several ways to do this, none of them work:
1) add
<Embed-Dependency>*;scope=compile|runtime;inline=true</Embed-Dependency> <Embed-Directory>WEB-INF/lib</Embed-Directory> <Embed-Transitive>true</Embed-Transitive>
2) add
<Bundle-ClassPath>.,{maven-dependencies},WEB-INF/classes</Bundle-ClassPath>
Of course, writing banners one by one in Bundle-ClassPath solves the problem, but that doesn't seem like a reasonable solution.
thanks
source share