source: vlo/branches/to-wicket-1.6-twagoo/vlo_importer/pom.xml @ 4212

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

Branched off keeloo's wicket-6 conversion branch.
Applied a number of fixes to make code properly compilable, runnable (app still doesn't start properly).
To be merged back with keeloo's work.

File size: 6.4 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>MPI</id>
101            <name>MPI LAT Repository</name>
102            <url>http://lux15.mpi.nl/nexus/content/groups/public</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>commons-lang</groupId>
119            <artifactId>commons-lang</artifactId>
120            <version>2.3</version>
121        </dependency>
122        <dependency>
123            <groupId>org.slf4j</groupId>
124            <artifactId>slf4j-api</artifactId>
125            <version>1.6.1</version>
126        </dependency>
127        <dependency>
128            <groupId>org.slf4j</groupId>
129            <artifactId>slf4j-log4j12</artifactId>
130            <version>1.6.1</version>
131        </dependency>
132        <dependency>
133            <groupId>log4j</groupId>
134            <artifactId>log4j</artifactId>
135            <version>1.2.14</version>
136        </dependency>
137        <dependency>
138            <groupId>junit</groupId>
139            <artifactId>junit</artifactId>
140            <version>4.6</version>
141            <scope>test</scope>
142        </dependency>
143        <dependency>
144            <groupId>javax.servlet</groupId>
145            <artifactId>servlet-api</artifactId>
146            <version>2.5</version>
147            <scope>provided</scope>
148        </dependency>
149        <dependency>
150            <groupId>org.mortbay.jetty</groupId>
151            <artifactId>jetty</artifactId>
152            <version>6.1.4</version>
153            <scope>test</scope>
154        </dependency>
155        <dependency>
156            <groupId>org.mortbay.jetty</groupId>
157            <artifactId>jetty-util</artifactId>
158            <version>6.1.4</version>
159            <scope>test</scope>
160        </dependency>
161        <dependency>
162            <groupId>org.mortbay.jetty</groupId>
163            <artifactId>jetty-management</artifactId>
164            <version>6.1.4</version>
165            <scope>test</scope>
166        </dependency>
167        <dependency>
168            <groupId>com.ximpleware</groupId>
169            <artifactId>vtd-xml</artifactId>
170            <version>2.10</version>
171        </dependency>           
172        <dependency>
173            <groupId>net.sf.json-lib</groupId>
174            <artifactId>json-lib</artifactId>
175            <version>2.4</version>
176            <classifier>jdk15</classifier>
177        </dependency>
178        <dependency>
179            <groupId>net.sf.saxon</groupId>
180            <artifactId>Saxon-HE</artifactId>
181            <version>9.4</version>
182        </dependency>
183        <dependency>
184            <groupId>org.simpleframework</groupId>
185            <artifactId>simple-xml</artifactId>
186            <version>2.4.1</version>
187        </dependency>
188        <dependency>
189            <groupId>commons-cli</groupId>
190            <artifactId>commons-cli</artifactId>
191            <version>1.2</version>
192            <type>jar</type>
193        </dependency>
194    </dependencies>
195
196</project>
Note: See TracBrowser for help on using the repository browser.