various updates, opensocial support
[ical-aggregator.git] / pom.xml
blobf07fc30c1fa43f4618c1ae9917f885c428ae5b6d
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-aggregator</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>central</id>
25                         <url>http://repo1.maven.org/maven2</url>
26                 </repository>
27                 <repository>
28                         <id>wicket-stuff-repository</id>
29                 <name>Wicket-Stuff Repository</name>
30                 <url>http://www.wicketstuff.org/maven/repository/</url>
31                 </repository>
32         </repositories>
33         <dependencies>
34                 <!--  WICKET DEPENDENCIES -->
35                 <dependency>
36                         <groupId>org.apache.wicket</groupId>
37                         <artifactId>wicket</artifactId>
38                         <version>${wicket.version}</version>
39                 </dependency>
40                 <dependency>
41                         <groupId>org.apache.wicket</groupId>
42                         <artifactId>wicket-spring</artifactId>
43                         <version>${wicket.version}</version>
44                 </dependency>
45                 <dependency>
46                         <groupId>org.apache.wicket</groupId>
47                         <artifactId>wicket-datetime</artifactId>
48                         <version>${wicket.version}</version>
49                 </dependency>
50                 <dependency>
51                         <groupId>commons-httpclient</groupId>
52                         <artifactId>commons-httpclient</artifactId>
53                         <version>3.1</version>
54                 </dependency>
55                 <dependency>
56                         <groupId>commons-dbcp</groupId>
57                         <artifactId>commons-dbcp</artifactId>
58                         <version>1.4</version>
59                 </dependency>
60                 <dependency>
61                         <groupId>commons-lang</groupId>
62                         <artifactId>commons-lang</artifactId>
63                         <version>2.5</version>
64                 </dependency>
65                 <!--
66                         OPTIONAL <dependency> <groupId>org.apache.wicket</groupId>
67                         <artifactId>wicket-extensions</artifactId>
68                         <version>${wicket.version}</version> </dependency>
69                 -->
71                 <!-- LOGGING DEPENDENCIES - LOG4J -->
72                 <dependency>
73                         <groupId>org.slf4j</groupId>
74                         <artifactId>slf4j-log4j12</artifactId>
75                         <version>1.4.2</version>
76                 </dependency>
77                 <dependency>
78                         <groupId>log4j</groupId>
79                         <artifactId>log4j</artifactId>
80                         <version>1.2.14</version>
81                 </dependency>
83                 <!--  JUNIT DEPENDENCY FOR TESTING -->
84                 <dependency>
85                         <groupId>junit</groupId>
86                         <artifactId>junit</artifactId>
87                         <version>4.5</version>
88                         <scope>test</scope>
89                 </dependency>
90                 <dependency>
91                         <groupId>org.springframework</groupId>
92                         <artifactId>spring-web</artifactId>
93                         <version>3.0.0.RELEASE</version>
94                 </dependency>
95                 <!-- voor quartz -->
96                 <dependency>
97                         <groupId>org.springframework</groupId>
98                         <artifactId>spring-context-support</artifactId>
99                         <version>3.0.0.RELEASE</version>
100                 </dependency>
101                 <dependency>
102                         <groupId>org.springframework</groupId>
103                         <artifactId>spring-tx</artifactId>
104                         <version>3.0.0.RELEASE</version>
105                 </dependency>
106                 <dependency>
107                         <groupId>org.springframework</groupId>
108                         <artifactId>spring-orm</artifactId>
109                         <version>3.0.0.RELEASE</version>
110                 </dependency>
111                 <dependency>
112                         <groupId>org.opensymphony.quartz</groupId>
113                         <artifactId>quartz</artifactId>
114                         <version>1.6.1</version>
115                 </dependency>
116                 <dependency>
117                         <groupId>org.springframework</groupId>
118                         <artifactId>spring-test</artifactId>
119                         <version>3.0.0.RELEASE</version>
120                         <scope>test</scope>
121                 </dependency>
122                 <dependency>
123                         <groupId>org.springframework</groupId>
124                         <artifactId>spring-context</artifactId>
125                         <version>3.0.0.RELEASE</version>
126                 </dependency>
127                 <dependency>
128                         <groupId>org.hibernate</groupId>
129                         <artifactId>hibernate-core</artifactId>
130                         <version>3.3.2.GA</version>
131                         <scope>compile</scope>
132                 </dependency>
133                 <dependency>
134                         <groupId>org.hibernate</groupId>
135                         <artifactId>hibernate-ehcache</artifactId>
136                         <version>3.3.2.GA</version>
137                         <scope>compile</scope>
138                 </dependency>
139                 <dependency>
140                         <groupId>org.hibernate</groupId>
141                         <artifactId>hibernate-annotations</artifactId>
142                         <version>3.4.0.GA</version>
143                         <scope>compile</scope>
144                 </dependency>
145                 <dependency>
146                         <groupId>org.hibernate</groupId>
147                         <artifactId>hibernate-entitymanager</artifactId>
148                         <version>3.4.0.GA</version>
149                         <scope>compile</scope>
150                 </dependency>
151                 <dependency>
152                         <groupId>hsqldb</groupId>
153                         <artifactId>hsqldb</artifactId>
154                         <version>1.8.0.7</version>
155                 </dependency>
156                 <dependency>
157                   <groupId>c3p0</groupId>
158                   <artifactId>c3p0</artifactId>
159                   <version>0.9.1.2</version>
160                 </dependency> 
161                 <dependency>
162                         <groupId>postgresql</groupId>
163                         <artifactId>postgresql</artifactId>
164                         <version>8.4-701.jdbc4</version>
165                 </dependency>
166                 <!--
167                         dependency> <groupId>org.apache.openejb</groupId>
168                         <artifactId>openejb-core</artifactId> <version>3.1</version>
169                         <scope>test</scope> </dependency
170                 -->
172                 <dependency>
173                         <groupId>net.fortuna.ical4j</groupId>
174                         <artifactId>ical4j</artifactId>
175                         <version>1.0-git-SNAPSHOT</version>
176                 </dependency>
178                 <dependency>
179                         <groupId>net.sourceforge.findbugs</groupId>
180                         <artifactId>jsr305</artifactId>
181                         <version>1.3.2</version>
182                 </dependency>
184                 <!--  JETTY DEPENDENCIES FOR TESTING  -->
185                 <dependency>
186                         <groupId>org.mortbay.jetty</groupId>
187                         <artifactId>jetty</artifactId>
188                         <version>${jetty.version}</version>
189                         <scope>provided</scope>
190                 </dependency>
191                 <dependency>
192                         <groupId>org.mortbay.jetty</groupId>
193                         <artifactId>jetty-util</artifactId>
194                         <version>${jetty.version}</version>
195                         <scope>provided</scope>
196                 </dependency>
197                 <dependency>
198                         <groupId>org.mortbay.jetty</groupId>
199                         <artifactId>jetty-management</artifactId>
200                         <version>${jetty.version}</version>
201                         <scope>provided</scope>
202                 </dependency>
203                 <dependency>
204               <groupId>org.wicketstuff</groupId>
205               <artifactId>wicketstuff-rome</artifactId>
206               <version>1.4-SNAPSHOT</version>
207             </dependency>
208                         
209         </dependencies>
210         <build>
211                 <resources>
212                         <resource>
213                                 <directory>src/main/java</directory>
214                                 <excludes>
215                                         <exclude>**/*.java</exclude>
216                                 </excludes>
217                                 <filtering>false</filtering>
218                         </resource>
219                         <resource>
220                                 <directory>src/main/resources</directory>
221                                 <filtering>false</filtering>
222                         </resource>
223                 </resources>
224                 <testResources>
225                         <testResource>
226                                 <directory>src/main/java</directory>
227                                 <excludes>
228                                         <exclude>**/*.java</exclude>
229                                 </excludes>
230                         </testResource>
231                         <testResource>
232                                 <filtering>false</filtering>
233                                 <directory>src/test/java</directory>
234                                 <includes>
235                                         <include>**</include>
236                                 </includes>
237                                 <excludes>
238                                         <exclude>**/*.java</exclude>
239                                 </excludes>
240                         </testResource>
241                         <testResource>
242                                 <directory>src/test/resources</directory>
243                         </testResource>
244                 </testResources>
245                 <plugins>
246                         <plugin>
247                                 <inherited>true</inherited>
248                                 <groupId>org.apache.maven.plugins</groupId>
249                                 <artifactId>maven-compiler-plugin</artifactId>
250                                 <configuration>
251                                         <source>1.6</source>
252                                         <target>1.6</target>
253                                         <optimize>true</optimize>
254                                         <debug>true</debug>
255                                 </configuration>
256                         </plugin>
257                         <!--plugin>
258                                 <groupId>org.mortbay.jetty</groupId>
259                                 <artifactId>maven-jetty-plugin</artifactId>
260                         </plugin-->
261                         <plugin>
262                                 <groupId>org.apache.maven.plugins</groupId>
263                                 <artifactId>maven-eclipse-plugin</artifactId>
264                                 <version>2.7</version>
265                                 <configuration>
266                                         <downloadSources>true</downloadSources>
267                                         <useProjectReferences>false</useProjectReferences>
268                                 </configuration>
269                         </plugin>
270                 </plugins>
271         </build>
272         <properties>
273                 <wicket.version>1.4.6</wicket.version>
274                 <jetty.version>6.1.24</jetty.version>
275         </properties>
276 </project>