You are viewing a plain text version of this content. The canonical link for it is here.
Posted to oak-commits@jackrabbit.apache.org by ch...@apache.org on 2013/03/20 06:50:03 UTC

svn commit: r1458645 - /jackrabbit/oak/trunk/oak-core/pom.xml

Author: chetanm
Date: Wed Mar 20 05:50:03 2013
New Revision: 1458645

URL: http://svn.apache.org/r1458645
Log:
OAK-696 : Support usage of JAAS based authentication with Repository in OSGi

Moving the org.apache.felix.jaas.boot package to DynamicImport as its only required when Felix JAAS Support Bundle is present

Modified:
    jackrabbit/oak/trunk/oak-core/pom.xml

Modified: jackrabbit/oak/trunk/oak-core/pom.xml
URL: http://svn.apache.org/viewvc/jackrabbit/oak/trunk/oak-core/pom.xml?rev=1458645&r1=1458644&r2=1458645&view=diff
==============================================================================
--- jackrabbit/oak/trunk/oak-core/pom.xml (original)
+++ jackrabbit/oak/trunk/oak-core/pom.xml Wed Mar 20 05:50:03 2013
@@ -41,7 +41,6 @@
         <configuration>
           <instructions>
             <Import-Package>
-           		org.apache.felix.jaas.boot,
             		*
             </Import-Package>
             <Export-Package>
@@ -91,6 +90,9 @@
             <Bundle-Activator>
               org.apache.jackrabbit.oak.osgi.Activator
             </Bundle-Activator>
+            <DynamicImport-Package>
+              org.apache.felix.jaas.boot
+            </DynamicImport-Package>
           </instructions>
         </configuration>
       </plugin>