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:35:14 UTC

[camel] branch master 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 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 781330f  [CAMEL-13593]ensure javax.mail dependency still in camel-mail.pom
781330f is described below

commit 781330f188193905330f449314019ea4bdb00730
Author: Freeman Fang <fr...@gmail.com>
AuthorDate: Mon Jun 3 11:34:51 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 4f6d253..a0d0f766 100644
--- a/components/camel-mail/pom.xml
+++ b/components/camel-mail/pom.xml
@@ -148,6 +148,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 4c1992e..64a350f 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.
     }