source: vlo/branches/vlo-2.13-param/vlo_webapp/pom.xml @ 2577

Last change on this file since 2577 was 2577, checked in by keeloo, 11 years ago

Set version to 2.13, the cutting edge release for March. Also removed the WebAppParam? class; servlet parameters are retrieved from with in the WebAppConfig? class.

File size: 9.3 KB
Line 
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>eu.clarin.cmdi</groupId>
5    <artifactId>vlo</artifactId>
6    <packaging>${packaging}</packaging>
7
8    <!-- When updating the version number here, also update
9    vlo_solr_importer.sh in src/main/bin and the version number
10    in the parent's pom.xml -->
11    <version>2.13</version>
12    <name>VirtualLanguageObservatory</name>
13    <description></description>
14
15    <properties>
16        <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
17        <packaging>war</packaging>
18        <netbeans.hint.deploy.server>Tomcat</netbeans.hint.deploy.server>
19    </properties>
20
21    <build>
22        <resources>
23            <resource>
24                <filtering>true</filtering>
25                <directory>src/main/resources</directory>
26            </resource>
27            <resource>
28                <filtering>false</filtering>
29                <directory>src/main/java</directory>
30                <includes>
31                    <include>**/*.html</include>
32                    <include>**/*.properties</include>
33                </includes>
34            </resource>
35        </resources>
36        <testResources>
37            <testResource>
38                <directory>src/test/resources</directory>
39            </testResource>
40        </testResources>
41        <plugins>
42            <plugin>
43                <groupId>org.apache.maven.plugins</groupId>
44                <artifactId>maven-compiler-plugin</artifactId>
45                <version>2.3.2</version>
46                <configuration>
47                    <source>1.6</source>
48                    <target>1.6</target>
49                </configuration>
50            </plugin>
51            <!--<plugin>
52                <groupId>org.apache.maven.plugins</groupId>
53                <artifactId>maven-jar-plugin</artifactId>
54                <executions>
55                    <execution>
56                        <id>make-a-jar</id>
57                        <phase>compile</phase>
58                        <goals>
59                            <goal>jar</goal>
60                        </goals>
61                    </execution>
62                </executions>
63                <configuration>
64                    <classesDirectory>target/classes</classesDirectory>
65                    <includes>
66                        <include>**/*</include>
67                    </includes>
68                    <archive>
69                        <index>false</index>
70                        <manifest>
71                            <addClasspath>true</addClasspath>
72                            <classpathPrefix>. lib/</classpathPrefix>
73                            <mainClass>eu.clarin.cmdi.vlo.importer.MetadataImporter</mainClass>
74                        </manifest>
75                    </archive>
76                </configuration>
77            </plugin>-->
78            <!--<plugin>
79                <groupId>org.apache.maven.plugins</groupId>
80                <artifactId>maven-dependency-plugin</artifactId>
81                <executions>
82                    <execution>
83                        <id>copy-dependencies</id>
84                        <phase>prepare-package</phase>
85                        <goals>
86                            <goal>copy-dependencies</goal>
87                        </goals>
88                        <configuration>
89                            <outputDirectory>${project.build.directory}/lib</outputDirectory>
90                            <overWriteReleases>false</overWriteReleases>
91                            <overWriteSnapshots>false</overWriteSnapshots>
92                            <overWriteIfNewer>true</overWriteIfNewer>
93                        </configuration>
94                    </execution>
95                </executions>
96            </plugin>-->
97            <!--<plugin>
98                <artifactId>maven-assembly-plugin</artifactId>
99                <version>2.3</version>
100                <configuration>
101                    <descriptors>
102                        <descriptor>src/main/assembly/buildwar.xml</descriptor>
103                    </descriptors>
104                </configuration>
105                <executions>
106                    <execution>
107                        <id>make-assemblyW</id>
108                        <phase>package</phase>
109                        <goals>
110                            <goal>single</goal>
111                        </goals>
112                    </execution>
113                </executions>
114            </plugin>-->
115            <!-- NOTE: Run importer from jar file with -cp .:$filename.jar eu.clarin.cmdi.vlo.importer.MetadataImporter -->
116            <plugin>
117                <artifactId>maven-assembly-plugin</artifactId>
118                <version>2.3</version>
119                <configuration>
120                    <descriptors>
121                        <descriptor>src/main/assembly/buildjar.xml</descriptor>
122                    </descriptors>
123                </configuration>
124                <executions>
125                    <execution>
126                        <id>make-assemblyJ</id>
127                        <phase>package</phase>
128                        <goals>
129                            <goal>single</goal>
130                        </goals>
131                    </execution>
132                </executions>
133            </plugin>
134        </plugins>
135    </build>
136
137    <repositories>
138        <repository>
139            <id>55Minutes_wicket</id>
140            <name>55Minutes opensource wicket extensions</name>
141            <url>http://opensource.55minutes.com/maven/</url>
142        </repository>
143    </repositories>
144
145    <dependencies>
146            <dependency>
147            <groupId>net.handle</groupId>
148            <artifactId>handle-client</artifactId>
149            <version>7.0</version>
150        </dependency>
151        <dependency>
152            <groupId>org.apache.solr</groupId>
153            <artifactId>solr-solrj</artifactId>
154            <version>3.6.0</version>
155        </dependency>
156        <dependency>
157            <groupId>org.apache.wicket</groupId>
158            <artifactId>wicket</artifactId>
159            <version>1.4.8</version>
160        </dependency>
161        <dependency>
162            <groupId>org.apache.wicket</groupId>
163            <artifactId>wicket-extensions</artifactId>
164            <version>1.4.8</version>
165        </dependency>
166        <dependency>
167            <groupId>com.55minutes</groupId>
168            <artifactId>fiftyfive-wicket</artifactId>
169            <version>2.0.5</version>
170        </dependency>
171        <dependency>
172            <groupId>commons-lang</groupId>
173            <artifactId>commons-lang</artifactId>
174            <version>2.3</version>
175        </dependency>
176        <dependency>
177            <groupId>org.slf4j</groupId>
178            <artifactId>slf4j-api</artifactId>
179            <version>1.6.1</version>
180        </dependency>
181        <dependency>
182            <groupId>org.slf4j</groupId>
183            <artifactId>slf4j-log4j12</artifactId>
184            <version>1.6.1</version>
185        </dependency>
186        <dependency>
187            <groupId>log4j</groupId>
188            <artifactId>log4j</artifactId>
189            <version>1.2.14</version>
190        </dependency>
191        <dependency>
192            <groupId>junit</groupId>
193            <artifactId>junit</artifactId>
194            <version>4.6</version>
195            <scope>test</scope>
196        </dependency>
197        <dependency>
198            <groupId>javax.servlet</groupId>
199            <artifactId>servlet-api</artifactId>
200            <version>2.5</version>
201            <scope>provided</scope>
202        </dependency>
203        <dependency>
204            <groupId>org.mortbay.jetty</groupId>
205            <artifactId>jetty</artifactId>
206            <version>6.1.4</version>
207            <scope>test</scope>
208        </dependency>
209        <dependency>
210            <groupId>org.mortbay.jetty</groupId>
211            <artifactId>jetty-util</artifactId>
212            <version>6.1.4</version>
213            <scope>test</scope>
214        </dependency>
215        <dependency>
216            <groupId>org.mortbay.jetty</groupId>
217            <artifactId>jetty-management</artifactId>
218            <version>6.1.4</version>
219            <scope>test</scope>
220        </dependency>
221        <dependency>
222            <groupId>org.springframework</groupId>
223            <artifactId>spring-context</artifactId>
224            <version>2.5.6</version>
225        </dependency>
226        <dependency>
227            <groupId>org.springframework</groupId>
228            <artifactId>spring-web</artifactId>
229            <version>2.5.6</version>
230        </dependency>
231        <dependency>
232            <groupId>com.ximpleware</groupId>
233            <artifactId>vtd-xml</artifactId>
234            <version>2.10</version>
235        </dependency>           
236        <dependency>
237            <groupId>net.sf.json-lib</groupId>
238            <artifactId>json-lib</artifactId>
239            <version>2.4</version>
240            <classifier>jdk15</classifier>
241        </dependency>
242        <dependency>
243            <groupId>net.sf.saxon</groupId>
244            <artifactId>Saxon-HE</artifactId>
245            <version>9.4</version>
246        </dependency>
247        <dependency>
248            <groupId>org.simpleframework</groupId>
249            <artifactId>simple-xml</artifactId>
250            <version>2.4.1</version>
251        </dependency>
252    </dependencies>
253
254
255</project>
Note: See TracBrowser for help on using the repository browser.