@Configuration
public static Option[] configure() {
Option[] options = combine(
getDefaultCamelKarafOptions(),
// disruptor requires sun.misc packages
new KarafDistributionConfigurationFileExtendOption("etc/jre.properties", "jre-1.6", ",sun.misc"),
new KarafDistributionConfigurationFileExtendOption("etc/jre.properties", "jre-1.7", ",sun.misc"),
new KarafDistributionConfigurationFileExtendOption("etc/jre.properties", "jre-1.8", ",sun.misc"),
// using the features to install the other camel components
loadCamelFeatures("camel-disruptor"));
return options;
}