parameters my contain String or String[]
[ical-validator.git] / pom.xml
blob2f3732ae6d0f17ed446ad2426ed505975d104082
1 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
2         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
3         <modelVersion>4.0.0</modelVersion>
4         <groupId>net.bzzt.ical</groupId>
5         <artifactId>ical-validator</artifactId>
6         <packaging>war</packaging>
7         <version>1.0-SNAPSHOT</version>
8         <!-- TODO project name  -->
9         <name>quickstart</name>
10         <description></description>
11         <!--
12                 TODO <organization> <name>company name</name> <url>company url</url>
13                 </organization>
14         -->
15         <licenses>
16                 <license>
17                         <name>The Apache Software License, Version 2.0</name>
18                         <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
19                         <distribution>repo</distribution>
20                 </license>
21         </licenses>
22         <repositories>
23                 <repository>
24                         <id>modularity-releases</id>
25                         <name>Modularity Releases Repository</name>
26                         <url>http://m2.modularity.net.au/releases</url>
27                         <releases>
28                                 <enabled>true</enabled>
29                         </releases>
30                         <snapshots>
31                                 <enabled>false</enabled>
32                         </snapshots>
33                 </repository>
34                 <repository>
35                         <id>wicket-snaps</id>
36                         <url>http://wicketstuff.org/maven/repository</url>
37                         <snapshots>
38                                 <enabled>true</enabled>
39                         </snapshots>
40                         <releases>
41                                 <enabled>true</enabled>
42                         </releases>
43                 </repository>
44         </repositories>
45         <dependencies>
46                 <!--  WICKET DEPENDENCIES -->
47                 <dependency>
48                         <groupId>org.apache.wicket</groupId>
49                         <artifactId>wicket</artifactId>
50                         <version>${wicket.version}</version>
51                 </dependency>
52                 <!--
53                         OPTIONAL <dependency> <groupId>org.apache.wicket</groupId>
54                         <artifactId>wicket-extensions</artifactId>
55                         <version>${wicket.version}</version> </dependency>
56                 -->
58                 <!-- LOGGING DEPENDENCIES - LOG4J -->
59                 <dependency>
60                         <groupId>org.slf4j</groupId>
61                         <artifactId>slf4j-log4j12</artifactId>
62                         <version>1.4.2</version>
63                 </dependency>
64                 <dependency>
65                         <groupId>log4j</groupId>
66                         <artifactId>log4j</artifactId>
67                         <version>1.2.14</version>
68                 </dependency>
69                 <dependency>
70                         <groupId>commons-collections</groupId>
71                         <artifactId>commons-collections</artifactId>
72                         <version>3.2</version>
73                 </dependency>
75                 <!--  JUNIT DEPENDENCY FOR TESTING -->
76                 <dependency>
77                         <groupId>junit</groupId>
78                         <artifactId>junit</artifactId>
79                         <version>3.8.2</version>
80                         <scope>test</scope>
81                 </dependency>
83                 <!--  JETTY DEPENDENCIES FOR TESTING  -->
84                 <dependency>
85                         <groupId>org.mortbay.jetty</groupId>
86                         <artifactId>jetty</artifactId>
87                         <version>${jetty.version}</version>
88                         <scope>provided</scope>
89                 </dependency>
90                 <dependency>
91                         <groupId>org.mortbay.jetty</groupId>
92                         <artifactId>jetty-util</artifactId>
93                         <version>${jetty.version}</version>
94                         <scope>provided</scope>
95                 </dependency>
96                 <dependency>
97                         <groupId>org.mortbay.jetty</groupId>
98                         <artifactId>jetty-management</artifactId>
99                         <version>${jetty.version}</version>
100                         <scope>provided</scope>
101                 </dependency>
102                 <dependency>
103                         <groupId>net.fortuna.ical4j</groupId>
104                         <artifactId>ical4j</artifactId>
105                         <version>1.0-git-validator-SNAPSHOT</version>
106                 </dependency>
107                 <dependency>
108                         <groupId>commons-httpclient</groupId>
109                         <artifactId>commons-httpclient</artifactId>
110                         <version>3.1</version>
111                 </dependency>
112                 <dependency>
113                         <groupId>org.wicketstuff</groupId>
114                         <artifactId>annotation</artifactId>
115                         <version>1.4-SNAPSHOT</version>
116                 </dependency>
119                 <!--<dependency>-->
120                 <!--      <groupId>commons-codec</groupId>-->
121                 <!--      <artifactId>commons-codec</artifactId>-->
122                 <!--      <version>3.1</version>-->
123                 <!--    </dependency>-->
125         </dependencies>
126         <build>
127                 <resources>
128                         <resource>
129                                 <filtering>false</filtering>
130                                 <directory>src/main/resources</directory>
131                         </resource>
132                         <resource>
133                                 <filtering>false</filtering>
134                                 <directory>src/main/java</directory>
135                                 <includes>
136                                         <include>**</include>
137                                 </includes>
138                                 <excludes>
139                                         <exclude>**/*.java</exclude>
140                                 </excludes>
141                         </resource>
142                 </resources>
143                 <testResources>
144                         <testResource>
145                                 <filtering>false</filtering>
146                                 <directory>src/test/java</directory>
147                                 <includes>
148                                         <include>**</include>
149                                 </includes>
150                                 <excludes>
151                                         <exclude>**/*.java</exclude>
152                                 </excludes>
153                         </testResource>
154                 </testResources>
155                 <plugins>
156                         <plugin>
157                                 <inherited>true</inherited>
158                                 <groupId>org.apache.maven.plugins</groupId>
159                                 <artifactId>maven-compiler-plugin</artifactId>
160                                 <configuration>
161                                         <source>1.6</source>
162                                         <target>1.6</target>
163                                         <optimize>true</optimize>
164                                         <debug>true</debug>
165                                 </configuration>
166                         </plugin>
167                         <plugin>
168                                 <groupId>org.mortbay.jetty</groupId>
169                                 <artifactId>maven-jetty-plugin</artifactId>
170                         </plugin>
171                         <plugin>
172                                 <groupId>org.apache.maven.plugins</groupId>
173                                 <artifactId>maven-eclipse-plugin</artifactId>
174                                 <configuration>
175                                         <downloadSources>true</downloadSources>
176                                         <useProjectReferences>false</useProjectReferences>
177                                 </configuration>
178                         </plugin>
179                 </plugins>
180         </build>
181         <properties>
182                 <wicket.version>1.4.5</wicket.version>
183                 <jetty.version>6.1.4</jetty.version>
184         </properties>
185 </project>