-1

I am using maven assembly plugin to assemble a hadoop package with lots of dependencies jars. And in the dependencies there's lots of META-INFO folder which cause errors when I unpacking it. I want to exclude these META-INFO folder, how can I do this ? Thanks

Jens Björnhager
  • 5,632
  • 3
  • 27
  • 47
zjffdu
  • 25,496
  • 45
  • 109
  • 159

1 Answers1

1

I would suggest to go with maven-shade-plugin which supports filtering etc. instead of the maven-assembly-plugin which is a little bit limited in that area.

khmarbaise
  • 92,914
  • 28
  • 189
  • 235