| <?xml version="1.0" encoding="UTF-8"?> |
| <!-- |
| Licensed to the Apache Software Foundation (ASF) under one |
| or more contributor license agreements. See the NOTICE file |
| distributed with this work for additional information |
| regarding copyright ownership. The ASF licenses this file |
| to you under the Apache License, Version 2.0 (the |
| "License"); you may not use this file except in compliance |
| with the License. You may obtain a copy of the License at |
| |
| http://www.apache.org/licenses/LICENSE-2.0 |
| |
| Unless required by applicable law or agreed to in writing, |
| software distributed under the License is distributed on an |
| "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY |
| KIND, either express or implied. See the License for the |
| specific language governing permissions and limitations |
| under the License. |
| --> |
| <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/maven-v4_0_0.xsd"> |
| <modelVersion>4.0.0</modelVersion> |
| |
| <parent> |
| <groupId>org.apache.james</groupId> |
| <artifactId>james-server</artifactId> |
| <version>3.6.2-SNAPSHOT</version> |
| <relativePath>../../pom.xml</relativePath> |
| </parent> |
| |
| <artifactId>james-server-mailets-integration-testing</artifactId> |
| <packaging>jar</packaging> |
| |
| <name>Apache James :: Server :: Mailets Integration Testing</name> |
| |
| <dependencies> |
| <dependency> |
| <groupId>${james.groupId}</groupId> |
| <artifactId>apache-mailet-crypto</artifactId> |
| <version>${project.version}</version> |
| </dependency> |
| <dependency> |
| <groupId>${james.groupId}</groupId> |
| <artifactId>apache-mailet-icalendar</artifactId> |
| <version>${project.version}</version> |
| </dependency> |
| <dependency> |
| <groupId>${james.groupId}</groupId> |
| <artifactId>apache-mailet-test</artifactId> |
| </dependency> |
| <dependency> |
| <groupId>${james.groupId}</groupId> |
| <artifactId>james-server-dnsservice-test</artifactId> |
| </dependency> |
| <dependency> |
| <groupId>${james.groupId}</groupId> |
| <artifactId>james-server-guice-common</artifactId> |
| <type>test-jar</type> |
| </dependency> |
| <dependency> |
| <groupId>${james.groupId}</groupId> |
| <artifactId>james-server-guice-jmap</artifactId> |
| <type>test-jar</type> |
| </dependency> |
| <dependency> |
| <groupId>${james.groupId}</groupId> |
| <artifactId>james-server-mailet-dkim</artifactId> |
| </dependency> |
| <dependency> |
| <groupId>${james.groupId}</groupId> |
| <artifactId>james-server-mailets</artifactId> |
| </dependency> |
| <dependency> |
| <groupId>${james.groupId}</groupId> |
| <artifactId>james-server-memory-guice</artifactId> |
| </dependency> |
| <dependency> |
| <groupId>${james.groupId}</groupId> |
| <artifactId>james-server-testing</artifactId> |
| </dependency> |
| <dependency> |
| <groupId>${james.groupId}</groupId> |
| <artifactId>james-server-webadmin-core</artifactId> |
| <type>test-jar</type> |
| </dependency> |
| <dependency> |
| <groupId>${james.groupId}</groupId> |
| <artifactId>mock-smtp-server</artifactId> |
| </dependency> |
| <dependency> |
| <groupId>${james.groupId}</groupId> |
| <artifactId>queue-activemq-guice</artifactId> |
| </dependency> |
| <dependency> |
| <groupId>${james.groupId}</groupId> |
| <artifactId>testing-base</artifactId> |
| </dependency> |
| <dependency> |
| <groupId>com.github.spullara.mustache.java</groupId> |
| <artifactId>compiler</artifactId> |
| </dependency> |
| <dependency> |
| <groupId>com.google.guava</groupId> |
| <artifactId>guava</artifactId> |
| </dependency> |
| <dependency> |
| <groupId>com.jayway.jsonpath</groupId> |
| <artifactId>json-path</artifactId> |
| </dependency> |
| <dependency> |
| <groupId>com.rabbitmq</groupId> |
| <artifactId>amqp-client</artifactId> |
| </dependency> |
| <dependency> |
| <groupId>io.rest-assured</groupId> |
| <artifactId>rest-assured</artifactId> |
| </dependency> |
| <dependency> |
| <groupId>net.javacrumbs.json-unit</groupId> |
| <artifactId>json-unit-assertj</artifactId> |
| </dependency> |
| <dependency> |
| <groupId>org.hamcrest</groupId> |
| <artifactId>java-hamcrest</artifactId> |
| </dependency> |
| <dependency> |
| <groupId>org.slf4j</groupId> |
| <artifactId>slf4j-api</artifactId> |
| </dependency> |
| <dependency> |
| <groupId>org.testcontainers</groupId> |
| <artifactId>testcontainers</artifactId> |
| </dependency> |
| <dependency> |
| <groupId>org.xmlunit</groupId> |
| <artifactId>xmlunit-core</artifactId> |
| <version>2.6.3</version> |
| </dependency> |
| <dependency> |
| <groupId>org.xmlunit</groupId> |
| <artifactId>xmlunit-matchers</artifactId> |
| <version>2.6.3</version> |
| </dependency> |
| </dependencies> |
| |
| <build> |
| <plugins> |
| <plugin> |
| <groupId>org.apache.maven.plugins</groupId> |
| <artifactId>maven-surefire-plugin</artifactId> |
| <configuration> |
| <reuseForks>true</reuseForks> |
| <forkCount>8</forkCount> |
| </configuration> |
| </plugin> |
| </plugins> |
| </build> |
| </project> |