source: vlo/trunk/vlo_webapp/pom.xml @ 1831

Last change on this file since 1831 was 1831, checked in by herste, 12 years ago

fixy fixy

File size: 6.0 KB
Line 
1
2<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
4    <modelVersion>4.0.0</modelVersion>
5    <groupId>eu.clarin.cmdi</groupId>
6    <artifactId>vlo</artifactId>
7    <packaging>${packaging}</packaging>
8    <version>2.5-SNAPSHOT</version>
9    <name>VirtualLanguageObservatory</name>
10    <description></description>
11    <dependencies>
12        <dependency>
13            <groupId>eu.clarin.cmdi</groupId>
14            <artifactId>vlo_solr</artifactId>
15            <version>1.4.2</version>
16        </dependency>
17        <dependency>
18            <groupId>net.handle</groupId>
19            <artifactId>handle-client</artifactId>
20            <version>7.0</version>
21        </dependency>
22        <dependency>
23            <groupId>org.apache.solr</groupId>
24            <artifactId>solr-solrj</artifactId>
25            <version>1.4.1</version>
26        </dependency>
27        <dependency>
28            <groupId>org.apache.wicket</groupId>
29            <artifactId>wicket</artifactId>
30            <version>1.4.8</version>
31        </dependency>
32        <dependency>
33            <groupId>org.apache.wicket</groupId>
34            <artifactId>wicket-extensions</artifactId>
35            <version>1.4.8</version>
36        </dependency>
37        <dependency>
38            <groupId>com.55minutes</groupId>
39            <artifactId>fiftyfive-wicket</artifactId>
40            <version>2.0.5</version>
41        </dependency>
42        <dependency>
43            <groupId>commons-lang</groupId>
44            <artifactId>commons-lang</artifactId>
45            <version>2.3</version>
46        </dependency>
47        <dependency>
48            <groupId>org.slf4j</groupId>
49            <artifactId>slf4j-api</artifactId>
50            <version>1.6.1</version>
51        </dependency>
52        <dependency>
53            <groupId>org.slf4j</groupId>
54            <artifactId>slf4j-log4j12</artifactId>
55            <version>1.6.1</version>
56        </dependency>
57        <dependency>
58            <groupId>log4j</groupId>
59            <artifactId>log4j</artifactId>
60            <version>1.2.14</version>
61        </dependency>
62        <dependency>
63            <groupId>junit</groupId>
64            <artifactId>junit</artifactId>
65            <version>4.6</version>
66            <scope>test</scope>
67        </dependency>
68        <dependency>
69            <groupId>javax.servlet</groupId>
70            <artifactId>servlet-api</artifactId>
71            <version>2.5</version>
72            <scope>provided</scope>
73        </dependency>
74        <dependency>
75            <groupId>org.mortbay.jetty</groupId>
76            <artifactId>jetty</artifactId>
77            <version>6.1.4</version>
78            <scope>test</scope>
79        </dependency>
80        <dependency>
81            <groupId>org.mortbay.jetty</groupId>
82            <artifactId>jetty-util</artifactId>
83            <version>6.1.4</version>
84            <scope>test</scope>
85        </dependency>
86        <dependency>
87            <groupId>org.mortbay.jetty</groupId>
88            <artifactId>jetty-management</artifactId>
89            <version>6.1.4</version>
90            <scope>test</scope>
91        </dependency>
92        <dependency>
93            <groupId>org.springframework</groupId>
94            <artifactId>spring-context</artifactId>
95            <version>2.5.6</version>
96        </dependency>
97        <dependency>
98            <groupId>org.springframework</groupId>
99            <artifactId>spring-web</artifactId>
100            <version>2.5.6</version>
101        </dependency>
102        <dependency>
103            <groupId>com.ximpleware</groupId>
104            <artifactId>vtd-xml</artifactId>
105            <version>2.10</version>
106        </dependency>
107    </dependencies>
108
109    <properties>
110        <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
111        <packaging>war</packaging>
112    </properties>
113
114    <build>
115        <resources>
116            <resource>
117                <filtering>true</filtering>
118                <directory>src/main/resources</directory>
119            </resource>
120            <resource>
121                <filtering>false</filtering>
122                <directory>src/main/java</directory>
123                <includes>
124                    <include>**/*.html</include>
125                    <include>**/*.properties</include>
126                </includes>
127            </resource>
128        </resources>
129        <testResources>
130            <testResource>
131                <directory>src/test/resources</directory>
132            </testResource>
133        </testResources>
134        <plugins>
135            <plugin>
136                <groupId>org.apache.maven.plugins</groupId>
137                <artifactId>maven-compiler-plugin</artifactId>
138                <configuration>
139                    <source>1.6</source>
140                    <target>1.6</target>
141                </configuration>
142            </plugin>
143            <!--
144              Assembly helper to create the Importer tool a command line tool which can help fill in a solr server with cmdi
145              files. Build the tool with: mvn -Dpackaging=jar -Dmaven.test.skip=true assembly:assembly This creates in
146              "target" a vlo_solr-1.0-SNAPSHOT-Importer directory with a bin and share directory. You can start the tool from
147              the bin dir.
148            -->
149            <plugin>
150                <groupId>org.apache.maven.plugins</groupId>
151                <artifactId>maven-assembly-plugin</artifactId>
152                <configuration>
153                    <attach>false</attach>
154                    <ignoreDirFormatExtensions>true</ignoreDirFormatExtensions>
155                    <descriptors>
156                        <descriptor>src/main/assembly/importer.xml</descriptor>
157                    </descriptors>
158                </configuration>
159            </plugin>
160        </plugins>
161    </build>
162
163    <repositories>
164        <repository>
165            <id>55Minutes_wicket</id>
166            <name>55Minutes opensource wicket extensions</name>
167            <url>http://opensource.55minutes.com/maven/</url>
168        </repository>
169    </repositories>
170
171
172</project>
Note: See TracBrowser for help on using the repository browser.