FELIX-4567: Fixed maven-shade-plugin in order to exclude bndlib artifact.
git-svn-id: https://svn.apache.org/repos/asf/felix/trunk@1611964 13f79535-47bb-0310-9956-ffa450edef68
diff --git a/scrplugin/bnd-scr-plugin/pom.xml b/scrplugin/bnd-scr-plugin/pom.xml
index 2f39aac..eb0129c 100644
--- a/scrplugin/bnd-scr-plugin/pom.xml
+++ b/scrplugin/bnd-scr-plugin/pom.xml
@@ -101,6 +101,12 @@
<transformers>
<transformer implementation="org.apache.maven.plugins.shade.resource.ServicesResourceTransformer" />
</transformers>
+ <!-- Don't include anything from bndlib -->
+ <artifactSet>
+ <excludes>
+ <exclude>biz.aQute.bnd:bndlib</exclude>
+ </excludes>
+ </artifactSet>
</configuration>
</execution>
</executions>