2015-04-08 11:51:50 +01:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<groupId>net.kemitix</groupId>
|
|
|
|
<artifactId>wiser-assertions</artifactId>
|
2016-01-25 13:28:47 +00:00
|
|
|
<version>0.4.0-SNAPSHOT</version>
|
2015-04-08 11:51:50 +01:00
|
|
|
<packaging>jar</packaging>
|
|
|
|
|
|
|
|
<name>wiser-assertions</name>
|
|
|
|
<description>Assertions for Wiser SMTP test server from subethamail</description>
|
|
|
|
|
|
|
|
<url>https://github.com/kemitix/wiser-assertions</url>
|
|
|
|
|
|
|
|
<inceptionYear>2015</inceptionYear>
|
|
|
|
|
|
|
|
<issueManagement>
|
|
|
|
<url>https://github.com/kemitix/wiser-assertions/issues</url>
|
|
|
|
<system>GitHub Issues</system>
|
|
|
|
</issueManagement>
|
|
|
|
|
|
|
|
<scm>
|
|
|
|
<connection>scm:git:git@github.com:kemitix/wiser-assertions.git</connection>
|
|
|
|
<developerConnection>scm:git:git@github.com:kemitix/wiser-assertions.git</developerConnection>
|
|
|
|
<url>git@github.com:kemitix/wiser-assertions.git</url>
|
|
|
|
</scm>
|
|
|
|
|
|
|
|
<properties>
|
|
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
|
|
</properties>
|
|
|
|
|
|
|
|
<parent>
|
2015-08-26 21:53:20 +01:00
|
|
|
<groupId>net.kemitix</groupId>
|
2016-01-25 12:11:21 +00:00
|
|
|
<artifactId>kemitix-parent</artifactId>
|
2016-02-16 21:42:27 +00:00
|
|
|
<version>0.7.1</version>
|
2015-04-08 11:51:50 +01:00
|
|
|
</parent>
|
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>javax.mail</groupId>
|
|
|
|
<artifactId>mail</artifactId>
|
2015-04-15 11:54:29 +01:00
|
|
|
<version>1.4.7</version>
|
2015-04-08 11:51:50 +01:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.subethamail</groupId>
|
|
|
|
<artifactId>subethasmtp</artifactId>
|
|
|
|
<version>3.1.7</version>
|
|
|
|
</dependency>
|
2015-10-21 23:03:36 +01:00
|
|
|
<dependency>
|
|
|
|
<groupId>junit</groupId>
|
|
|
|
<artifactId>junit</artifactId>
|
2016-01-25 12:11:21 +00:00
|
|
|
<version>4.12</version>
|
2015-10-21 23:03:36 +01:00
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.mockito</groupId>
|
|
|
|
<artifactId>mockito-core</artifactId>
|
2016-01-25 12:11:21 +00:00
|
|
|
<version>1.10.19</version>
|
2015-10-21 23:03:36 +01:00
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2016-02-16 22:26:31 +00:00
|
|
|
<dependency><!-- for Issue1Test -->
|
2016-01-25 11:54:28 +00:00
|
|
|
<groupId>org.codemonkey.simplejavamail</groupId>
|
|
|
|
<artifactId>simple-java-mail</artifactId>
|
|
|
|
<version>2.5.1</version>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2016-02-16 22:26:31 +00:00
|
|
|
<dependency><!-- for Issue6Test -->
|
|
|
|
<groupId>org.springframework</groupId>
|
|
|
|
<artifactId>spring-context-support</artifactId>
|
|
|
|
<version>4.2.4.RELEASE</version>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2015-04-08 11:51:50 +01:00
|
|
|
</dependencies>
|
|
|
|
|
2015-10-22 09:40:44 +01:00
|
|
|
</project>
|