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>
|
|
|
|
|
|
|
|
<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-05-09 10:50:09 +01:00
|
|
|
<version>1.1.0</version>
|
2015-04-08 11:51:50 +01:00
|
|
|
</parent>
|
|
|
|
|
2016-05-08 22:54:22 +01:00
|
|
|
<properties>
|
|
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
|
|
<javax-mail.version>1.4.7</javax-mail.version>
|
|
|
|
<subethasmtp.version>3.1.7</subethasmtp.version>
|
|
|
|
<junit.version>4.12</junit.version>
|
|
|
|
<mockito-core.version>1.10.19</mockito-core.version>
|
|
|
|
<simple-java-mail.version>3.0.1</simple-java-mail.version>
|
|
|
|
<spring-framework.version>4.2.6.RELEASE</spring-framework.version>
|
|
|
|
</properties>
|
|
|
|
|
2015-04-08 11:51:50 +01:00
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>javax.mail</groupId>
|
|
|
|
<artifactId>mail</artifactId>
|
2016-05-08 22:54:22 +01:00
|
|
|
<version>${javax-mail.version}</version>
|
2015-04-08 11:51:50 +01:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.subethamail</groupId>
|
|
|
|
<artifactId>subethasmtp</artifactId>
|
2016-05-08 22:54:22 +01:00
|
|
|
<version>${subethasmtp.version}</version>
|
2015-04-08 11:51:50 +01:00
|
|
|
</dependency>
|
2015-10-21 23:03:36 +01:00
|
|
|
<dependency>
|
|
|
|
<groupId>junit</groupId>
|
|
|
|
<artifactId>junit</artifactId>
|
2016-05-08 22:54:22 +01:00
|
|
|
<version>${junit.version}</version>
|
2015-10-21 23:03:36 +01:00
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.mockito</groupId>
|
|
|
|
<artifactId>mockito-core</artifactId>
|
2016-05-08 22:54:22 +01:00
|
|
|
<version>${mockito-core.version}</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>
|
2016-05-08 22:54:22 +01:00
|
|
|
<version>${simple-java-mail.version}</version>
|
2016-01-25 11:54:28 +00:00
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2016-02-16 22:26:31 +00:00
|
|
|
<dependency><!-- for Issue6Test -->
|
|
|
|
<groupId>org.springframework</groupId>
|
|
|
|
<artifactId>spring-context-support</artifactId>
|
2016-05-08 21:04:50 +01:00
|
|
|
<version>${spring-framework.version}</version>
|
2016-02-16 22:26:31 +00:00
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2015-04-08 11:51:50 +01:00
|
|
|
</dependencies>
|
|
|
|
|
2015-10-22 09:40:44 +01:00
|
|
|
</project>
|