Add correct test cases taken from rfc5545
[ical4j.git] / pom.xml
blobe3b53e630834f7d19a8db35786af33ebfeb3bb8d
1 <?xml version="1.0" encoding="UTF-8"?>
2 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
4         <parent>
5                 <artifactId>modularity-parent</artifactId>
6                 <groupId>net.modularity</groupId>
7                 <version>1.0.8-SNAPSHOT</version>
8         </parent>
9         <modelVersion>4.0.0</modelVersion>
10         <groupId>net.fortuna.ical4j</groupId>
11         <artifactId>ical4j</artifactId>
12         <packaging>bundle</packaging>
13         <name>iCal4j</name>
14         <version>1.0-git-SNAPSHOT</version>
15         <description>
16                 A Java library for reading and writing iCalendar (*.ics) files
17         </description>
18         <url>http://ical4j.sourceforge.net</url>
20         <issueManagement>
21                 <system>SourceForge.net</system>
22                 <url>https://sourceforge.net/tracker/?group_id=107024</url>
23         </issueManagement>
24         <inceptionYear>2004</inceptionYear>
25         <licenses>
26                 <license>
27                         <name>iCal4j - License</name>
28                         <url>LICENSE</url>
29                 </license>
30         </licenses>
32         <scm>
33                 <connection>scm:cvs:pserver:anonymous:@ical4j.cvs.sourceforge.net:/cvsroot/ical4j:iCal4j</connection>
34                 <developerConnection>scm:cvs:ext:fortuna@ical4j.cvs.sourceforge.net:/cvsroot/ical4j:iCal4j</developerConnection>
35                 <url>http://ical4j.cvs.sourceforge.net/ical4j/iCal4j</url>
36         </scm>
38         <contributors>
39                 <contributor>
40                         <name>Mike Douglass</name>
41                         <organization>
42                                 Rensselaer Polytechnic Institute
43                         </organization>
44                         <organizationUrl>http://www.rpi.edu</organizationUrl>
45                 </contributor>
46                 <contributor>
47                         <name>Randy Letness</name>
48                         <organization>
49                                 Open Source Applications Foundation
50                         </organization>
51                         <organizationUrl>
52                                 http://www.osafoundation.org
53                         </organizationUrl>
54                 </contributor>
55         </contributors>
57         <!--
58                 <distributionManagement> <relocation>
59                 <groupId>net.fortuna.ical4j</groupId> <artifactId>ical4j</artifactId>
60                 <version>1.0-beta5</version> <message> Updated group id to conform
61                 with maven standards </message> </relocation>
62                 </distributionManagement>
63         -->
65         <build>
66                 <sourceDirectory>source</sourceDirectory>
67                 <resources>
68                         <resource>
69                                 <directory>etc</directory>
70                                 <includes>
71                                         <include>zoneinfo/**</include>
72                                 </includes>
73                                 <excludes>
74                                         <exclude>zoneinfo/zones.h</exclude>
75                                         <exclude>zoneinfo/zones.tab</exclude>
76                                 </excludes>
77                         </resource>
78                         <resource>
79                                 <directory>src/main/resources</directory>
80                                 <filtering>true</filtering>
81                         </resource>
82                 </resources>
84                 <testSourceDirectory>test</testSourceDirectory>
85                 <testResources>
86                         <testResource>
87                                 <directory>src/test/resources</directory>
88                         </testResource>
89                         <testResource>
90                                 <directory>test</directory>
91                                 <includes>
92                                         <include>log4j.properties</include>
93                                 </includes>
94                         </testResource>
95                 </testResources>
97                 <plugins>
98                         <plugin>
99                                 <artifactId>maven-compiler-plugin</artifactId>
100                                 <configuration>
101                                         <source>1.4</source>
102                                         <target>1.4</target>
103                                         <testExcludes>
104                                                 <exclude>**/RegexTestHarness.java</exclude>
105                                         </testExcludes>
106                                 </configuration>
107                         </plugin>
109                         <plugin>
110                                 <artifactId>maven-surefire-plugin</artifactId>
111                                 <configuration>
112                                         <!--
113                                                 <systemProperties> <property>
114                                                 <name>ical4j.unfolding.relaxed</name> <value>true</value>
115                                                 </property> <property> <name>ical4j.parsing.relaxed</name>
116                                                 <value>true</value> </property> </systemProperties>
117                                                 <forkMode>pertest</forkMode>
118                                         -->
119                                         <excludes>
120                                                 <exclude>**/CalendarOutputterTest.java</exclude>
121                                                 <exclude>**/Abstract*.java</exclude>
122                                                 <exclude>**/ValidationBySchemaTest.java</exclude>
123                                         </excludes>
124                                 </configuration>
125                         </plugin>
127                         <plugin>
128                                 <groupId>org.apache.felix</groupId>
129                                 <artifactId>maven-bundle-plugin</artifactId>
130                                 <extensions>true</extensions>
131                                 <configuration>
132                                         <instructions>
133                                                 <Export-Package>net.fortuna.ical4j.*</Export-Package>
134                                                 <Import-Package>net.fortuna.ical4j.*,org.apache.commons.lang.*,org.apache.commons.logging,*;resolution:=optional</Import-Package>
135                                         </instructions>
136                                 </configuration>
137                         </plugin>
139                         <plugin>
140                                 <groupId>org.apache.maven.plugins</groupId>
141                                 <artifactId>maven-clover-plugin</artifactId>
142                                 <configuration>
143                                         <jdk>1.4</jdk>
144                                 </configuration>
145                                 <executions>
146                                         <execution>
147                                                 <phase>pre-site</phase>
148                                                 <goals>
149                                                         <goal>instrument</goal>
150                                                 </goals>
151                                         </execution>
152                                 </executions>
153                         </plugin>
155                         <plugin>
156                                 <artifactId>maven-assembly-plugin</artifactId>
157                                 <configuration>
158                                         <descriptors>
159                                                 <descriptor>etc/bin-assembly.xml</descriptor>
160                                                 <descriptor>etc/src-assembly.xml</descriptor>
161                                         </descriptors>
162                                 </configuration>
163                                 <executions>
164                                         <execution>
165                                                 <id>make-assembly</id>
166                                                 <phase>site-deploy</phase>
167                                                 <goals>
168                                                         <goal>attached</goal>
169                                                 </goals>
170                                         </execution>
171                                 </executions>
172                         </plugin>
174                         <plugin>
175                                 <groupId>org.codehaus.groovy.maven</groupId>
176                                 <artifactId>gmaven-plugin</artifactId>
177                                 <executions>
178                                         <execution>
179                                                 <goals>
180                                                         <goal>generateStubs</goal>
181                                                         <goal>compile</goal>
182                                                         <goal>generateTestStubs</goal>
183                                                         <goal>testCompile</goal>
184                                                 </goals>
185                                         </execution>
186                                 </executions>
187                         </plugin>
188                 </plugins>
189         </build>
191         <dependencies>
192                 <dependency>
193                         <groupId>commons-logging</groupId>
194                         <artifactId>commons-logging</artifactId>
195                         <version>1.1.1</version>
196                 </dependency>
197                 <dependency>
198                         <groupId>commons-codec</groupId>
199                         <artifactId>commons-codec</artifactId>
200                         <version>1.3</version>
201                 </dependency>
202                 <dependency>
203                         <groupId>commons-lang</groupId>
204                         <artifactId>commons-lang</artifactId>
205                         <version>2.4</version>
206                 </dependency>
207                 <dependency>
208                         <groupId>junit</groupId>
209                         <artifactId>junit</artifactId>
210                         <version>4.5</version>
211                         <scope>test</scope>
212                 </dependency>
213                 <dependency>
214                         <groupId>commons-io</groupId>
215                         <artifactId>commons-io</artifactId>
216                         <version>1.4</version>
217                         <scope>test</scope>
218                 </dependency>
219                 <dependency>
220                         <groupId>org.codehaus.groovy.maven.runtime</groupId>
221                         <artifactId>gmaven-runtime-1.6</artifactId>
222                         <version>1.0-rc-5</version>
223                         <scope>provided</scope>
224                 </dependency>
225                 <dependency>
226                         <groupId>backport-util-concurrent</groupId>
227                         <artifactId>backport-util-concurrent</artifactId>
228                         <version>3.1</version>
229                 </dependency>
230                 <dependency>
231                         <groupId>xerces</groupId>
232                         <artifactId>xercesImpl</artifactId>
233                         <version>2.8.1</version>
234                         <scope>test</scope>
235                 </dependency>
237         </dependencies>
239         <repositories>
240                 <repository>
241                         <id>modularity-releases</id>
242                         <name>Modularity Maven Repository</name>
243                         <url>http://m2.modularity.net.au/releases</url>
244                         <releases>
245                                 <enabled>true</enabled>
246                         </releases>
247                         <snapshots>
248                                 <enabled>false</enabled>
249                         </snapshots>
250                 </repository>
251                 <repository>
252                         <id>modularity-snapshots</id>
253                         <name>Modularity Snapshot Repository</name>
254                         <url>http://m2.modularity.net.au/snapshots</url>
255                         <releases>
256                                 <enabled>false</enabled>
257                         </releases>
258                         <snapshots>
259                                 <enabled>true</enabled>
260                         </snapshots>
261                 </repository>
262         </repositories>
264         <reporting>
265                 <plugins>
266                         <plugin>
267                                 <groupId>org.apache.maven.plugins</groupId>
268                                 <artifactId>maven-pmd-plugin</artifactId>
269                                 <configuration>
270                                         <linkXref>true</linkXref>
271                                         <targetJdk>1.4</targetJdk>
272                                         <rulesets>
273                                                 <ruleset>http://svn.mnode.org/tools/pmd/mnode_ruleset.xml</ruleset>
274                                         </rulesets>
275                                 </configuration>
276                         </plugin>
278                         <!-- Override default suppressions.. -->
279                         <plugin>
280                                 <groupId>org.apache.maven.plugins</groupId>
281                                 <artifactId>maven-checkstyle-plugin</artifactId>
282                                 <configuration>
283                                         <configLocation>http://svn.mnode.org/tools/checkstyle/mnode_checks.xml</configLocation>
284                                         <suppressionsFile>etc/checkstyle-suppressions.xml</suppressionsFile>
285                                 </configuration>
286                         </plugin>
288                         <plugin>
289                                 <artifactId>maven-clover-plugin</artifactId>
290                                 <configuration>
291                                         <licenseLocation>
292                                                 etc/clover.license
293                                         </licenseLocation>
294                                 </configuration>
295                         </plugin>
297                         <plugin>
298                                 <groupId>org.codehaus.mojo</groupId>
299                                 <artifactId>clirr-maven-plugin</artifactId>
300                                 <configuration>
301                                         <minSeverity>info</minSeverity>
302                                         <comparisonVersion>1.0-rc2</comparisonVersion>
303                                 </configuration>
304                         </plugin>
305                         <plugin>
306                                 <groupId>org.apache.maven.plugins</groupId>
307                                 <artifactId>maven-changelog-plugin</artifactId>
308                                 <reportSets>
309                                         <reportSet>
310                                                 <id>changelog</id>
311                                                 <configuration>
312                                                         <type>tag</type>
313                                                         <tags>
314                                                                 <tag implementation="java.lang.String">
315                                                                         ical4j-1_0-rc1
316                                                                 </tag>
317                                                                 <tag implementation="java.lang.String">
318                                                                         ical4j-1_0-rc2
319                                                                 </tag>
320                                                         </tags>
321                                                 </configuration>
322                                                 <reports>
323                                                         <report>changelog</report>
324                                                 </reports>
325                                         </reportSet>
326                                 </reportSets>
327                         </plugin>
328                 </plugins>
329         </reporting>
330 </project>