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>
|
2020-03-23 08:59:44 +00:00
|
|
|
<version>5.3.0</version>
|
2018-08-23 22:03:57 +01:00
|
|
|
<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>
|
2020-03-23 13:13:57 +00:00
|
|
|
<java.version>1.8</java.version>
|
|
|
|
<maven.compiler.source>${java.version}</maven.compiler.source>
|
|
|
|
<maven.compiler.target>${java.version}</maven.compiler.target>
|
2020-10-05 11:44:37 +01:00
|
|
|
<tiles-maven-plugin.version>2.18</tiles-maven-plugin.version>
|
2020-03-23 14:18:37 +00:00
|
|
|
<kemitix-maven-tiles.version>2.4.1</kemitix-maven-tiles.version>
|
|
|
|
<kemitix-checkstyle.version>5.4.0</kemitix-checkstyle.version>
|
2018-08-23 22:03:57 +01:00
|
|
|
<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>
|
2020-09-14 06:21:08 +01:00
|
|
|
<junit.version>5.7.0</junit.version>
|
2020-10-27 05:15:42 +00:00
|
|
|
<mockito-core.version>3.6.0</mockito-core.version>
|
2016-06-02 21:22:31 +01:00
|
|
|
<simple-java-mail.version>3.1.1</simple-java-mail.version>
|
2020-11-11 05:15:38 +00:00
|
|
|
<spring-framework.version>5.3.1</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>
|
2020-06-22 06:57:28 +01:00
|
|
|
<mon.version>2.2.0</mon.version>
|
2020-08-19 06:32:37 +01:00
|
|
|
<spotbugs.version>4.1.2</spotbugs.version>
|
2020-11-12 05:15:37 +00:00
|
|
|
<assertj.version>3.18.1</assertj.version>
|
2016-05-08 22:54:22 +01:00
|
|
|
</properties>
|
|
|
|
|
2015-04-08 11:51:50 +01:00
|
|
|
<dependencies>
|
2018-09-01 06:49:44 +01:00
|
|
|
<dependency>
|
|
|
|
<groupId>net.kemitix</groupId>
|
|
|
|
<artifactId>mon</artifactId>
|
|
|
|
<version>${mon.version}</version>
|
|
|
|
</dependency>
|
2015-04-08 11:51:50 +01:00
|
|
|
<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>
|
2020-03-23 13:13:57 +00:00
|
|
|
<groupId>org.junit.jupiter</groupId>
|
|
|
|
<artifactId>junit-jupiter</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>
|
2020-03-23 13:13:57 +00:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.assertj</groupId>
|
|
|
|
<artifactId>assertj-core</artifactId>
|
|
|
|
<version>${assertj.version}</version>
|
|
|
|
<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>
|
2019-01-09 00:03:24 +00:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.github.spotbugs</groupId>
|
|
|
|
<artifactId>spotbugs-annotations</artifactId>
|
|
|
|
<version>${spotbugs.version}</version>
|
|
|
|
<scope>provided</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>
|
2018-11-17 17:52:04 +00:00
|
|
|
<tile>net.kemitix.tiles:all:${kemitix-maven-tiles.version}</tile>
|
2018-08-23 22:03:57 +01:00
|
|
|
<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>
|