You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by ff...@apache.org on 2019/06/03 15:40:22 UTC

[camel] branch camel-2.x updated: [CAMEL-13593]ensure javax.mail dependency still in camel-mail.pom

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

ffang pushed a commit to branch camel-2.x
in repository https://gitbox.apache.org/repos/asf/camel.git


The following commit(s) were added to refs/heads/camel-2.x by this push:
     new f581b97  [CAMEL-13593]ensure javax.mail dependency still in camel-mail.pom
f581b97 is described below

commit f581b977a48f3d0f1f820276e3938563450fa273
Author: Freeman Fang <fr...@gmail.com>
AuthorDate: Mon Jun 3 11:40:05 2019 -0400

    [CAMEL-13593]ensure javax.mail dependency still in camel-mail.pom
---
 components/camel-mail/pom.xml                                            | 1 +
 .../src/test/java/org/apache/camel/itest/springboot/CamelMailTest.java   | 1 -
 2 files changed, 1 insertion(+), 1 deletion(-)

diff --git a/components/camel-mail/pom.xml b/components/camel-mail/pom.xml
index 75a3989..1582fc3 100644
--- a/components/camel-mail/pom.xml
+++ b/components/camel-mail/pom.xml
@@ -162,6 +162,7 @@
                                  </filter>
                              </filters>
                              <minimizeJar>true</minimizeJar>
+                             <createDependencyReducedPom>false</createDependencyReducedPom>
                          </configuration>
                      </execution>
                  </executions>
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 cef6422..a6f857c 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,7 +35,6 @@ 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.
     }