Hi,
Im currently struggling with a jar-with-dependencies generation.
The problem as the title says, my spring.handlers and spring.schemas are not complete which causes that some frameworks, especially spring-batch cannot find its handler...
If my analyzis was right, when i run the maven package the building process takes the first spring.handlers and spring.schemas it meets (in my case they're those of spring-beans)
After this and while navigating through dependencies, it skips the handlers and schemas of other dependencies... (spring-batch, spring-aop etc...) which is printed in the output while building :
[INFO] META-INF/spring.handlers already added, skipping
is this a normal behavior? in the end i find myself with a spring.handlers file containing only the content of that of spring-beans? shouldn't it append the content of the next spring.handlers files?
Thanks in advance


Reply With Quote