This is an automated email from the ASF dual-hosted git repository. lburgazzoli pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/camel-quarkus.git
commit 89be3be23fadf01b31e5578210c97e08055f4f37 Author: Guillaume Smet <guillaume.s...@gmail.com> AuthorDate: Tue Dec 10 15:45:47 2019 +0100 Fix Jetty dependency convergence issues Quarkus doesn't define the Jetty versions anymore. --- poms/bom/pom.xml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/poms/bom/pom.xml b/poms/bom/pom.xml index b9d2544..23d64b2 100644 --- a/poms/bom/pom.xml +++ b/poms/bom/pom.xml @@ -775,6 +775,21 @@ <version>${jetty.version}</version> </dependency> <dependency> + <groupId>org.eclipse.jetty</groupId> + <artifactId>jetty-io</artifactId> + <version>${jetty.version}</version> + </dependency> + <dependency> + <groupId>org.eclipse.jetty</groupId> + <artifactId>jetty-util</artifactId> + <version>${jetty.version}</version> + </dependency> + <dependency> + <groupId>org.eclipse.jetty</groupId> + <artifactId>jetty-util-ajax</artifactId> + <version>${jetty.version}</version> + </dependency> + <dependency> <groupId>org.yaml</groupId> <artifactId>snakeyaml</artifactId> <version>${snakeyaml.version}</version>