wiser-assertions/pom.xml
Paul Campbell 995d04e977 Upgrade kemitix-parent to 1.0.0
Signed-off-by: Paul Campbell <pcampbell@kemitix.net>
2016-05-08 22:24:00 +01:00

75 lines
2.7 KiB
XML

<?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>
<version>0.4.0-SNAPSHOT</version>
<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>
<spring-framework.version>4.2.6.RELEASE</spring-framework.version>
</properties>
<parent>
<groupId>net.kemitix</groupId>
<artifactId>kemitix-parent</artifactId>
<version>1.0.0</version>
</parent>
<dependencies>
<dependency>
<groupId>javax.mail</groupId>
<artifactId>mail</artifactId>
<version>1.4.7</version>
</dependency>
<dependency>
<groupId>org.subethamail</groupId>
<artifactId>subethasmtp</artifactId>
<version>3.1.7</version>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.12</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-core</artifactId>
<version>1.10.19</version>
<scope>test</scope>
</dependency>
<dependency><!-- for Issue1Test -->
<groupId>org.codemonkey.simplejavamail</groupId>
<artifactId>simple-java-mail</artifactId>
<version>3.0.1</version>
<scope>test</scope>
</dependency>
<dependency><!-- for Issue6Test -->
<groupId>org.springframework</groupId>
<artifactId>spring-context-support</artifactId>
<version>${spring-framework.version}</version>
<scope>test</scope>
</dependency>
</dependencies>
</project>