Repository: karaf-cellar Updated Branches: refs/heads/master a8eb9e6f9 -> 8b1f34099
[KARAF-3047] Inject the groupManager service in the feature/feature repository event handler Project: http://git-wip-us.apache.org/repos/asf/karaf-cellar/repo Commit: http://git-wip-us.apache.org/repos/asf/karaf-cellar/commit/8b1f3409 Tree: http://git-wip-us.apache.org/repos/asf/karaf-cellar/tree/8b1f3409 Diff: http://git-wip-us.apache.org/repos/asf/karaf-cellar/diff/8b1f3409 Branch: refs/heads/master Commit: 8b1f34099728ea2c88b45d420108d0d80c6a56e3 Parents: a8eb9e6 Author: Jean-Baptiste Onofré <[email protected]> Authored: Mon Jun 16 08:08:55 2014 +0200 Committer: Jean-Baptiste Onofré <[email protected]> Committed: Mon Jun 16 08:08:55 2014 +0200 ---------------------------------------------------------------------- features/src/main/resources/OSGI-INF/blueprint/blueprint.xml | 2 ++ 1 file changed, 2 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/karaf-cellar/blob/8b1f3409/features/src/main/resources/OSGI-INF/blueprint/blueprint.xml ---------------------------------------------------------------------- diff --git a/features/src/main/resources/OSGI-INF/blueprint/blueprint.xml b/features/src/main/resources/OSGI-INF/blueprint/blueprint.xml index 902e2e3..3556bcd 100644 --- a/features/src/main/resources/OSGI-INF/blueprint/blueprint.xml +++ b/features/src/main/resources/OSGI-INF/blueprint/blueprint.xml @@ -43,6 +43,7 @@ init-method="init" destroy-method="destroy"> <property name="featuresService" ref="featuresService"/> <property name="clusterManager" ref="clusterManager"/> + <property name="groupManager" ref="groupManager"/> <property name="configurationAdmin" ref="configurationAdmin"/> </bean> <service ref="featuresEventHandler" interface="org.apache.karaf.cellar.core.event.EventHandler"> @@ -56,6 +57,7 @@ init-method="init" destroy-method="destroy"> <property name="featuresService" ref="featuresService"/> <property name="clusterManager" ref="clusterManager"/> + <property name="groupManager" ref="groupManager"/> <property name="configurationAdmin" ref="configurationAdmin"/> </bean> <service ref="repositoryEventHandler" interface="org.apache.karaf.cellar.core.event.EventHandler"/>
