source: vlo/trunk/vlo_importer/pom.xml @ 4019

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

Added language filter parameter (array)

File size: 7.0 KB
Line 
1<project xmlns="http://maven.apache.org/POM/4.0.0" 
2         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
5>
6    <modelVersion>4.0.0</modelVersion>
7
8    <groupId>eu.clarin.cmdi</groupId>
9
10    <artifactId>vlo_importer</artifactId> 
11
12    <packaging>jar</packaging>
13
14    <version>2.18</version>
15    <name>vlo_importer</name>
16    <description></description>
17
18    <properties>
19        <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
20        <packaging>jar</packaging>
21        <netbeans.hint.deploy.server>Tomcat</netbeans.hint.deploy.server>
22    </properties>
23
24    <build>
25        <resources>
26            <resource>
27                <filtering>true</filtering>
28                <directory>src/main/resources</directory>
29                <includes>
30                    <include>log4j.properties</include>
31                    <include>**/*.xml</include>                   
32                </includes>
33            </resource>
34            <resource>
35                <filtering>false</filtering>
36                <directory>src/main/java</directory>
37                <includes>
38                    <include>**/*.html</include>
39                </includes>
40            </resource>
41        </resources>
42       
43        <plugins>
44           
45            <!-- add the remote resources plugin to make the cmdi2xhtml.xsl
46                 file available to the web application. For more information
47                 on this plugin, please refer the Apache Maven Project website
48                 
49                 Check: this seems to be at archive level, not packaging
50            -->
51            <plugin>
52                <artifactId>maven-remote-resources-plugin</artifactId>
53                <version>1.4</version>
54                <executions>
55                    <execution>
56                        <goals>
57                            <goal>bundle</goal>
58                        </goals>
59                    </execution>
60                </executions>
61                <configuration>
62                    <includes>
63                        <include>**/*.xsl</include>
64                    </includes>
65                </configuration>
66            </plugin>
67 
68            <plugin>
69                <groupId>org.apache.maven.plugins</groupId>
70                <artifactId>maven-compiler-plugin</artifactId>
71                <version>2.3.2</version>
72                <configuration>
73                    <source>1.6</source>
74                    <target>1.6</target>
75                </configuration>
76            </plugin>
77            <plugin>
78                <artifactId>maven-assembly-plugin</artifactId>
79                <version>2.3</version>
80                <configuration>
81                    <descriptors>
82                        <descriptor>src/main/assembly/buildjar.xml</descriptor>
83                    </descriptors>
84                </configuration>
85                <executions>
86                    <execution>
87                        <id>make-assemblyJ</id>
88                        <phase>package</phase>
89                        <goals>
90                            <goal>single</goal>
91                        </goals>
92                    </execution>
93                </executions>
94            </plugin>
95        </plugins>
96    </build>
97
98    <repositories>
99        <repository>
100            <id>55Minutes_wicket</id>
101            <name>55Minutes opensource wicket extensions</name>
102            <url>http://opensource.55minutes.com/maven/</url>
103        </repository>
104    </repositories>
105
106    <dependencies>
107            <dependency>
108            <groupId>net.handle</groupId>
109            <artifactId>handle-client</artifactId>
110            <version>7.0</version>
111        </dependency>
112        <dependency>
113            <groupId>org.apache.solr</groupId>
114            <artifactId>solr-solrj</artifactId>
115            <version>3.6.0</version>
116        </dependency>
117        <dependency>
118            <groupId>org.apache.wicket</groupId>
119            <artifactId>wicket</artifactId>
120            <version>1.4.8</version>
121        </dependency>
122        <dependency>
123            <groupId>org.apache.wicket</groupId>
124            <artifactId>wicket-extensions</artifactId>
125            <version>1.4.8</version>
126        </dependency>
127        <dependency>
128            <groupId>com.55minutes</groupId>
129            <artifactId>fiftyfive-wicket</artifactId>
130            <version>2.0.5</version>
131        </dependency>
132        <dependency>
133            <groupId>commons-lang</groupId>
134            <artifactId>commons-lang</artifactId>
135            <version>2.3</version>
136        </dependency>
137        <dependency>
138            <groupId>org.slf4j</groupId>
139            <artifactId>slf4j-api</artifactId>
140            <version>1.6.1</version>
141        </dependency>
142        <dependency>
143            <groupId>org.slf4j</groupId>
144            <artifactId>slf4j-log4j12</artifactId>
145            <version>1.6.1</version>
146        </dependency>
147        <dependency>
148            <groupId>log4j</groupId>
149            <artifactId>log4j</artifactId>
150            <version>1.2.14</version>
151        </dependency>
152        <dependency>
153            <groupId>junit</groupId>
154            <artifactId>junit</artifactId>
155            <version>4.6</version>
156            <scope>test</scope>
157        </dependency>
158        <dependency>
159            <groupId>javax.servlet</groupId>
160            <artifactId>servlet-api</artifactId>
161            <version>2.5</version>
162            <scope>provided</scope>
163        </dependency>
164        <dependency>
165            <groupId>org.mortbay.jetty</groupId>
166            <artifactId>jetty</artifactId>
167            <version>6.1.4</version>
168            <scope>test</scope>
169        </dependency>
170        <dependency>
171            <groupId>org.mortbay.jetty</groupId>
172            <artifactId>jetty-util</artifactId>
173            <version>6.1.4</version>
174            <scope>test</scope>
175        </dependency>
176        <dependency>
177            <groupId>org.mortbay.jetty</groupId>
178            <artifactId>jetty-management</artifactId>
179            <version>6.1.4</version>
180            <scope>test</scope>
181        </dependency>
182        <dependency>
183            <groupId>com.ximpleware</groupId>
184            <artifactId>vtd-xml</artifactId>
185            <version>2.10</version>
186        </dependency>           
187        <dependency>
188            <groupId>net.sf.json-lib</groupId>
189            <artifactId>json-lib</artifactId>
190            <version>2.4</version>
191            <classifier>jdk15</classifier>
192        </dependency>
193        <dependency>
194            <groupId>net.sf.saxon</groupId>
195            <artifactId>Saxon-HE</artifactId>
196            <version>9.4</version>
197        </dependency>
198        <dependency>
199            <groupId>org.simpleframework</groupId>
200            <artifactId>simple-xml</artifactId>
201            <version>2.4.1</version>
202        </dependency>
203        <dependency>
204            <groupId>commons-cli</groupId>
205            <artifactId>commons-cli</artifactId>
206            <version>1.2</version>
207            <type>jar</type>
208        </dependency>
209    </dependencies>
210
211</project>
Note: See TracBrowser for help on using the repository browser.