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">
|
2018-08-23 22:03:57 +01:00
|
|
|
|
|
|
|
<parent>
|
|
|
|
<groupId>net.kemitix</groupId>
|
|
|
|
<artifactId>kemitix-parent</artifactId>
|
|
|
|
<version>5.1.1</version>
|
|
|
|
<relativePath/>
|
|
|
|
</parent>
|
|
|
|
|
2015-04-08 11:51:50 +01:00
|
|
|
<modelVersion>4.0.0</modelVersion>
|
2018-08-23 22:03:57 +01:00
|
|
|
|
2015-04-08 11:51:50 +01:00
|
|
|
<artifactId>wiser-assertions</artifactId>
|
2018-08-23 22:03:57 +01:00
|
|
|
|
2018-08-23 23:08:55 +01:00
|
|
|
<version>DEV-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>
|
|
|
|
|
2016-05-08 22:54:22 +01:00
|
|
|
<properties>
|
2018-08-23 22:03:57 +01:00
|
|
|
<tiles-maven-plugin.version>2.11</tiles-maven-plugin.version>
|
|
|
|
<kemitix-tiles.version>0.9.0</kemitix-tiles.version>
|
|
|
|
<kemitix-checkstyle.version>4.1.1</kemitix-checkstyle.version>
|
|
|
|
<digraph-dependency.basePackage>net.kemitix.wiser.assertions</digraph-dependency.basePackage>
|
|
|
|
|
2016-05-08 22:54:22 +01:00
|
|
|
<javax-mail.version>1.4.7</javax-mail.version>
|
|
|
|
<subethasmtp.version>3.1.7</subethasmtp.version>
|
|
|
|
<junit.version>4.12</junit.version>
|
2018-08-23 22:48:15 +01:00
|
|
|
<mockito-core.version>2.21.0</mockito-core.version>
|
2016-06-02 21:22:31 +01:00
|
|
|
<simple-java-mail.version>3.1.1</simple-java-mail.version>
|
2018-08-23 15:09:43 +01:00
|
|
|
<spring-framework.version>5.0.8.RELEASE</spring-framework.version>
|
2018-08-23 22:03:57 +01:00
|
|
|
|
|
|
|
<jacoco-class-line-covered-ratio>0</jacoco-class-line-covered-ratio>
|
|
|
|
<jacoco-class-instruction-covered-ratio>0</jacoco-class-instruction-covered-ratio>
|
|
|
|
<jacoco-class-missed-count-maximum>1</jacoco-class-missed-count-maximum>
|
2016-05-08 22:54:22 +01:00
|
|
|
</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>
|
|
|
|
|
2016-06-02 21:32:45 +01:00
|
|
|
<build>
|
|
|
|
<plugins>
|
2018-08-23 22:03:57 +01:00
|
|
|
<plugin>
|
|
|
|
<groupId>io.repaint.maven</groupId>
|
|
|
|
<artifactId>tiles-maven-plugin</artifactId>
|
|
|
|
<version>${tiles-maven-plugin.version}</version>
|
|
|
|
<extensions>true</extensions>
|
|
|
|
<configuration>
|
|
|
|
<tiles>
|
|
|
|
<tile>net.kemitix.tiles:all:${kemitix-tiles.version}</tile>
|
|
|
|
<tile>net.kemitix.checkstyle:tile:${kemitix-checkstyle.version}</tile>
|
|
|
|
</tiles>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
2016-06-02 21:32:45 +01:00
|
|
|
</plugins>
|
|
|
|
</build>
|
2015-10-22 09:40:44 +01:00
|
|
|
</project>
|