You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by al...@apache.org on 2018/11/12 19:20:53 UTC

[camel] branch master updated: Explicited the servlet-api dependency version brought by spring-boot-starter-undertow so that its no more overridden by camel-parent

This is an automated email from the ASF dual-hosted git repository.

aldettinger 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 e21ef60  Explicited the servlet-api dependency version brought by spring-boot-starter-undertow so that its no more overridden by camel-parent
e21ef60 is described below

commit e21ef60d01abed84b290e760c17c25f89d53172c
Author: aldettinger <al...@gmail.com>
AuthorDate: Mon Nov 12 20:19:56 2018 +0100

    Explicited the servlet-api dependency version brought by spring-boot-starter-undertow so that its no more overridden by camel-parent
---
 examples/camel-example-rest-producer/pom.xml | 5 +++++
 1 file changed, 5 insertions(+)

diff --git a/examples/camel-example-rest-producer/pom.xml b/examples/camel-example-rest-producer/pom.xml
index d3a88e7..d7c2d99 100644
--- a/examples/camel-example-rest-producer/pom.xml
+++ b/examples/camel-example-rest-producer/pom.xml
@@ -58,6 +58,11 @@
         <type>pom</type>
         <scope>import</scope>
       </dependency>
+      <dependency>
+        <groupId>javax.servlet</groupId>
+        <artifactId>javax.servlet-api</artifactId>
+        <version>4.0.1</version>
+      </dependency>
     </dependencies>
   </dependencyManagement>