Changed parse() to parse Reply-To as AddressListField
[mime4j.git] / project.xml
blob9fa7e0e56b205de685e8a90f34f74ef8ca405d04
1 <?xml version="1.0" encoding="ISO-8859-1"?>
2 <!-- 
3 /*
4  *  Copyright 2004 the mime4j project
5  *
6  *  Licensed under the Apache License, Version 2.0 (the "License");
7  *  you may not use this file except in compliance with the License.
8  *  You may obtain a copy of the License at
9  *
10  *      http://www.apache.org/licenses/LICENSE-2.0
11  *
12  *  Unless required by applicable law or agreed to in writing, software
13  *  distributed under the License is distributed on an "AS IS" BASIS,
14  *  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15  *  See the License for the specific language governing permissions and
16  *  limitations under the License.
17  */
18  -->
19 <project>
20     <pomVersion>3</pomVersion>
21     <name>mime4j</name>
22     <id>mime4j</id>
23     <currentVersion>0.3-SNAPSHOT</currentVersion>
24 <!--    <organization>
25         <name>sourceforge</name>
26         <url>http://sourceforge.net/</url>
27         <logo>http://sourceforge.net/sflogo.php?group_id=108895&amp;type=1</logo>
28     </organization>-->
29     <inceptionYear>2004</inceptionYear>
30     <package>org.mime4j</package>
31     <shortDescription>Java stream based MIME message parser</shortDescription>
32     <description> 
33     </description>
34     <url>http://www.mime4j.org/</url>
35     <issueTrackingUrl> 
36         http://sourceforge.net/tracker/?group_id=108895&amp;atid=654176 
37     </issueTrackingUrl>
38     <siteAddress>www.mime4j.org</siteAddress>
39     <repository>
40         <connection>scm:svn:https://svn.apache.org/repos/asf/james/mime4j/trunk/</connection>
41         <developerConnection>scm:svn:https://svn.apache.org/repos/asf/james/mime4j/trunk/</developerConnection>
42         <url>http://svn.apache.org/viewcvs.cgi/james/mime4j/trunk/</url>
43     </repository>
44     <versions>
45         <version>
46             <id>0.2-SNAPSHOT</id>
47             <name>0.2-SNAPSHOT</name>
48             <tag>HEAD</tag>
49         </version>
50     </versions>
51 <!--    <mailingLists>
52         <mailingList>
53             <name>mime4j developer list</name>
54             <subscribe>http://lists.sourceforge.net/lists/listinfo/mime4j-developer</subscribe>
55             <unsubscribe>http://lists.sourceforge.net/lists/listinfo/mime4j-developer</unsubscribe>
56         </mailingList>
57     </mailingLists>-->
58     <developers>
59         <developer>
60             <name>Niklas Therning</name>
61             <id>ntherning</id>
62             <email>niklas(at)trillian(dot)se</email>
63             <organization>Trillian AB</organization>
64         </developer>
65         <developer>
66             <name>Joe Cheng</name>
67             <id>jcheng</id>
68             <email>code(at)joecheng(dot)com</email>
69             <organization></organization>
70         </developer>
71     </developers>
72     <dependencies>
73         <dependency>
74             <groupId>commons-logging</groupId>
75             <artifactId>commons-logging</artifactId>
76             <version>1.0.4</version>
77             <url>http://jakarta.apache.org/commons/logging</url>
78         </dependency>
79         <dependency>
80             <groupId>commons-io</groupId>
81             <artifactId>commons-io</artifactId>
82             <version>1.0</version>
83             <url>http://jakarta.apache.org/commons/io</url>
84         </dependency>
85         <dependency>
86             <groupId>log4j</groupId>
87             <artifactId>log4j</artifactId>
88             <version>1.2.8</version>
89             <url>http://logging.apache.org/log4j</url>
90         </dependency>
91     </dependencies>
92     <build>
93         <sourceDirectory>src/java</sourceDirectory>
94         <unitTestSourceDirectory>src/test</unitTestSourceDirectory>
95         <aspectSourceDirectory/>
96         <!-- Unit test cases -->
97         <unitTest>
98             <includes>
99                 <include>**/*Test.java</include>
100             </includes>
101             <excludes>
102                 <exclude>**/RepositoryTest.java</exclude>
103             </excludes>
104         </unitTest>
105         <!-- Integration unit test cases -->
106         <integrationUnitTest/>
107         <jars>
108         </jars>
109     </build>
110 </project>