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

Last change on this file since 4582 was 4582, checked in by twagoo, 10 years ago

refactored construction of facet panels, both in facets panel and single collections facet panel

File size: 9.1 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    </dependencies>
141   
142    <build>
143        <resources>
144            <resource>
145                <filtering>false</filtering>
146                <directory>src/main/resources</directory>
147            </resource>
148            <resource>
149                <filtering>false</filtering>
150                <directory>src/main/java</directory>
151                <includes>
152                    <include>**</include>
153                </includes>
154                <excludes>
155                    <exclude>**/*.java</exclude>
156                </excludes>
157            </resource>
158        </resources>
159        <testResources>
160            <testResource>
161                <filtering>false</filtering>
162                <directory>src/test/resources</directory>
163            </testResource>
164            <testResource>
165                <filtering>false</filtering>
166                <directory>src/test/java</directory>
167                <includes>
168                    <include>**</include>
169                </includes>
170                <excludes>
171                    <exclude>**/*.java</exclude>
172                </excludes>
173            </testResource>
174        </testResources>
175        <plugins>
176            <plugin>
177                <inherited>true</inherited>
178                <groupId>org.apache.maven.plugins</groupId>
179                <artifactId>maven-compiler-plugin</artifactId>
180                <version>2.5.1</version>
181                <configuration>
182                    <source>1.6</source>
183                    <target>1.6</target>
184                    <encoding>UTF-8</encoding>
185                    <showWarnings>true</showWarnings>
186                    <showDeprecation>true</showDeprecation>
187                </configuration>
188            </plugin>
189            <plugin>
190                <groupId>org.mortbay.jetty</groupId>
191                <artifactId>jetty-maven-plugin</artifactId>
192                <version>${jetty.version}</version>
193                <configuration>
194                    <connectors>
195                        <connector implementation="org.eclipse.jetty.server.nio.SelectChannelConnector">
196                            <port>8080</port>
197                            <maxIdleTime>3600000</maxIdleTime>
198                        </connector>
199                        <connector implementation="org.eclipse.jetty.server.ssl.SslSocketConnector">
200                            <port>8443</port>
201                            <maxIdleTime>3600000</maxIdleTime>
202                            <keystore>${project.build.directory}/test-classes/keystore</keystore>
203                            <password>wicket</password>
204                            <keyPassword>wicket</keyPassword>
205                        </connector>
206                    </connectors>
207                </configuration>
208            </plugin>
209            <plugin>
210                <artifactId>maven-assembly-plugin</artifactId>
211                <version>2.3</version>
212                <configuration>
213                    <descriptors>
214                        <descriptor>src/main/assembly/buildwar.xml</descriptor>
215                    </descriptors>
216                </configuration>
217                <executions>
218                    <execution>
219                        <id>make-assemblyJ</id>
220                        <phase>package</phase>
221                        <goals>
222                            <goal>single</goal>
223                        </goals>
224                    </execution>
225                </executions>
226            </plugin>
227        </plugins>
228    </build>
229   
230    <reporting>
231        <plugins>
232            <plugin>
233                <groupId>org.codehaus.mojo</groupId>
234                <artifactId>cobertura-maven-plugin</artifactId>
235                <version>2.6</version>
236            </plugin>
237        </plugins>
238    </reporting>
239   
240    <repositories>
241        <repository>
242            <id>Apache Nexus</id>
243            <url>https://repository.apache.org/content/repositories/snapshots/</url>
244            <releases>
245                <enabled>false</enabled>
246            </releases>
247            <snapshots>
248                <enabled>true</enabled>
249            </snapshots>
250        </repository>
251    </repositories>
252</project>
Note: See TracBrowser for help on using the repository browser.