Project

General

Profile

1 7622 leinfelder
<?xml version="1.0" encoding="UTF-8"?>
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/xsd/maven-4.0.0.xsd">
4
    <modelVersion>4.0.0</modelVersion>
5
    <groupId>org.ecoinformatics</groupId>
6
    <artifactId>metacat</artifactId>
7 8688 leinfelder
    <version>2.4.2-SNAPSHOT</version>
8 7622 leinfelder
    <name>metacat</name>
9
    <packaging>war</packaging>
10
    <url>http://maven.apache.org</url>
11
    <properties>
12
        <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
13 8758 leinfelder
        <d1_libclient_version>1.4.0-SNAPSHOT</d1_libclient_version>
14
        <d1_portal_version>1.3.0-SNAPSHOT</d1_portal_version>
15 8688 leinfelder
        <metacat_common_version>2.4.2-SNAPSHOT</metacat_common_version>
16 7622 leinfelder
    </properties>
17
    <repositories>
18
        <repository>
19
			<id>dataone.org</id>
20
			<url>http://dev-testing.dataone.org/maven</url>
21
			<releases>
22
				<enabled>true</enabled>
23
			</releases>
24
			<snapshots>
25
				<enabled>true</enabled>
26
			</snapshots>
27
		</repository>
28
        <repository>
29
            <snapshots>
30
                <enabled>true</enabled>
31
            </snapshots>
32
            <id>opengeo</id>
33
            <name>OpenGeo Maven Repository</name>
34
            <url>http://repo.opengeo.org</url>
35
        </repository>
36
    </repositories>
37
    <dependencies>
38 7704 leinfelder
    	<dependency>
39 8803 leinfelder
			<groupId>edu.ucsb.nceas</groupId>
40
			<artifactId>utilities</artifactId>
41
			<version>2.0.0-SNAPSHOT</version>
42 8800 leinfelder
		</dependency>
43
    	<dependency>
44 7850 leinfelder
    		<groupId>gov.loc</groupId>
45
			<artifactId>bagit</artifactId>
46
			<version>4.4</version>
47
			<type>jar</type>
48
			<exclusions>
49
				<exclusion>
50
					<groupId>xml-apis</groupId>
51
					<artifactId>xml-apis</artifactId>
52
		        </exclusion>
53
		        <exclusion>
54
					<groupId>org.apache.httpcomponents</groupId>
55
					<artifactId>httpclient</artifactId>
56
		        </exclusion>
57
		        <exclusion>
58
		        	<groupId>org.apache.httpcomponents</groupId>
59
    				<artifactId>httpmime</artifactId>
60
		        </exclusion>
61
		        <exclusion>
62
					<groupId>commons-codec</groupId>
63
					<artifactId>commons-codec</artifactId>
64
		        </exclusion>
65
			</exclusions>
66
    	</dependency>
67
    	<dependency>
68 7737 leinfelder
            <artifactId>d1_portal</artifactId>
69
            <groupId>org.dataone</groupId>
70
            <version>${d1_portal_version}</version>
71
            <type>jar</type>
72
            <!-- exclude extraneous artifacts (jars) -->
73
			<exclusions>
74
		        <exclusion>
75
		          <groupId>org.jibx</groupId>
76
		          <artifactId>jibx-tools</artifactId>
77
		        </exclusion>
78
		        <exclusion>
79
		          <groupId>org.jibx</groupId>
80
		          <artifactId>jibx-schema</artifactId>
81
		        </exclusion>
82
		        <exclusion>
83
		          <groupId>org.jibx</groupId>
84
		          <artifactId>jibx-extras</artifactId>
85
		        </exclusion>
86
		        <exclusion>
87
		          <groupId>org.jibx</groupId>
88
		          <artifactId>jibx-bind</artifactId>
89
		        </exclusion>
90
		        <exclusion>
91
		        	<groupId>org.apache.maven.plugins</groupId>
92
					<artifactId>maven-compiler-plugin</artifactId>
93
		        </exclusion>
94
		        <exclusion>
95
		        	<groupId>org.apache.maven.plugins</groupId>
96
					<artifactId>maven-jar-plugin</artifactId>
97
		        </exclusion>
98
		        <exclusion>
99
		        	<groupId>org.apache.maven.plugins</groupId>
100
					<artifactId>maven-clean-plugin</artifactId>
101
		        </exclusion>
102
		        <exclusion>
103
		        	<groupId>org.jibx</groupId>
104
					<artifactId>maven-jibx-plugin</artifactId>
105
		        </exclusion>
106
			</exclusions>
107
        </dependency>
108
    	<dependency>
109 7704 leinfelder
            <groupId>edu.ucsb.nceas.metacat.common</groupId>
110
            <artifactId>metacat-common</artifactId>
111 8106 leinfelder
            <version>${metacat_common_version}</version>
112 7704 leinfelder
            <type>jar</type>
113
            <!-- exclude extraneous artifacts (jars) -->
114
			<exclusions>
115
		        <exclusion>
116
		          <groupId>org.jibx</groupId>
117
		          <artifactId>jibx-tools</artifactId>
118
		        </exclusion>
119
		        <exclusion>
120
		          <groupId>org.jibx</groupId>
121
		          <artifactId>jibx-schema</artifactId>
122
		        </exclusion>
123
		        <exclusion>
124
		          <groupId>org.jibx</groupId>
125
		          <artifactId>jibx-extras</artifactId>
126
		        </exclusion>
127
		        <exclusion>
128
		          <groupId>org.jibx</groupId>
129
		          <artifactId>jibx-bind</artifactId>
130
		        </exclusion>
131
		        <exclusion>
132
		        	<groupId>org.apache.maven.plugins</groupId>
133
					<artifactId>maven-compiler-plugin</artifactId>
134
		        </exclusion>
135
		        <exclusion>
136
		        	<groupId>org.apache.maven.plugins</groupId>
137
					<artifactId>maven-jar-plugin</artifactId>
138
		        </exclusion>
139
		        <exclusion>
140
		        	<groupId>org.apache.maven.plugins</groupId>
141
					<artifactId>maven-clean-plugin</artifactId>
142
		        </exclusion>
143
		        <exclusion>
144
		        	<groupId>org.jibx</groupId>
145
					<artifactId>maven-jibx-plugin</artifactId>
146
		        </exclusion>
147
			</exclusions>
148
        </dependency>
149 7622 leinfelder
		<dependency>
150
			<groupId>org.dataone</groupId>
151
			<artifactId>d1_libclient_java</artifactId>
152
			<version>${d1_libclient_version}</version>
153
			<type>jar</type>
154 7704 leinfelder
			<scope>runtime</scope>
155 7622 leinfelder
			<!-- exclude extraneous artifacts (jars) -->
156
			<exclusions>
157
		        <exclusion>
158
		          <groupId>org.jibx</groupId>
159
		          <artifactId>jibx-tools</artifactId>
160
		        </exclusion>
161
		        <exclusion>
162
		          <groupId>org.jibx</groupId>
163
		          <artifactId>jibx-schema</artifactId>
164
		        </exclusion>
165
		        <exclusion>
166
		          <groupId>org.jibx</groupId>
167
		          <artifactId>jibx-extras</artifactId>
168
		        </exclusion>
169
		        <exclusion>
170
		          <groupId>org.jibx</groupId>
171
		          <artifactId>jibx-bind</artifactId>
172
		        </exclusion>
173
		        <exclusion>
174
		        	<groupId>org.apache.maven.plugins</groupId>
175
					<artifactId>maven-compiler-plugin</artifactId>
176
		        </exclusion>
177
		        <exclusion>
178
		        	<groupId>org.apache.maven.plugins</groupId>
179
					<artifactId>maven-jar-plugin</artifactId>
180
		        </exclusion>
181
		        <exclusion>
182
		        	<groupId>org.apache.maven.plugins</groupId>
183
					<artifactId>maven-clean-plugin</artifactId>
184
		        </exclusion>
185
		        <exclusion>
186
		        	<groupId>org.jibx</groupId>
187
					<artifactId>maven-jibx-plugin</artifactId>
188
		        </exclusion>
189
		        <!-- TODO: refine the JCS requirements -->
190
		        <exclusion>
191
		        	<groupId>berkeleydb</groupId>
192
      				<artifactId>berkeleydb</artifactId>
193
		        </exclusion>
194
		        <exclusion>
195
		        	<groupId>mysql</groupId>
196
      				<artifactId>mysql-connector-java</artifactId>
197
		        </exclusion>
198
		        <exclusion>
199
		        	<groupId>hsqldb</groupId>
200
					<artifactId>hsqldb</artifactId>
201
		        </exclusion>
202
		        <exclusion>
203
					<groupId>xml-apis</groupId>
204
					<artifactId>xml-apis</artifactId>
205
		        </exclusion>
206
		        <exclusion>
207
		        	<groupId>junit</groupId>
208
					<artifactId>junit</artifactId>
209
		        </exclusion>
210 7666 leinfelder
		        <exclusion>
211
					<groupId>xerces</groupId>
212
					<artifactId>xercesImpl</artifactId>
213
		        </exclusion>
214 8758 leinfelder
		        <exclusion>
215
					<groupId>com.hp.hpl.jena</groupId>
216
					<artifactId>jena</artifactId>
217
				</exclusion>
218 7622 leinfelder
			</exclusions>
219
		</dependency>
220 8602 leinfelder
		<dependency>
221
			<groupId>edu.ucsb.nceas</groupId>
222
			<artifactId>ezid</artifactId>
223 8758 leinfelder
			<version>1.0.1-SNAPSHOT</version>
224 8602 leinfelder
		</dependency>
225 7622 leinfelder
		<!-- geotools -->
226
		<dependency>
227
            <groupId>org.geotools</groupId>
228
			<artifactId>gt-api</artifactId>
229
			<version>2.6.4</version>
230
		</dependency>
231
		<dependency>
232
            <groupId>org.geotools</groupId>
233
			<artifactId>gt-data</artifactId>
234
			<version>2.6.4</version>
235
		</dependency>
236
		<dependency>
237
            <groupId>org.geotools</groupId>
238
			<artifactId>gt-shapefile</artifactId>
239
			<version>2.6.4</version>
240
		</dependency>
241
		<dependency>
242
        	<groupId>com.servlets</groupId>
243
        	<artifactId>cos</artifactId>
244
        	<version>05Nov2002</version>
245
		</dependency>
246
		<dependency>
247
			<groupId>com.hazelcast</groupId>
248
			<artifactId>hazelcast</artifactId>
249
			<version>2.4.1</version>
250
		</dependency>
251
		<dependency>
252
        	<groupId>net.sf.opencsv</groupId>
253
        	<artifactId>opencsv</artifactId>
254
        	<version>1.8</version>
255
		</dependency>
256
		<dependency>
257
    		<groupId>org.apache.wicket</groupId>
258
    		<artifactId>wicket-core</artifactId>
259
			<version>6.7.0</version>
260 8333 tao
			<exclusions>
261
                <exclusion>
262
                  <groupId>org.slf4j</groupId>
263
                  <artifactId>slf4j-api</artifactId>
264
                </exclusion>
265
            </exclusions>
266 7622 leinfelder
		</dependency>
267
		<dependency>
268
			<groupId>postgresql</groupId>
269
			<artifactId>postgresql</artifactId>
270
			<version>8.0-312.jdbc3</version>
271
		</dependency>
272 8333 tao
		<!-- <dependency>
273 7622 leinfelder
			<groupId>org.apache.solr</groupId>
274
			<artifactId>solr-core</artifactId>
275
			<version>3.4.0</version>
276 8333 tao
		</dependency>-->
277 7622 leinfelder
		<dependency>
278
			<groupId>org.apache.solr</groupId>
279
			<artifactId>solr-solrj</artifactId>
280
			<version>3.4.0</version>
281
			<exclusions>
282
				<exclusion>
283
		        	<groupId>junit</groupId>
284
					<artifactId>junit</artifactId>
285
		        </exclusion>
286 8333 tao
		        <exclusion>
287
                  <groupId>org.slf4j</groupId>
288
                  <artifactId>slf4j-jdk</artifactId>
289
                </exclusion>
290 7622 leinfelder
			</exclusions>
291
		</dependency>
292
		<dependency>
293
			<groupId>commons-io</groupId>
294
			<artifactId>commons-io</artifactId>
295
			<version>2.0</version>
296
		</dependency>
297
		<dependency>
298
      		<groupId>org.dspace</groupId>
299
			<artifactId>oaicat</artifactId>
300
			<version>1.5.48</version>
301
		</dependency>
302
		<dependency>
303
			<groupId>org.quartz-scheduler</groupId>
304
			<artifactId>quartz</artifactId>
305
			<version>1.7.2</version>
306
		</dependency>
307
		<dependency>
308
			<groupId>org.apache.axis</groupId>
309
			<artifactId>axis</artifactId>
310
			<version>1.4</version>
311
		</dependency>
312
		<dependency>
313
			<groupId>javax.xml</groupId>
314
			<artifactId>jaxrpc-api</artifactId>
315
			<version>1.1</version>
316
		</dependency>
317
		<dependency>
318
			<groupId>junit</groupId>
319
			<artifactId>junit</artifactId>
320
			<version>4.8.2</version>
321
		</dependency>
322 7666 leinfelder
		<!-- require newer xercesImpl -->
323 7632 tao
		<dependency>
324 7666 leinfelder
			<groupId>xerces</groupId>
325
			<artifactId>xercesImpl</artifactId>
326
			<version>2.7.1</version>
327
		</dependency>
328 8417 tao
		<dependency>
329
            <groupId>commons-jxpath</groupId>
330
            <artifactId>commons-jxpath</artifactId>
331
            <version>1.3</version>
332
        </dependency>
333 8467 tao
        <dependency>
334
            <groupId>org.mindrot</groupId>
335
            <artifactId>jbcrypt</artifactId>
336
            <version>0.3m</version>
337
        </dependency>
338 8758 leinfelder
        <!-- jena tdb -->
339
        <dependency>
340
			<groupId>org.apache.jena</groupId>
341
			<artifactId>jena-tdb</artifactId>
342
			<version>1.0.0</version>
343
		</dependency>
344 7622 leinfelder
    </dependencies>
345
</project>