Project

General

Profile

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