Hi, I’m trying to make a uberjar with depstar but I get this warning: {:warning “clashing jar item”, :path “META-INF/services/com.fasterxml.jackson.core.JsonFactory”, :strategy :concat-lines} I don’t get what I’m doing wrong, I’m just using cheshire
@dimitar.ouzounoff That's just a warning and you're doing nothing wrong. It's just letting you know that it found that file in multiple inputs and it concatenated them into the output.
Cheshire relies on Jackson. Several Jackson libraries contain a JsonFactory file.
Per the docs, you can use -S
or --suppress-clash
to hide those warnings.