Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: minor editorial changes

...

From Camel 2.10 onwards the camel:run plugin also supports running a Blueprint application, and by default it scans for OSGi blueprint files in

...

This allows you to boot up any Blueprint services you wish ; - whether they are Camel-related, or any other Blueprint.

Info
titleUsing limited Blueprint container

We use the PojoSR project as the blueprint container. This project is not a full fledged blueprint container. For that you can use Apache Karaf or Apache ServiceMix.

...

Code Block
xml
xml
      <plugin>
        <groupId>org.apache.camel</groupId>
        <artifactId>camel-maven-plugin</artifactId>
        <configuration>
          <useDot>true</useDot>
        </configuration>
      </plugin>    

Logging the classpath

...

From Camel 2.10 onwards you can configure whether the classpath should be logged when camel:run runs executes. In older releases the classpath is always logged.
This can be verbose and noisy, so from Camel 2.10 onwards, the classpath is not logged anymore. You can enable this in the configuration using:

...