This is an automated email from the ASF dual-hosted git repository. rombert pushed a commit to branch feature/SLING-8337 in repository https://gitbox.apache.org/repos/asf/sling-org-apache-sling-committer-cli.git
commit 2a914e4ae524921e612b35e544963d0c8c7e8e65 Author: Robert Munteanu <[email protected]> AuthorDate: Fri Mar 29 17:41:41 2019 +0100 Add explicity dependecy on javax.mail We should not rely on the classpath populated by the feature model. --- pom.xml | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/pom.xml b/pom.xml index b27394e..735bc46 100644 --- a/pom.xml +++ b/pom.xml @@ -71,6 +71,9 @@ <artifactId>slingfeature-maven-plugin</artifactId> <version>0.8.0</version> <extensions>true</extensions> + <configuration> + <skipAddFeatureDependencies>true</skipAddFeatureDependencies> + </configuration> <executions> <execution> <id>feature-dependencies</id> @@ -180,6 +183,12 @@ <scope>provided</scope> </dependency> <dependency> + <groupId>javax.mail</groupId> + <artifactId>mail</artifactId> + <version>1.5.0-b01</version> + <scope>provided</scope> + </dependency> + <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> </dependency>
