You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@directory.apache.org by ak...@apache.org on 2011/01/21 11:54:10 UTC

svn commit: r1061730 - in /directory/shared/trunk: asn1-api/pom.xml asn1-ber/pom.xml dsml-engine/pom.xml dsml-parser/pom.xml i18n/pom.xml ldap-client-api/pom.xml ldap-schema/pom.xml ldap/pom.xml util/pom.xml

Author: akarasulu
Date: Fri Jan 21 10:54:10 2011
New Revision: 1061730

URL: http://svn.apache.org/viewvc?rev=1061730&view=rev
Log:
reverted back using explicit pkg exports and imports in shared bundles: still taking defaults for other parameters

Modified:
    directory/shared/trunk/asn1-api/pom.xml
    directory/shared/trunk/asn1-ber/pom.xml
    directory/shared/trunk/dsml-engine/pom.xml
    directory/shared/trunk/dsml-parser/pom.xml
    directory/shared/trunk/i18n/pom.xml
    directory/shared/trunk/ldap-client-api/pom.xml
    directory/shared/trunk/ldap-schema/pom.xml
    directory/shared/trunk/ldap/pom.xml
    directory/shared/trunk/util/pom.xml

Modified: directory/shared/trunk/asn1-api/pom.xml
URL: http://svn.apache.org/viewvc/directory/shared/trunk/asn1-api/pom.xml?rev=1061730&r1=1061729&r2=1061730&view=diff
==============================================================================
--- directory/shared/trunk/asn1-api/pom.xml (original)
+++ directory/shared/trunk/asn1-api/pom.xml Fri Jan 21 10:54:10 2011
@@ -55,6 +55,14 @@
           <manifestLocation>META-INF</manifestLocation>
           <instructions>
             <Bundle-SymbolicName>${project.groupId}.asn1.api</Bundle-SymbolicName>
+            <Import-Package>
+              org.apache.directory.shared.i18n,
+              org.apache.directory.shared.util
+            </Import-Package>
+            <Export-Package>
+              org.apache.directory.shared.asn1,
+              org.apache.directory.shared.asn1.util
+            </Export-Package>
           </instructions>
         </configuration>
       </plugin>

Modified: directory/shared/trunk/asn1-ber/pom.xml
URL: http://svn.apache.org/viewvc/directory/shared/trunk/asn1-ber/pom.xml?rev=1061730&r1=1061729&r2=1061730&view=diff
==============================================================================
--- directory/shared/trunk/asn1-ber/pom.xml (original)
+++ directory/shared/trunk/asn1-ber/pom.xml Fri Jan 21 10:54:10 2011
@@ -64,7 +64,19 @@
         <configuration>
           <manifestLocation>META-INF</manifestLocation>
           <instructions>
-            <Bundle-SymbolicName>${project.groupId}.asn1.ber</Bundle-SymbolicName>
+            <Bundle-SymbolicName>
+              ${project.groupId}.asn1.ber
+            </Bundle-SymbolicName>
+            <Import-Package>
+              org.slf4j.*,
+              org.apache.directory.shared.util,
+              org.apache.directory.shared.i18n,
+              org.apache.directory.shared.asn1,
+              org.apache.directory.shared.asn1.util
+            </Import-Package>
+            <Export-Package>
+              org.apache.directory.shared.asn1.ber.*
+            </Export-Package>
           </instructions>
         </configuration>
       </plugin>

Modified: directory/shared/trunk/dsml-engine/pom.xml
URL: http://svn.apache.org/viewvc/directory/shared/trunk/dsml-engine/pom.xml?rev=1061730&r1=1061729&r2=1061730&view=diff
==============================================================================
--- directory/shared/trunk/dsml-engine/pom.xml (original)
+++ directory/shared/trunk/dsml-engine/pom.xml Fri Jan 21 10:54:10 2011
@@ -78,6 +78,7 @@
           <manifestLocation>META-INF</manifestLocation>
           <instructions>
             <Bundle-SymbolicName>${project.groupId}.dsmlv2.engine</Bundle-SymbolicName>
+            <Export-Package>org.apache.directory.shared.dsmlv2.engine</Export-Package>
           </instructions>
         </configuration>
       </plugin>

Modified: directory/shared/trunk/dsml-parser/pom.xml
URL: http://svn.apache.org/viewvc/directory/shared/trunk/dsml-parser/pom.xml?rev=1061730&r1=1061729&r2=1061730&view=diff
==============================================================================
--- directory/shared/trunk/dsml-parser/pom.xml (original)
+++ directory/shared/trunk/dsml-parser/pom.xml Fri Jan 21 10:54:10 2011
@@ -84,6 +84,7 @@
           <manifestLocation>META-INF</manifestLocation>
           <instructions>
             <Bundle-SymbolicName>${project.groupId}.dsmlv2.parser</Bundle-SymbolicName>
+            <Export-Package>org.apache.directory.shared.dsmlv2.*</Export-Package>
           </instructions>
         </configuration>
       </plugin>

Modified: directory/shared/trunk/i18n/pom.xml
URL: http://svn.apache.org/viewvc/directory/shared/trunk/i18n/pom.xml?rev=1061730&r1=1061729&r2=1061730&view=diff
==============================================================================
--- directory/shared/trunk/i18n/pom.xml (original)
+++ directory/shared/trunk/i18n/pom.xml Fri Jan 21 10:54:10 2011
@@ -58,6 +58,10 @@
         <extensions>true</extensions>
         <configuration>
           <manifestLocation>META-INF</manifestLocation>
+          <instructions>
+            <Bundle-SymbolicName>${project.groupId}.i18n</Bundle-SymbolicName>
+            <Export-Package>org.apache.directory.shared.i18n</Export-Package>
+          </instructions>
         </configuration>
       </plugin>
     </plugins>

Modified: directory/shared/trunk/ldap-client-api/pom.xml
URL: http://svn.apache.org/viewvc/directory/shared/trunk/ldap-client-api/pom.xml?rev=1061730&r1=1061729&r2=1061730&view=diff
==============================================================================
--- directory/shared/trunk/ldap-client-api/pom.xml (original)
+++ directory/shared/trunk/ldap-client-api/pom.xml Fri Jan 21 10:54:10 2011
@@ -110,6 +110,7 @@
           <manifestLocation>META-INF</manifestLocation>
           <instructions>
             <Bundle-SymbolicName>${project.groupId}.ldap.client.api</Bundle-SymbolicName>
+            <Export-Package>org.apache.directory.ldap.client.api.*</Export-Package>
           </instructions>
         </configuration>
       </plugin>

Modified: directory/shared/trunk/ldap-schema/pom.xml
URL: http://svn.apache.org/viewvc/directory/shared/trunk/ldap-schema/pom.xml?rev=1061730&r1=1061729&r2=1061730&view=diff
==============================================================================
--- directory/shared/trunk/ldap-schema/pom.xml (original)
+++ directory/shared/trunk/ldap-schema/pom.xml Fri Jan 21 10:54:10 2011
@@ -139,6 +139,7 @@
           <manifestLocation>META-INF</manifestLocation>
           <instructions>
             <Bundle-SymbolicName>${project.groupId}.ldap.schema</Bundle-SymbolicName>
+            <Export-Package>org.apache.directory.shared.ldap.schema*</Export-Package>
             <Import-Package>
               *,
               org.apache.directory.shared.ldap.schema.comparators,

Modified: directory/shared/trunk/ldap/pom.xml
URL: http://svn.apache.org/viewvc/directory/shared/trunk/ldap/pom.xml?rev=1061730&r1=1061729&r2=1061730&view=diff
==============================================================================
--- directory/shared/trunk/ldap/pom.xml (original)
+++ directory/shared/trunk/ldap/pom.xml Fri Jan 21 10:54:10 2011
@@ -137,6 +137,11 @@
         <extensions>true</extensions>
         <configuration>
           <manifestLocation>META-INF</manifestLocation>
+          <instructions>
+            <Bundle-SymbolicName>${project.groupId}.ldap</Bundle-SymbolicName>
+            <Bundle-Name>${project.name}</Bundle-Name>
+            <Export-Package>org.apache.directory.shared.*</Export-Package>
+          </instructions>
         </configuration>
       </plugin>
     </plugins>

Modified: directory/shared/trunk/util/pom.xml
URL: http://svn.apache.org/viewvc/directory/shared/trunk/util/pom.xml?rev=1061730&r1=1061729&r2=1061730&view=diff
==============================================================================
--- directory/shared/trunk/util/pom.xml (original)
+++ directory/shared/trunk/util/pom.xml Fri Jan 21 10:54:10 2011
@@ -53,6 +53,16 @@
         <extensions>true</extensions>
         <configuration>
           <manifestLocation>META-INF</manifestLocation>
+          <instructions>
+            <Bundle-SymbolicName>${project.groupId}.util</Bundle-SymbolicName>
+            <Import-Package>
+              org.apache.directory.shared.i18n
+            </Import-Package>
+            <Export-Package>
+              org.apache.directory.shared.util,
+              org.apache.directory.shared.util.exception
+            </Export-Package>
+          </instructions>
         </configuration>
       </plugin>
     </plugins>