use of org.apache.camel.itest.springboot.ITestConfigBuilder in project camel by apache.
the class JarExporter method exportJar.
@Test
public void exportJar() throws Exception {
Archive<?> archive = ArquillianPackager.springBootPackage(new ITestConfigBuilder().module("camel-cache").resource("components/cache-ehcache.xml", "ehcache.xml").build());
new ZipExporterImpl(archive).exportTo(new File("target/export.zip"), true);
}
Aggregations