| <?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> |
| <artifactId>james-project</artifactId> |
| <groupId>org.apache.james</groupId> |
| <version>3.0.2-SNAPSHOT</version> |
| </parent> |
| |
| <artifactId>protocols</artifactId> |
| <packaging>pom</packaging> |
| |
| <name>Apache James :: Protocols</name> |
| <description>James Protocols</description> |
| <url>http://james.apache.org/protocols</url> |
| <inceptionYear>2010</inceptionYear> |
| |
| <modules> |
| <module>api</module> |
| <module>imap</module> |
| <module>lmtp</module> |
| <module>managesieve</module> |
| <module>netty</module> |
| <module>pop3</module> |
| <module>smtp</module> |
| </modules> |
| |
| <properties> |
| <target.jdk>1.6</target.jdk> |
| <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
| <netty.version>3.10.6.Final</netty.version> |
| <apache-mime4j.version>0.8.1</apache-mime4j.version> |
| <commons-net.version>3.2</commons-net.version> |
| <commons-lang.version>2.6</commons-lang.version> |
| <commons-codec.version>1.7</commons-codec.version> |
| <commons-collections.version>3.2.2</commons-collections.version> |
| <apache-commons-io.version>1.3.2</apache-commons-io.version> |
| <jmock.version>2.5.1</jmock.version> |
| <jutf7.version>1.0.0</jutf7.version> |
| <junit.version>4.10</junit.version> |
| <slf4j.version>1.6.3</slf4j.version> |
| <jsieve.version>0.7</jsieve.version> |
| <mockito-core.version>1.9.0</mockito-core.version> |
| <assertj-1.version>1.7.1</assertj-1.version> |
| <assertj-3.version>3.2.0</assertj-3.version> |
| </properties> |
| |
| <dependencyManagement> |
| <dependencies> |
| <dependency> |
| <groupId>org.apache.james</groupId> |
| <artifactId>james-server-util</artifactId> |
| <version>${project.version}</version> |
| </dependency> |
| <dependency> |
| <groupId>org.apache.james.protocols</groupId> |
| <artifactId>protocols-pop3</artifactId> |
| <version>${project.version}</version> |
| </dependency> |
| <dependency> |
| <groupId>org.apache.james.protocols</groupId> |
| <artifactId>protocols-lmtp</artifactId> |
| <version>${project.version}</version> |
| </dependency> |
| <dependency> |
| <groupId>org.apache.james.protocols</groupId> |
| <artifactId>protocols-smtp</artifactId> |
| <version>${project.version}</version> |
| </dependency> |
| <dependency> |
| <groupId>org.apache.james.protocols</groupId> |
| <artifactId>protocols-smtp</artifactId> |
| <type>test-jar</type> |
| <version>${project.version}</version> |
| </dependency> |
| <dependency> |
| <groupId>org.apache.james.protocols</groupId> |
| <artifactId>protocols-api</artifactId> |
| <version>${project.version}</version> |
| </dependency> |
| <dependency> |
| <groupId>org.apache.james.protocols</groupId> |
| <artifactId>protocols-api</artifactId> |
| <version>${project.version}</version> |
| <type>test-jar</type> |
| </dependency> |
| <dependency> |
| <groupId>org.apache.james.protocols</groupId> |
| <artifactId>protocols-netty</artifactId> |
| <version>${project.version}</version> |
| </dependency> |
| <dependency> |
| <groupId>org.apache.james</groupId> |
| <artifactId>metrics-api</artifactId> |
| <version>${project.version}</version> |
| </dependency> |
| <dependency> |
| <groupId>org.slf4j</groupId> |
| <artifactId>slf4j-api</artifactId> |
| <version>${slf4j.version}</version> |
| <scope>compile</scope> |
| <optional>true</optional> |
| </dependency> |
| |
| |
| <dependency> |
| <groupId>org.slf4j</groupId> |
| <artifactId>slf4j-simple</artifactId> |
| <version>${slf4j.version}</version> |
| <scope>test</scope> |
| </dependency> |
| <dependency> |
| <groupId>commons-codec</groupId> |
| <artifactId>commons-codec</artifactId> |
| <version>${commons-codec.version}</version> |
| </dependency> |
| <dependency> |
| <groupId>commons-configuration</groupId> |
| <artifactId>commons-configuration</artifactId> |
| <version>1.9</version> |
| <exclusions> |
| <exclusion> |
| <artifactId>commons-digester</artifactId> |
| <groupId>commons-digester</groupId> |
| </exclusion> |
| <exclusion> |
| <artifactId>commons-beanutils-core</artifactId> |
| <groupId>commons-beanutils</groupId> |
| </exclusion> |
| </exclusions> |
| </dependency> |
| <dependency> |
| <groupId>commons-lang</groupId> |
| <artifactId>commons-lang</artifactId> |
| <version>${commons-lang.version}</version> |
| </dependency> |
| <dependency> |
| <groupId>org.apache.commons</groupId> |
| <artifactId>commons-io</artifactId> |
| <version>${apache-commons-io.version}</version> |
| </dependency> |
| <dependency> |
| <groupId>com.google.guava</groupId> |
| <artifactId>guava</artifactId> |
| <version>18.0</version> |
| </dependency> |
| <dependency> |
| <groupId>io.netty</groupId> |
| <artifactId>netty</artifactId> |
| <version>${netty.version}</version> |
| </dependency> |
| <dependency> |
| <groupId>javax.inject</groupId> |
| <artifactId>javax.inject</artifactId> |
| <version>1</version> |
| </dependency> |
| <dependency> |
| <groupId>org.apache.james</groupId> |
| <artifactId>apache-james-mailbox-api</artifactId> |
| <version>${project.version}</version> |
| </dependency> |
| <dependency> |
| <groupId>org.apache.james</groupId> |
| <artifactId>apache-james-mailbox-api</artifactId> |
| <version>${project.version}</version> |
| <type>test-jar</type> |
| <scope>test</scope> |
| </dependency> |
| <dependency> |
| <groupId>org.apache.james</groupId> |
| <artifactId>james-server-data-api</artifactId> |
| <version>${project.version}</version> |
| </dependency> |
| <dependency> |
| <groupId>org.apache.james</groupId> |
| <artifactId>apache-jsieve-core</artifactId> |
| <version>${jsieve.version}</version> |
| <exclusions> |
| <exclusion> |
| <groupId>commons-logging</groupId> |
| <artifactId>commons-logging</artifactId> |
| </exclusion> |
| </exclusions> |
| </dependency> |
| |
| <!-- |
| START Mail |
| --> |
| <dependency> |
| <groupId>org.apache.james</groupId> |
| <artifactId>apache-mime4j-core</artifactId> |
| <version>${apache-mime4j.version}</version> |
| </dependency> |
| <dependency> |
| <groupId>org.apache.james</groupId> |
| <artifactId>apache-mime4j-dom</artifactId> |
| <version>${apache-mime4j.version}</version> |
| </dependency> |
| <!-- |
| END Mail |
| --> |
| <dependency> |
| <groupId>com.beetstra.jutf7</groupId> |
| <artifactId>jutf7</artifactId> |
| <version>${jutf7.version}</version> |
| </dependency> |
| |
| <!-- |
| START Testing |
| --> |
| |
| <dependency> |
| <groupId>org.jmock</groupId> |
| <artifactId>jmock</artifactId> |
| <version>${jmock.version}</version> |
| <scope>test</scope> |
| </dependency> |
| <dependency> |
| <groupId>org.jmock</groupId> |
| <artifactId>jmock-junit4</artifactId> |
| <version>${jmock.version}</version> |
| <scope>test</scope> |
| </dependency> |
| <dependency> |
| <groupId>junit</groupId> |
| <artifactId>junit</artifactId> |
| <version>${junit.version}</version> |
| <scope>test</scope> |
| </dependency> |
| <dependency> |
| <groupId>commons-net</groupId> |
| <artifactId>commons-net</artifactId> |
| <version>${commons-net.version}</version> |
| <scope>test</scope> |
| </dependency> |
| <dependency> |
| <groupId>org.apache.james</groupId> |
| <artifactId>apache-james-mailbox-store</artifactId> |
| <scope>test</scope> |
| <version>${project.version}</version> |
| </dependency> |
| <dependency> |
| <groupId>com.sun.mail</groupId> |
| <artifactId>javax.mail</artifactId> |
| <version>1.5.4</version> |
| </dependency> |
| <dependency> |
| <groupId>org.assertj</groupId> |
| <artifactId>assertj-guava</artifactId> |
| <version>1.3.1</version> |
| </dependency> |
| <dependency> |
| <groupId>org.mockito</groupId> |
| <artifactId>mockito-core</artifactId> |
| <version>${mockito-core.version}</version> |
| </dependency> |
| <dependency> |
| <groupId>nl.jqno.equalsverifier</groupId> |
| <artifactId>equalsverifier</artifactId> |
| <version>1.7.6</version> |
| </dependency> |
| </dependencies> |
| </dependencyManagement> |
| |
| <build> |
| <plugins> |
| <plugin> |
| <groupId>org.apache.felix</groupId> |
| <artifactId>maven-bundle-plugin</artifactId> |
| <extensions>true</extensions> |
| </plugin> |
| <plugin> |
| <groupId>org.apache.maven.plugins</groupId> |
| <artifactId>maven-clean-plugin</artifactId> |
| <configuration> |
| <filesets> |
| <fileset> |
| <!-- just delete the bin directory --> |
| <directory>bin</directory> |
| <followSymlinks>false</followSymlinks> |
| </fileset> |
| </filesets> |
| </configuration> |
| </plugin> |
| <plugin> |
| <groupId>org.apache.maven.plugins</groupId> |
| <artifactId>maven-jar-plugin</artifactId> |
| <executions> |
| <execution> |
| <goals> |
| <goal>test-jar</goal> |
| </goals> |
| </execution> |
| </executions> |
| </plugin> |
| </plugins> |
| </build> |
| |
| </project> |