Author: ggregory
Date: Wed Oct 15 14:24:59 2014
New Revision: 1632054
URL: http://svn.apache.org/r1632054
Log:
Fix up POM so that we pick up the right version of deps.
Modified:
commons/proper/email/trunk/pom.xml
Modified: commons/proper/email/trunk/pom.xml
URL:
http://svn.apache.org/viewvc/commons/proper/email/trunk/pom.xml?rev=1632054&r1=1632053&r2=1632054&view=diff
==============================================================================
--- commons/proper/email/trunk/pom.xml (original)
+++ commons/proper/email/trunk/pom.xml Wed Oct 15 14:24:59 2014
@@ -245,6 +245,12 @@
<scope>test</scope>
</dependency>
<dependency>
+ <groupId>org.slf4j</groupId>
+ <artifactId>slf4j-jdk14</artifactId>
+ <version>1.7.7</version>
+ <scope>test</scope>
+ </dependency>
+ <dependency>
<groupId>commons-io</groupId>
<artifactId>commons-io</artifactId>
<!-- IO 2.2 is the last version compatible with 1.5; IO 2.4 needs
Java 1.6 -->
@@ -256,6 +262,12 @@
<artifactId>subethasmtp</artifactId>
<version>3.1.7</version>
<scope>test</scope>
+ <exclusions>
+ <exclusion>
+ <groupId>javax.mail</groupId>
+ <artifactId>mail</artifactId>
+ </exclusion>
+ </exclusions>
</dependency>
<dependency>
<groupId>org.powermock</groupId>
@@ -275,12 +287,6 @@
<version>${easymock.version}</version>
<scope>test</scope>
</dependency>
- <dependency>
- <groupId>org.slf4j</groupId>
- <artifactId>slf4j-jdk14</artifactId>
- <version>1.7.7</version>
- <scope>test</scope>
- </dependency>
</dependencies>
<properties>