mirror of
https://github.com/moparisthebest/davmail
synced 2024-12-13 11:12:22 -05:00
bf37056509
git-svn-id: http://svn.code.sf.net/p/davmail/code/trunk@6 3d1905a2-6b24-0410-a738-b14d5a86fcbd
147 lines
3.7 KiB
XML
147 lines
3.7 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<project>
|
|
<!-- Initial Maven 1 project file, to update -->
|
|
<pomVersion>3</pomVersion>
|
|
<id>davmail</id>
|
|
<name>DavMail</name>
|
|
<currentVersion>0.9</currentVersion>
|
|
<organization>
|
|
<name>DavMail</name>
|
|
<url>http://sourceforge.net/projects/davmail</url>
|
|
<logo>http://images.sourceforge.net/sfx/sfx_logo2.png</logo>
|
|
</organization>
|
|
<inceptionYear>2000</inceptionYear>
|
|
<package>davmail</package>
|
|
|
|
|
|
<description>
|
|
POP/SMTP Webdav Exchange Gateway.
|
|
</description>
|
|
|
|
<shortDescription>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 on any platform (Java based).
|
|
</shortDescription>
|
|
|
|
<url>http://sourceforge.net/projects/davmail</url>
|
|
<issueTrackingUrl>
|
|
http://sourceforge.net/tracker/?group_id=184600
|
|
</issueTrackingUrl>
|
|
<siteAddress>http://sourceforge.net/projects/davmail</siteAddress>
|
|
<siteDirectory>
|
|
/
|
|
</siteDirectory>
|
|
<distributionDirectory>
|
|
/
|
|
</distributionDirectory>
|
|
|
|
<repository>
|
|
<connection>
|
|
scm:https://davmail.svn.sourceforge.net/svnroot/davmail/trunk
|
|
</connection>
|
|
<url>
|
|
http://davmail.svn.sourceforge.net/viewvc/davmail/
|
|
</url>
|
|
</repository>
|
|
|
|
<versions>
|
|
<version>
|
|
<id>09</id>
|
|
<name>0.9</name>
|
|
<tag>HEAD</tag>
|
|
</version>
|
|
</versions>
|
|
|
|
<mailingLists>
|
|
</mailingLists>
|
|
|
|
<developers>
|
|
|
|
<developer>
|
|
<name>Mickael Guessant</name>
|
|
<id>mguessan</id>
|
|
<email>mguessan@free.fr</email>
|
|
<organization></organization>
|
|
</developer>
|
|
|
|
</developers>
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
<groupId>junit</groupId>
|
|
<artifactId>junit</artifactId>
|
|
<version>3.8.1</version>
|
|
<url>http://www.junit.org</url>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>commons-logging</groupId>
|
|
<artifactId>commons-logging</artifactId>
|
|
<version>1.0.4</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>commons-httpclient</groupId>
|
|
<artifactId>commons-httpclient</artifactId>
|
|
<version>2.0.2</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>jdom</groupId>
|
|
<artifactId>jdom</artifactId>
|
|
<version>1.0</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>jaxen</groupId>
|
|
<artifactId>jaxen</artifactId>
|
|
<version>1.0-FCS-full</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>saxpath</groupId>
|
|
<artifactId>saxpath</artifactId>
|
|
<version>1.0-FCS</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>jtidy</groupId>
|
|
<artifactId>jtidy</artifactId>
|
|
<version>4aug2000r7-dev</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>slide</groupId>
|
|
<artifactId>slide-webdavlib</artifactId>
|
|
<version>2.1</version>
|
|
</dependency>
|
|
</dependencies>
|
|
|
|
<build>
|
|
|
|
<nagEmailAddress>
|
|
mguessan@free.fr
|
|
</nagEmailAddress>
|
|
|
|
<sourceDirectory>src/java</sourceDirectory>
|
|
<unitTestSourceDirectory>src/test</unitTestSourceDirectory>
|
|
|
|
<aspectSourceDirectory/>
|
|
|
|
<!-- Unit test cases
|
|
<unitTest>
|
|
<includes>
|
|
<include>**/Test*.java</include>
|
|
</includes>
|
|
</unitTest>
|
|
-->
|
|
</build>
|
|
<reports>
|
|
<report>maven-jdepend-plugin</report>
|
|
<report>maven-checkstyle-plugin</report>
|
|
<report>maven-pmd-plugin</report>
|
|
<report>maven-javadoc-plugin</report>
|
|
<report>maven-jxr-plugin</report>
|
|
<!--
|
|
<report>maven-junit-report-plugin</report>
|
|
<report>maven-tasklist-plugin</report>
|
|
-->
|
|
</reports>
|
|
</project>
|