depstar

Discussion around https://github.com/seancorfield/depstar
Dimitar Uzunov 2020-09-07T13:34:37.002400Z

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

seancorfield 2020-09-07T16:57:56.004200Z

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

seancorfield 2020-09-07T16:58:36.004900Z

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

seancorfield 2020-09-07T16:59:20.005400Z

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

1👍