You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by ac...@apache.org on 2019/01/29 09:52:47 UTC

[camel] branch master updated: Fixed compilation error in Camel-Saxon

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

acosentino 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 3071b66  Fixed compilation error in Camel-Saxon
3071b66 is described below

commit 3071b66b06bf12a4ea83084d944220238e5bde50
Author: Andrea Cosentino <an...@gmail.com>
AuthorDate: Tue Jan 29 10:33:03 2019 +0100

    Fixed compilation error in Camel-Saxon
---
 bom/camel-bom/pom.xml                                          | 10 ++++++++++
 .../org/apache/camel/builder/XsltAggregationStrategyTest.java  |  1 +
 2 files changed, 11 insertions(+)

diff --git a/bom/camel-bom/pom.xml b/bom/camel-bom/pom.xml
index c083cad..8abf2b8 100644
--- a/bom/camel-bom/pom.xml
+++ b/bom/camel-bom/pom.xml
@@ -1995,6 +1995,16 @@
       </dependency>
       <dependency>
         <groupId>org.apache.camel</groupId>
+        <artifactId>camel-rest</artifactId>
+        <version>${project.version}</version>
+      </dependency>
+      <dependency>
+        <groupId>org.apache.camel</groupId>
+        <artifactId>camel-rest-starter</artifactId>
+        <version>${project.version}</version>
+      </dependency>
+      <dependency>
+        <groupId>org.apache.camel</groupId>
         <artifactId>camel-rest-swagger</artifactId>
         <version>${project.version}</version>
       </dependency>
diff --git a/components/camel-saxon/src/test/java/org/apache/camel/builder/XsltAggregationStrategyTest.java b/components/camel-saxon/src/test/java/org/apache/camel/builder/XsltAggregationStrategyTest.java
index 9c6635c..7690c60 100644
--- a/components/camel-saxon/src/test/java/org/apache/camel/builder/XsltAggregationStrategyTest.java
+++ b/components/camel-saxon/src/test/java/org/apache/camel/builder/XsltAggregationStrategyTest.java
@@ -17,6 +17,7 @@
 package org.apache.camel.builder;
 
 import org.apache.camel.component.mock.MockEndpoint;
+import org.apache.camel.component.xslt.XsltAggregationStrategy;
 import org.apache.camel.test.junit4.CamelTestSupport;
 import org.junit.Test;