Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Documentation

Reference

Description

camel:run

camel:run

Boots up Camel in a new JVM using the Spring configuration at META-INF/spring/*.xml and runs your routing rules

camel:embedded

camel:embedded

Boots up Camel in the same JVM as Maven using the Spring configuration at META-INF/spring/*.xml and runs your routing rules

camel:dot

camel:dot

Generates DOT files and then HTML, PNG, SVG files for your EIP routing rules with integration into Maven Reports

NOTE:You could override the default Spring application context file uri META-INF/spring/*.xml by using the applicationContextUri property in the camel-maven-plugin configuration.

Code Block
langxml

<plugin>
  <groupId>org.apache.camel</groupId>
  <artifactId>camel-maven-plugin</artifactId>
  <configuration>
    <applicationContextUri>you-camel-context.xml</applicationContextUri>
  </configuration>
</plugin>

Integration into Maven Reports

...