blob: b533235723e925af1a14d159e81d59f03ad0c09a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
<?xml version="1.0" encoding="UTF-8"?>
<features name="messagerouter-publisher-${project.version}" xmlns="http://karaf.apache.org/xmlns/features/v1.2.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://karaf.apache.org/xmlns/features/v1.2.0 http://karaf.apache.org/xmlns/features/v1.2.0">
<feature name='messagerouter-publisher' description="exposes message router publisher service" version='${project.version}'>
<bundle>mvn:${project.groupId}/publisher.api/${project.version}</bundle>
<bundle>mvn:${project.groupId}/publisher.provider/${project.version}</bundle>
</feature>
<feature name='sample-client' description="initializes a dummy client" version='${project.version}'>
<bundle>mvn:${project.groupId}/sample.client/${project.version}</bundle>
</feature>
</features>
|