The problem's fixed. The error thrown was due to the fact that the
Component class being referenced in the pom file could not be found.
there'd been a slight change in the package name, and ever since the
DefaultBootstrap was not able to find the Component anymore.
> ERROR - InstallerMBeanImpl
> - Class not found:
> org.apache.servicemix.common.DefaultBootstrap
> java.lang.ClassNotFoundException:
> nl.uds.broker.AKRReader.AKRComponent
> in classloader nl.uds.broker.AKRReader.AKRComponent
The relevant snippet:
<plugin>
<groupId>org.apache.servicemix.tooling</groupId>
<artifactId>jbi-maven-plugin</artifactId>
<version>${servicemix-version}</version>
<extensions>true</extensions>
<configuration>
<type>binding-component</type>
<component>nl.uds.broker.akrreader.jbi.AKRComponent</component>
</configuration>
</plugin>
Cheers,
Rob