Hi Marcin,
Looks there is some issue with the pom.xml of the servicebased.host
project. It has a dependency entry of Felix Source Try changing
<dependency>
<groupId>org.apache.felix</groupId>
<artifactId>org.apache.felix.main</artifactId>
<version>4.0.2</version>
<type>zip</type>
<classifier>source-release</classifier>
</dependency>
to
<dependency>
<groupId>org.apache.felix</groupId>
<artifactId>org.apache.felix.main</artifactId>
<version>4.0.2</version>
</dependency>
In the <felix root>/examples/servicebased.host/pom.xml and use the
resultant jar in Launch command
Chetan Mehrotra