FELIX-2027: Custom deployers leveraging url handlers must not be registered before the url handler is actually registered in the osgi framework

git-svn-id: https://svn.apache.org/repos/asf/felix/trunk@905551 13f79535-47bb-0310-9956-ffa450edef68
diff --git a/karaf/deployer/features/pom.xml b/karaf/deployer/features/pom.xml
index 575749f..86abcfb 100644
--- a/karaf/deployer/features/pom.xml
+++ b/karaf/deployer/features/pom.xml
@@ -73,7 +73,9 @@
                 <artifactId>maven-bundle-plugin</artifactId>
                 <configuration>
                     <instructions>
-                        <Bundle-SymbolicName>${pom.artifactId}</Bundle-SymbolicName>
+                        <!-- Set the blueprint.graceperiod flag to false to allow the bundle to start
+                             See the blueprint config file -->
+                        <Bundle-SymbolicName>${pom.artifactId};blueprint.graceperiod:=false</Bundle-SymbolicName>
                         <Export-Package>${pom.artifactId}*;version=${project.version}</Export-Package>
                         <Import-Package>!${pom.artifactId}*,*</Import-Package>
                         <Private-Package>org.apache.felix.karaf.deployer.features</Private-Package>