This is an automated email from the ASF dual-hosted git repository.
acosentino pushed a commit to branch camel-2.22.x
in repository https://gitbox.apache.org/repos/asf/camel.git
The following commit(s) were added to refs/heads/camel-2.22.x by this push:
new 6b1c1c4 Fixed Camel-Mail Spring Boot Integration test
6b1c1c4 is described below
commit 6b1c1c4b5f508ecf46046928dbafd31bd3b4e43c
Author: Andrea Cosentino <ancosen@gmail.com>
AuthorDate: Wed May 29 08:54:32 2019 +0200
Fixed Camel-Mail Spring Boot Integration test
---
.../src/test/java/org/apache/camel/itest/springboot/CamelMailTest.java | 1 +
1 file changed, 1 insertion(+)
diff --git a/tests/camel-itest-spring-boot/src/test/java/org/apache/camel/itest/springboot/CamelMailTest.java
b/tests/camel-itest-spring-boot/src/test/java/org/apache/camel/itest/springboot/CamelMailTest.java
index a6f857c..cef6422 100644
--- a/tests/camel-itest-spring-boot/src/test/java/org/apache/camel/itest/springboot/CamelMailTest.java
+++ b/tests/camel-itest-spring-boot/src/test/java/org/apache/camel/itest/springboot/CamelMailTest.java
@@ -35,6 +35,7 @@ public class CamelMailTest extends AbstractSpringBootTestSupport {
public static ITestConfig createTestConfig() {
return new ITestConfigBuilder()
.module(inferModuleName(CamelMailTest.class))
+ .dependency("javax.mail:javax.mail-api")
.build();
// sometimes the arquillian test fails, but the unit tests don't.
}
|