pom.xml: Upgrade to test with simple-java-mail 3.0.0

In simple-java-mail the Email class has been moved into the 'email' package,
thus the Issue1Test had to be updated. This doesn't affect how
wiser-assertions is used.

Signed-off-by: Paul Campbell <pcampbell@kemitix.net>
This commit is contained in:
Paul Campbell 2016-03-05 15:07:59 +00:00
parent 3d8f1c2f1c
commit b30289aca2
2 changed files with 3 additions and 3 deletions

View file

@ -60,7 +60,7 @@
<dependency><!-- for Issue1Test --> <dependency><!-- for Issue1Test -->
<groupId>org.codemonkey.simplejavamail</groupId> <groupId>org.codemonkey.simplejavamail</groupId>
<artifactId>simple-java-mail</artifactId> <artifactId>simple-java-mail</artifactId>
<version>2.5.1</version> <version>3.0.0</version>
<scope>test</scope> <scope>test</scope>
</dependency> </dependency>
<dependency><!-- for Issue6Test --> <dependency><!-- for Issue6Test -->

View file

@ -1,7 +1,7 @@
package net.kemitix.wiser.assertions; package net.kemitix.wiser.assertions;
import org.codemonkey.simplejavamail.Email;
import org.codemonkey.simplejavamail.Mailer; import org.codemonkey.simplejavamail.Mailer;
import org.codemonkey.simplejavamail.email.Email;
import org.junit.Test; import org.junit.Test;
import javax.mail.Message; import javax.mail.Message;
@ -9,8 +9,8 @@ import javax.mail.Message;
/** /**
* Regression test for issue #1. * Regression test for issue #1.
* *
* @see https://github.com/kemitix/wiser-assertions/issues/1
* @author pcampbell * @author pcampbell
* @see https://github.com/kemitix/wiser-assertions/issues/1
*/ */
public class Issue1Test extends AbstractWiserTest { public class Issue1Test extends AbstractWiserTest {