Update to current versions
diff --git a/rcomp-app/pom.xml b/rcomp-app/pom.xml
index 011e0f3..0dfc568 100644
--- a/rcomp-app/pom.xml
+++ b/rcomp-app/pom.xml
@@ -49,7 +49,7 @@
         <dependency>
             <groupId>org.apache.felix</groupId>
             <artifactId>org.apache.felix.framework</artifactId>
-            <version>5.6.4</version>
+            <version>5.6.8</version>
         </dependency>
         <dependency>
             <groupId>org.apache.felix</groupId>
diff --git a/rcomp-app/rcomp-example.bndrun b/rcomp-app/rcomp-example.bndrun
index d0a1951..6f0f767 100644
--- a/rcomp-app/rcomp-example.bndrun
+++ b/rcomp-app/rcomp-example.bndrun
@@ -15,7 +15,7 @@
 	osgi.identity;filter:='(osgi.identity=slf4j.api)',\
 	osgi.identity;filter:='(osgi.identity=osgi.cmpn)'
 
--runfw: org.apache.felix.framework;version='[5.6.4,5.6.4]'
+-runfw: org.apache.felix.framework;version='[5.6.8,5.6.8]'
 -runee: JavaSE-1.8
 
 -runsystempackages: sun.misc,javax.annotation.meta
@@ -33,21 +33,3 @@
 -runrequires: \
 	osgi.identity;filter:='(osgi.identity=rcomp-examples)',\
 	osgi.identity;filter:='(osgi.identity=rcomp-feature-shell)'
--runbundles: \
-	io.projectreactor.reactor-core;version='[3.0.7,3.0.8)',\
-	org.apache.felix.eventadmin;version='[1.4.6,1.4.7)',\
-	org.apache.felix.scr;version='[2.0.12,2.0.13)',\
-	org.eclipse.paho.client.mqttv3;version='[1.1.1,1.1.2)',\
-	org.ops4j.pax.logging.pax-logging-api;version='[1.8.5,1.8.6)',\
-	org.reactivestreams.reactive-streams;version='[1.0.0,1.0.1)',\
-	rcomp-api;version='[1.0.0,1.0.1)',\
-	rcomp-eventadmin;version='[1.0.0,1.0.1)',\
-	rcomp-examples;version='[1.0.0,1.0.1)',\
-	rcomp-mqtt;version='[1.0.0,1.0.1)',\
-	org.apache.felix.bundlerepository;version='[2.0.10,2.0.11)',\
-	org.apache.felix.configadmin;version='[1.8.8,1.8.9)',\
-	org.apache.felix.gogo.command;version='[1.0.0,1.0.1)',\
-	org.apache.felix.gogo.jline;version='[1.0.6,1.0.7)',\
-	org.apache.felix.gogo.runtime;version='[1.0.0,1.0.1)',\
-	org.jline;version='[3.3.1,3.3.2)',\
-	rcomp-feature-shell;version='[1.0.0,1.0.1)'
\ No newline at end of file
diff --git a/rcomp-eventadmin/src/main/java/org/apache/karaf/rcomp/eventadmin/EventAdminDestination.java b/rcomp-eventadmin/src/main/java/org/apache/karaf/rcomp/eventadmin/EventAdminDestination.java
index 4379753..61d3b5c 100644
--- a/rcomp-eventadmin/src/main/java/org/apache/karaf/rcomp/eventadmin/EventAdminDestination.java
+++ b/rcomp-eventadmin/src/main/java/org/apache/karaf/rcomp/eventadmin/EventAdminDestination.java
@@ -22,8 +22,10 @@
 import org.osgi.service.event.EventAdmin;
 import org.reactivestreams.Subscriber;
 import org.reactivestreams.Subscription;
+import org.slf4j.LoggerFactory;
 
 public class EventAdminDestination<T> implements Subscriber<T> {
+    private static org.slf4j.Logger LOGGER = LoggerFactory.getLogger(EventAdminDestination.class);
     
     private EventAdmin client;
     private String topic;
diff --git a/rcomp-features/src/main/resources/feature.xml b/rcomp-features/src/main/resources/feature.xml
index 52e6781..b82b5d0 100644
--- a/rcomp-features/src/main/resources/feature.xml
+++ b/rcomp-features/src/main/resources/feature.xml
@@ -21,7 +21,7 @@
 
     <feature name="reactor" version="3.0.7">
         <bundle dependency="true">mvn:org.reactivestreams/reactive-streams/1.0.0</bundle>
-        <bundle>mvn:io.projectreactor/reactor-core/3.0.7.RELEASE</bundle>
+        <bundle>mvn:io.projectreactor/reactor-core/${reactor.version}</bundle>
     </feature>
 
     <feature name="rcomp-api" version="${project.version}">