* excluded OSGI related artifacts from shaded project jars.(shared-all,sahred-client-all,apacheds-service) excluded artifacts were also shaded jars, thus causing multiple imports.(Harmless but producing lots of outputs on those 3 projects)

git-svn-id: https://svn.apache.org/repos/asf/directory/shared/branches/shared-txns@1378550 13f79535-47bb-0310-9956-ffa450edef68
diff --git a/all/pom.xml b/all/pom.xml
index e630d48..bd6ebca 100644
--- a/all/pom.xml
+++ b/all/pom.xml
@@ -123,6 +123,11 @@
                 <includes>
                   <include>${project.groupId}</include>
                 </includes>
+                <excludes>
+                  <exclude>org.osgi:*</exclude>
+                  <exclude>org.apache.felix:org.apache.felix.ipojo</exclude>
+                  <exclude>asm:asm-all</exclude>
+                </excludes>
               </artifactSet>
               <promoteTransitiveDependencies>true</promoteTransitiveDependencies>
               <createSourcesJar>true</createSourcesJar>
diff --git a/ldap/client/all/pom.xml b/ldap/client/all/pom.xml
index 1757b64..09b600e 100644
--- a/ldap/client/all/pom.xml
+++ b/ldap/client/all/pom.xml
@@ -89,6 +89,13 @@
             <configuration>
               <createDependencyReducedPom>true</createDependencyReducedPom>
               <createSourcesJar>true</createSourcesJar>
+              <artifactSet>
+                <excludes>
+                  <exclude>org.osgi:*</exclude>
+                  <exclude>org.apache.felix:org.apache.felix.ipojo</exclude>
+                  <exclude>asm:asm-all</exclude>
+                </excludes>
+              </artifactSet>
             </configuration>
           </execution>
         </executions>