| <?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-project</artifactId> |
| <version>3.1.1-SNAPSHOT</version> |
| </parent> |
| |
| <artifactId>apache-james-mpt</artifactId> |
| |
| <packaging>pom</packaging> |
| |
| <name>Apache James MPT</name> |
| <description>Functional test framework specialised for the ASCII line-base protocols common in mail.</description> |
| <url>http://james.apache.org/mpt/</url> |
| <inceptionYear>2008</inceptionYear> |
| |
| <modules> |
| <module>all</module> |
| <module>antlib</module> |
| <module>app</module> |
| <module>core</module> |
| <module>impl/imap-mailbox</module> |
| <module>impl/managesieve</module> |
| <module>impl/smtp</module> |
| <module>mavenplugin</module> |
| </modules> |
| |
| <issueManagement> |
| <system>JIRA</system> |
| <url>http://issues.apache.org/jira/browse/MPT</url> |
| </issueManagement> |
| |
| <properties> |
| <commons-io.version>2.4</commons-io.version> |
| <commons-lang.version>2.6</commons-lang.version> |
| <derby.version>10.9.1.0</derby.version> |
| <guice.version>4.0</guice.version> |
| <h2.version>1.3.170</h2.version> |
| <hadoop.version>1.0.1</hadoop.version> |
| <hbase.version>0.94.27</hbase.version> |
| <jackrabbit-core.version>2.5.2</jackrabbit-core.version> |
| <jmock.version>2.6.0</jmock.version> |
| <junit.version>4.11</junit.version> |
| <log4j.version>1.2.16</log4j.version> |
| <lucene-core.version>3.6.0</lucene-core.version> |
| <slf4j.version>1.7.25</slf4j.version> |
| </properties> |
| |
| <build> |
| <plugins> |
| <plugin> |
| <groupId>org.apache.maven.plugins</groupId> |
| <artifactId>maven-jar-plugin</artifactId> |
| <configuration> |
| <archive> |
| <manifest> |
| <addDefaultSpecificationEntries>true</addDefaultSpecificationEntries> |
| <addDefaultImplementationEntries>true</addDefaultImplementationEntries> |
| </manifest> |
| </archive> |
| </configuration> |
| <executions> |
| <execution> |
| <goals> |
| <goal>test-jar</goal> |
| </goals> |
| </execution> |
| </executions> |
| </plugin> |
| <plugin> |
| <groupId>org.apache.maven.plugins</groupId> |
| <artifactId>maven-source-plugin</artifactId> |
| <executions> |
| <execution> |
| <id>attach-sources</id> |
| <goals> |
| <goal>jar</goal> |
| </goals> |
| </execution> |
| </executions> |
| </plugin> |
| </plugins> |
| </build> |
| </project> |