duplicate dependency for java mail

Issue #253 resolved
Stéphane Nicoll created an issue

The project currently provides the following compile-scoped dependencies for java mail

        <dependency>
            <groupId>javax.mail</groupId>
            <artifactId>javax.mail-api</artifactId>
            <version>1.6.1</version>
        </dependency>
        <dependency>
            <groupId>com.sun.mail</groupId>
            <artifactId>javax.mail</artifactId>
            <version>1.6.1</version>
        </dependency>

The latter contains the former so this means the Java mail is currently duplicated on the classpath when importing this project. Please consider removing the first dependency as it looks like a duplicate to me.

Comments (5)

  1. Log in to comment