* OSGiyfied artifact names * polished poms a little * edited Eclipse project names to align artifact id git-svn-id: svn+ssh://svn.synyx.de/var/svn/synyx/opensource/hera/trunk@6618 5a64d73e-33d6-4ccc-9058-23f8668ecac9
25 lines
932 B
XML
25 lines
932 B
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<beans xmlns="http://www.springframework.org/schema/beans"
|
|
xmlns:plugin="http://schemas.synyx.org/hera"
|
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd
|
|
http://schemas.synyx.org/hera http://schemas.synyx.org/hera/hera.xsd">
|
|
|
|
<plugin:list id="foo" class="org.synyx.hera.core.SamplePlugin" />
|
|
|
|
<plugin:registry id="bar" class="org.synyx.hera.core.SamplePlugin" />
|
|
|
|
<bean class="org.synyx.hera.core.SamplePluginImplementation" />
|
|
|
|
<bean id="host" class="org.synyx.hera.core.SamplePluginHost">
|
|
<property name="registry" ref="bar" />
|
|
</bean>
|
|
|
|
<bean id="otherHost" class="org.synyx.hera.core.SamplePluginHost">
|
|
<property name="registry">
|
|
<plugin:registry id="tadaa" class="org.synyx.hera.core.SamplePlugin" />
|
|
</property>
|
|
</bean>
|
|
|
|
</beans>
|