FELIX-1913 : All events are processed in a queue

git-svn-id: https://svn.apache.org/repos/asf/felix/trunk@905914 13f79535-47bb-0310-9956-ffa450edef68
diff --git a/eventadmin/impl/pom.xml b/eventadmin/impl/pom.xml
index f45f5ce..b202312 100644
--- a/eventadmin/impl/pom.xml
+++ b/eventadmin/impl/pom.xml
@@ -17,63 +17,71 @@
  under the License.
 -->
 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
-  <parent>
-    <groupId>org.apache.felix</groupId>
-    <artifactId>felix</artifactId>
-    <version>1.0.4</version>
-    <relativePath>../../pom/pom.xml</relativePath>
-  </parent>
-  <modelVersion>4.0.0</modelVersion>
-  <packaging>bundle</packaging>
-  <name>Apache Felix EventAdmin</name>
-  <description>
-	This bundle provides an implementation of the OSGi R4 EventAdmin service.
-  </description>
-  <version>1.0.1-SNAPSHOT</version>
-  <artifactId>org.apache.felix.eventadmin</artifactId>
-  <dependencies>
-    <dependency>
-      <groupId>org.osgi</groupId>
-      <artifactId>org.osgi.core</artifactId>
-      <version>4.0.0</version>
-    </dependency>
-    <dependency>
-      <groupId>org.osgi</groupId>
-      <artifactId>org.osgi.compendium</artifactId>
-      <version>4.2.0</version>
-    </dependency>
-  </dependencies>
-  <build>
-    <plugins>
-      <plugin>
+    <parent>
         <groupId>org.apache.felix</groupId>
-        <artifactId>maven-bundle-plugin</artifactId>
-        <version>1.4.0</version>
-        <extensions>true</extensions>
-        <configuration>
-          <instructions>
-            <Bundle-SymbolicName>
-              ${pom.artifactId} 
-	        </Bundle-SymbolicName>
-  	        <Bundle-Activator>
-              ${pom.artifactId}.impl.Activator
-            </Bundle-Activator>
-            <Bundle-Vendor>The Apache Software Foundation</Bundle-Vendor>
-            <DynamicImport-Package>
-              org.osgi.service.log
-            </DynamicImport-Package>
-            <Import-Package>!org.osgi.service.log,*</Import-Package>
-            <Export-Package>org.osgi.service.event</Export-Package>
-            <Private-Package>org.apache.felix.eventadmin.impl.*</Private-Package>
-            <Import-Service>
-            	 org.osgi.service.event.EventHandler, org.osgi.service.log.LogService, org.osgi.service.log.LogReaderService
-            </Import-Service>
-            <Export-Service>
-            	 org.osgi.service.event.EventAdmin
-            </Export-Service>
-          </instructions>
-        </configuration>
-      </plugin>
-    </plugins>
-  </build>
+        <artifactId>felix-parent</artifactId>
+        <version>1.2.0</version>
+        <relativePath>../../pom/pom.xml</relativePath>
+    </parent>
+    <modelVersion>4.0.0</modelVersion>
+    <packaging>bundle</packaging>
+    <name>Apache Felix EventAdmin</name>
+    <description>
+	    This bundle provides an implementation of the OSGi R4 EventAdmin service.
+    </description>
+    <version>1.1.0-SNAPSHOT</version>
+    <artifactId>org.apache.felix.eventadmin</artifactId>
+    <dependencies>
+        <dependency>
+            <groupId>org.osgi</groupId>
+            <artifactId>org.osgi.core</artifactId>
+            <version>4.0.0</version>
+        </dependency>
+        <dependency>
+            <groupId>org.osgi</groupId>
+            <artifactId>org.osgi.compendium</artifactId>
+            <version>4.2.0</version>
+        </dependency>
+        <dependency>
+            <groupId>concurrent</groupId>
+            <artifactId>concurrent</artifactId>
+            <version>1.3.4</version>
+        </dependency>
+    </dependencies>
+    <build>
+        <plugins>
+            <plugin>
+                <groupId>org.apache.felix</groupId>
+                <artifactId>maven-bundle-plugin</artifactId>
+                <version>1.4.3</version>
+                <extensions>true</extensions>
+                <configuration>
+                    <instructions>
+                        <Bundle-SymbolicName>
+                            ${pom.artifactId} 
+	                    </Bundle-SymbolicName>
+  	                    <Bundle-Activator>
+                            ${pom.artifactId}.impl.Activator
+                        </Bundle-Activator>
+                        <Bundle-Vendor>The Apache Software Foundation</Bundle-Vendor>
+                        <DynamicImport-Package>
+                            org.osgi.service.log
+                        </DynamicImport-Package>
+                        <Import-Package>!org.osgi.service.log,*</Import-Package>
+                        <Export-Package>org.osgi.service.event</Export-Package>
+                        <Private-Package>org.apache.felix.eventadmin.impl.*</Private-Package>
+                        <Import-Service>
+            	            org.osgi.service.event.EventHandler, org.osgi.service.log.LogService, org.osgi.service.log.LogReaderService
+                        </Import-Service>
+                        <Export-Service>
+            	            org.osgi.service.event.EventAdmin
+                        </Export-Service>
+                        <Embed-Dependency>
+                            concurrent
+                        </Embed-Dependency>
+                    </instructions>
+                </configuration>
+            </plugin>
+        </plugins>
+    </build>
 </project>