source: vlo/branches/vlo-3.0/vlo-web-app/pom.xml @ 4669

Last change on this file since 4669 was 4669, checked in by Twan Goosen, 10 years ago

Added CMDI view (obtained through XSLT transform) to record page

File size: 10.3 KB
Line 
1<?xml version="1.0" encoding="UTF-8"?>
2<project xmlns="http://maven.apache.org/POM/4.0.0"
3         xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
5
6    <parent>
7        <groupId>eu.clarin.cmdi</groupId>
8        <artifactId>vlo</artifactId>
9        <version>3.0-SNAPSHOT</version>
10    </parent>
11   
12    <modelVersion>4.0.0</modelVersion>
13    <groupId>eu.clarin.cmdi</groupId>
14    <artifactId>vlo-web-app</artifactId>
15    <packaging>war</packaging>
16    <version>3.0-SNAPSHOT</version>
17    <name>VLO Web Application</name>
18    <description></description>
19
20    <properties>
21        <wicket.version>6.12.0</wicket.version>
22        <spring.version>3.2.5.RELEASE</spring.version>
23        <jetty.version>7.6.13.v20130916</jetty.version>
24    </properties>
25    <dependencies>
26        <!-- Intra-project dependencies -->
27        <dependency>
28            <groupId>${project.groupId}</groupId>
29            <artifactId>vlo-commons</artifactId>
30            <version>${project.version}</version>
31        </dependency>
32        <!-- Importer only used in web app for testing -->
33        <dependency>
34            <groupId>${project.groupId}</groupId>
35            <artifactId>vlo-importer</artifactId>
36            <version>${project.version}</version>
37            <scope>test</scope>
38        </dependency>
39       
40        <!--  WICKET DEPENDENCIES -->
41        <dependency>
42            <groupId>org.apache.wicket</groupId>
43            <artifactId>wicket-extensions</artifactId>
44            <version>${wicket.version}</version>
45        </dependency>
46        <!-- This gives us dependency injection and other Spring niceness -->
47        <dependency>
48            <groupId>org.apache.wicket</groupId>
49            <artifactId>wicket-spring</artifactId>
50            <version>${wicket.version}</version>
51        </dependency>
52       
53        <!-- SPRING FRAMEWORK -->
54        <dependency>
55            <groupId>org.springframework</groupId>
56            <artifactId>spring-context</artifactId>
57            <version>${spring.version}</version>
58            <exclusions>
59                <!--
60                    We want Spring to use SLF4J instead (using
61                    jcl-over-slf4j, see below)
62                -->
63                <exclusion>
64                    <groupId>commons-logging</groupId> <!-- aka JCL -->
65                    <artifactId>commons-logging</artifactId>
66                </exclusion>
67            </exclusions>
68        </dependency>
69        <dependency>
70            <groupId>org.springframework</groupId>
71            <artifactId>spring-web</artifactId>
72            <version>${spring.version}</version>
73        </dependency>
74        <dependency>
75            <groupId>org.springframework</groupId>
76            <artifactId>spring-test</artifactId>
77            <version>${spring.version}</version>
78            <scope>test</scope>
79        </dependency>
80       
81        <!-- LOGGING DEPENDENCIES - LOG4J -->
82        <dependency>
83            <groupId>org.slf4j</groupId>
84            <artifactId>slf4j-log4j12</artifactId>
85            <version>${slf4j.version}</version>
86        </dependency>
87        <!-- Make Spring log to SLF4J, too (drop-in replacement for JCL) -->
88        <dependency>
89            <groupId>org.slf4j</groupId>
90            <artifactId>jcl-over-slf4j</artifactId>
91            <version>${slf4j.version}</version>
92        </dependency>
93
94        <!--  JETTY DEPENDENCIES FOR TESTING  -->
95        <dependency>
96            <groupId>org.eclipse.jetty.aggregate</groupId>
97            <artifactId>jetty-all-server</artifactId>
98            <version>${jetty.version}</version>
99            <scope>provided</scope>
100        </dependency>
101        <dependency>
102            <groupId>org.apache.solr</groupId>
103            <artifactId>solr-solrj</artifactId>
104            <version>${solr.version}</version>
105            <type>jar</type>
106        </dependency>
107        <!-- SOLR TESTING -->
108        <dependency>
109            <groupId>org.apache.solr</groupId>
110            <artifactId>solr-test-framework</artifactId>
111            <version>${solr.version}</version>
112            <scope>test</scope>
113            <type>jar</type>
114        </dependency>
115        <dependency>
116            <groupId>org.apache.solr</groupId>
117            <artifactId>solr-core</artifactId>
118            <version>${solr.version}</version>
119            <scope>test</scope>
120            <type>jar</type>
121        </dependency>
122        <!-- JMOCK FOR MOCKING -->
123        <dependency>
124            <groupId>org.jmock</groupId>
125            <artifactId>jmock-junit4</artifactId>
126            <version>2.6.0</version>
127            <scope>test</scope>
128            <exclusions>
129                <exclusion>
130                    <artifactId>junit-dep</artifactId>
131                    <groupId>junit</groupId>
132                </exclusion>
133            </exclusions>
134        </dependency>
135        <dependency>
136            <groupId>com.google.guava</groupId>
137            <artifactId>guava</artifactId>
138            <version>16.0.1</version>
139        </dependency>
140        <dependency>
141            <groupId>net.sf.saxon</groupId>
142            <artifactId>Saxon-HE</artifactId>
143            <version>9.5.1-4</version>
144            <type>jar</type>
145        </dependency>
146    </dependencies>
147   
148    <build>
149        <resources>
150            <resource>
151                <filtering>true</filtering>
152                <directory>src/main/resources</directory>
153            </resource>
154            <resource>
155                <filtering>false</filtering>
156                <directory>src/main/java</directory>
157                <includes>
158                    <include>**</include>
159                </includes>
160                <excludes>
161                    <exclude>**/*.java</exclude>
162                </excludes>
163            </resource>
164        </resources>
165        <testResources>
166            <testResource>
167                <filtering>false</filtering>
168                <directory>src/test/resources</directory>
169            </testResource>
170            <testResource>
171                <filtering>false</filtering>
172                <directory>src/test/java</directory>
173                <includes>
174                    <include>**</include>
175                </includes>
176                <excludes>
177                    <exclude>**/*.java</exclude>
178                </excludes>
179            </testResource>
180        </testResources>
181        <plugins>
182            <plugin>
183                <inherited>true</inherited>
184                <groupId>org.apache.maven.plugins</groupId>
185                <artifactId>maven-compiler-plugin</artifactId>
186                <version>2.5.1</version>
187                <configuration>
188                    <source>1.6</source>
189                    <target>1.6</target>
190                    <encoding>UTF-8</encoding>
191                    <showWarnings>true</showWarnings>
192                    <showDeprecation>true</showDeprecation>
193                </configuration>
194            </plugin>
195            <plugin>
196                <groupId>org.mortbay.jetty</groupId>
197                <artifactId>jetty-maven-plugin</artifactId>
198                <version>${jetty.version}</version>
199                <configuration>
200                    <connectors>
201                        <connector implementation="org.eclipse.jetty.server.nio.SelectChannelConnector">
202                            <port>8080</port>
203                            <maxIdleTime>3600000</maxIdleTime>
204                        </connector>
205                        <connector implementation="org.eclipse.jetty.server.ssl.SslSocketConnector">
206                            <port>8443</port>
207                            <maxIdleTime>3600000</maxIdleTime>
208                            <keystore>${project.build.directory}/test-classes/keystore</keystore>
209                            <password>wicket</password>
210                            <keyPassword>wicket</keyPassword>
211                        </connector>
212                    </connectors>
213                </configuration>
214            </plugin>
215            <plugin>
216                <artifactId>maven-assembly-plugin</artifactId>
217                <version>2.3</version>
218                <configuration>
219                    <descriptors>
220                        <descriptor>src/main/assembly/buildwar.xml</descriptor>
221                    </descriptors>
222                </configuration>
223                <executions>
224                    <execution>
225                        <id>make-assemblyJ</id>
226                        <phase>package</phase>
227                        <goals>
228                            <goal>single</goal>
229                        </goals>
230                    </execution>
231                </executions>
232            </plugin>
233            <plugin>
234                <groupId>com.google.code.maven-svn-revision-number-plugin</groupId>
235                <artifactId>svn-revision-number-maven-plugin</artifactId>
236                <version>1.13</version> <!-- please use the latest version -->
237                <executions>
238                    <execution>
239                        <goals>
240                            <goal>revision</goal>
241                        </goals>
242                    </execution>
243                </executions>
244                <configuration>
245                    <entries>
246                        <entry>
247                            <path>${project.basedir}</path>
248                            <prefix>vlo</prefix>
249                            <depth>infinity</depth>
250                            <reportUnversioned>true</reportUnversioned>
251                            <reportIgnored>false</reportIgnored>
252                            <reportOutOfDate>false</reportOutOfDate>
253                        </entry>
254                    </entries>
255                </configuration>
256            </plugin>
257        </plugins>
258    </build>
259   
260    <reporting>
261        <plugins>
262            <plugin>
263                <groupId>org.codehaus.mojo</groupId>
264                <artifactId>cobertura-maven-plugin</artifactId>
265                <version>2.6</version>
266            </plugin>
267        </plugins>
268    </reporting>
269   
270    <repositories>
271        <repository>
272            <id>Apache Nexus</id>
273            <url>https://repository.apache.org/content/repositories/snapshots/</url>
274            <releases>
275                <enabled>false</enabled>
276            </releases>
277            <snapshots>
278                <enabled>true</enabled>
279            </snapshots>
280        </repository>
281    </repositories>
282</project>
Note: See TracBrowser for help on using the repository browser.