1
0
mirror of https://github.com/moparisthebest/davmail synced 2024-12-13 03:02:22 -05:00
davmail/pom.xml
mguessan 3f555eb1f7 Prepare 1.4.0 release
git-svn-id: http://svn.code.sf.net/p/davmail/code/trunk@171 3d1905a2-6b24-0410-a738-b14d5a86fcbd
2008-11-06 22:32:55 +00:00

181 lines
6.9 KiB
XML

<?xml version="1.0" encoding="ISO-8859-1"?>
<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>
<groupId>davmail</groupId>
<artifactId>davmail</artifactId>
<packaging>jar</packaging>
<version>1.4.0</version>
<name>davmail</name>
<url>http://www.sourceforge.net/projects/davmail</url>
<description>
Ever wanted to get rid of Outlook ? DavMail is a POP/SMTP exchange gateway allowing
users to use any mail client (e.g. Thunderbird) with an Exchange server, even from the internet
through Outlook Web Access. DavMail gateway is implemented in java and should run on
any platform. Releases are tested on Windows and Linux (Ubuntu). MacOS support is currently
limited to server (headless) mode. Tested successfully with the Iphone (gateway running on a
server).
</description>
<developers>
<developer>
<name>Mickaël Guessant</name>
<email>mguessan@free.fr</email>
<url>http://mguessan.free.fr</url>
<roles>
<role>Project Founder</role>
<role>Java Developer</role>
</roles>
</developer>
</developers>
<licenses>
<license>
<name>GNU General Public License</name>
<url>http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt</url>
<distribution>repo</distribution>
</license>
</licenses>
<mailingLists>
<mailingList>
<name>DavMail User List</name>
<post>davmail-users@lists.sourceforge.net.</post>
<subscribe>http://lists.sourceforge.net/lists/listinfo/davmail-users</subscribe>
<unsubscribe>http://lists.sourceforge.net/lists/listinfo/davmail-users</unsubscribe>
<archive>http://sourceforge.net/mailarchive/forum.php?forum_name=davmail-users</archive>
</mailingList>
</mailingLists>
<scm>
<connection>scm:svn:http://davmail.svn.sourceforge.net/svnroot/davmail/trunk</connection>
<developerConnection>scm:svn:https://davmail.svn.sourceforge.net/svnroot/davmail/trunk</developerConnection>
<tag>HEAD</tag>
<url>http://davmail.svn.sourceforge.net/viewvc/davmail/trunk/</url>
</scm>
<issueManagement>
<system>SourceForge</system>
<url>http://sourceforge.net/tracker/?group_id=184600</url>
</issueManagement>
<repositories>
<repository>
<id>central</id>
<name>Maven Repository Switchboard</name>
<layout>default</layout>
<url>http://repo1.maven.org/maven2</url>
<snapshots>
<enabled>false</enabled>
</snapshots>
</repository>
</repositories>
<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>3.8.1</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>slide</groupId>
<artifactId>slide-webdavlib</artifactId>
<version>2.1</version>
<exclusions>
<exclusion>
<groupId>de.zeigermann.xml</groupId>
<artifactId>xml-im-exporter</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>log4j</groupId>
<artifactId>log4j</artifactId>
<version>1.2.8</version>
</dependency>
<dependency>
<groupId>javax.mail</groupId>
<artifactId>mail</artifactId>
<version>1.4</version>
</dependency>
<dependency>
<groupId>javax.activation</groupId>
<artifactId>activation</artifactId>
<version>1.1</version>
</dependency>
<dependency>
<groupId>swt</groupId>
<artifactId>swt</artifactId>
<version>3.3</version>
</dependency>
<dependency>
<groupId>javax.servlet</groupId>
<artifactId>servlet-api</artifactId>
<version>2.4</version>
</dependency>
</dependencies>
<build>
<sourceDirectory>src/java</sourceDirectory>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>1.5</source>
<target>1.5</target>
</configuration>
</plugin>
</plugins>
</build>
<distributionManagement>
<site>
<id>sourceforge.net</id>
<url>scp://web.sourceforge.net/home/groups/d/da/davmail/htdocs</url>
</site>
</distributionManagement>
<reporting>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-project-info-reports-plugin</artifactId>
<reportSets>
<reportSet>
<reports>
<report>dependencies</report>
<report>dependency-convergence</report>
<report>project-team</report>
<report>mailing-list</report>
<report>issue-tracking</report>
<report>license</report>
<report>scm</report>
<report>index</report>
</reports>
</reportSet>
</reportSets>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-changelog-plugin</artifactId>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>findbugs-maven-plugin</artifactId>
<version>1.2</version>
<configuration>
<threshold>Normal</threshold>
<effort>Default</effort>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-checkstyle-plugin</artifactId>
<configuration>
<configLocation>src/checkstyle/checkstyle-configuration.xml</configLocation>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jxr-plugin</artifactId>
</plugin>
</plugins>
</reporting>
</project>