This is an automated email from the ASF dual-hosted git repository. davsclaus pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/camel.git
The following commit(s) were added to refs/heads/master by this push: new b326c9e Update camel-3-migration-guide.adoc b326c9e is described below commit b326c9edf2509738a9951e39e2c20bb7f7b953a1 Author: Claus Ibsen <claus.ib...@gmail.com> AuthorDate: Mon Nov 18 11:27:03 2019 +0100 Update camel-3-migration-guide.adoc Add jaxb versions instead of placeholders and polished a bit about JAXB --- .../modules/ROOT/pages/camel-3-migration-guide.adoc | 16 +++++----------- 1 file changed, 5 insertions(+), 11 deletions(-) diff --git a/docs/user-manual/modules/ROOT/pages/camel-3-migration-guide.adoc b/docs/user-manual/modules/ROOT/pages/camel-3-migration-guide.adoc index 5cb0b29..0f39172 100644 --- a/docs/user-manual/modules/ROOT/pages/camel-3-migration-guide.adoc +++ b/docs/user-manual/modules/ROOT/pages/camel-3-migration-guide.adoc @@ -7,30 +7,24 @@ from version 2.x to 3.0. Camel 3 supports Java 11. Support for Java 8 is best effort for the earlier versions of Camel 3. However at some time in the 3.x lifeline we will drop support for Java 8. -However, in Java 11 JAXB modules have been **removed** from the JDK, therefore you will need to add them as Maven dependencies since there are couple of components rely on them: - - <dependency> - <groupId>com.sun.activation</groupId> - <artifactId>javax.activation</artifactId> - <version>${javax.activation.version}</version> - </dependency> - +However, in Java 11 JAXB modules have been **removed** from the JDK, therefore you will need to add them as Maven dependencies (if you use JAXB such as when using XML DSL or the camel-jaxb component): + <dependency> <groupId>javax.xml.bind</groupId> <artifactId>jaxb-api</artifactId> - <version>${jaxb.api.version}</version> + <version>2.3.1</version> </dependency> <dependency> <groupId>com.sun.xml.bind</groupId> <artifactId>jaxb-core</artifactId> - <version>${jaxb.api.version}</version> + <version>2.3.0.1</version> </dependency> <dependency> <groupId>com.sun.xml.bind</groupId> <artifactId>jaxb-impl</artifactId> - <version>${jaxb.api.version}</version> + <version>2.3.2</version> </dependency> == Modularization of camel-core