Hi, I'm facing issues to generate a bundle (= merge of ElasticSearch + Lucene artifacts). Why : They both share same files under this directory META-INF/services :
org.apache.lucene.codecs.Codec org.apache.lucene.codecs.DocValuesFormat org.apache.lucene.codecs.PostingsFormat and org.apache.lucene.codecs.PostingsFormat file content diverges Lucene org.apache.lucene.codecs.lucene40.Lucene40PostingsFormat org.apache.lucene.codecs.lucene41.Lucene41PostingsFormat ElasticSearch org.elasticsearch.index.codec.postingsformat.BloomFilterPostingsFormat org.elasticsearch.index.codec.postingsformat.ElasticSearch090PostingsFormat org.elasticsearch.search.suggest.completion.Completion090PostingsFormat I'm using split-package / maven-shade but the result generated (merge-first, merge-last, first or last) does not allow to merge both files. Is there a trick/solution ? The pom file that I use to generate the elasticsearch bundle is available here : https://gist.github.com/8097375 Regards, -- Charles Moulliard Apache Committer / Architect @RedHat Twitter : @cmoulliard | Blog : http://cmoulliard.github.io

