The above basically means that from now on you can always use the version of Camel Extra component which is tested against your version of Apache Camel. For example if you want to use Hibernate component in your project using Camel 2.12.1, you can use the same version of the latter component as your ASF Camel dependencies.
<properties> <camel-version>2.12.1</camel-version> </properties> ... <dependency> <groupId>org.apache.camel</groupId> <artifactId>camel-core</artifactId> <version>${camel-version}</version> </dependency> <dependency> <groupId>org.apache-extras.camel-extra</groupId> <artifactId>camel-hibernate</artifactId> <version>${camel-version}</version> </dependency>From this point forward Camel Extra is distributed in the same versions as Apache Camel, starting from 2.10.0. For this moment that would be:
- camel-extra-2.10.0
- camel-extra-2.10.1
- camel-extra-2.10.2
- camel-extra-2.10.3
- camel-extra-2.10.4
- camel-extra-2.10.5
- camel-extra-2.10.6
- camel-extra-2.10.7
- camel-extra-2.11.0
- camel-extra-2.11.1
- camel-extra-2.11.2
- camel-extra-2.12.0
- camel-extra-2.12.1
No comments:
Post a Comment