Fork me on GitHub
#depstar2020-09-07
>
Dimitar Uzunov13:09:37

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

seancorfield16:09:56

@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.

seancorfield16:09:36

Cheshire relies on Jackson. Several Jackson libraries contain a JsonFactory file.

seancorfield16:09:20

Per the docs, you can use -S or --suppress-clash to hide those warnings.

👍 3