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.1.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>1.3.0-SNAPSHOT</d1_libclient_version>
14
        <d1_common_java_version>1.2.0-SNAPSHOT</d1_common_java_version>
15
    </properties>
16
    <repositories>
17
        <repository>
18
			<id>dataone.org</id>
19
			<url>http://dev-testing.dataone.org/maven</url>
20
			<releases>
21
				<enabled>true</enabled>
22
			</releases>
23
			<snapshots>
24
				<enabled>true</enabled>
25
			</snapshots>
26
		</repository>
27
        <repository>
28
            <snapshots>
29
                <enabled>true</enabled>
30
            </snapshots>
31
            <id>opengeo</id>
32
            <name>OpenGeo Maven Repository</name>
33
            <url>http://repo.opengeo.org</url>
34
        </repository>
35
    </repositories>
36
    <dependencies>
37
    	<dependency>
38
            <groupId>edu.ucsb.nceas.metacat.common</groupId>
39
            <artifactId>metacat-common</artifactId>
40
            <version>1.0-SNAPSHOT</version>
41
            <type>jar</type>
42
            <!-- exclude extraneous artifacts (jars) -->
43
			<exclusions>
44
		        <exclusion>
45
		          <groupId>org.jibx</groupId>
46
		          <artifactId>jibx-tools</artifactId>
47
		        </exclusion>
48
		        <exclusion>
49
		          <groupId>org.jibx</groupId>
50
		          <artifactId>jibx-schema</artifactId>
51
		        </exclusion>
52
		        <exclusion>
53
		          <groupId>org.jibx</groupId>
54
		          <artifactId>jibx-extras</artifactId>
55
		        </exclusion>
56
		        <exclusion>
57
		          <groupId>org.jibx</groupId>
58
		          <artifactId>jibx-bind</artifactId>
59
		        </exclusion>
60
		        <exclusion>
61
		        	<groupId>org.apache.maven.plugins</groupId>
62
					<artifactId>maven-compiler-plugin</artifactId>
63
		        </exclusion>
64
		        <exclusion>
65
		        	<groupId>org.apache.maven.plugins</groupId>
66
					<artifactId>maven-jar-plugin</artifactId>
67
		        </exclusion>
68
		        <exclusion>
69
		        	<groupId>org.apache.maven.plugins</groupId>
70
					<artifactId>maven-clean-plugin</artifactId>
71
		        </exclusion>
72
		        <exclusion>
73
		        	<groupId>org.jibx</groupId>
74
					<artifactId>maven-jibx-plugin</artifactId>
75
		        </exclusion>
76
			</exclusions>
77
        </dependency>
78
		<dependency>
79
			<groupId>org.dataone</groupId>
80
			<artifactId>d1_libclient_java</artifactId>
81
			<version>${d1_libclient_version}</version>
82
			<type>jar</type>
83
			<scope>runtime</scope>		
84
			<!-- exclude extraneous artifacts (jars) -->
85
			<exclusions>
86
		        <exclusion>
87
		          <groupId>org.jibx</groupId>
88
		          <artifactId>jibx-tools</artifactId>
89
		        </exclusion>
90
		        <exclusion>
91
		          <groupId>org.jibx</groupId>
92
		          <artifactId>jibx-schema</artifactId>
93
		        </exclusion>
94
		        <exclusion>
95
		          <groupId>org.jibx</groupId>
96
		          <artifactId>jibx-extras</artifactId>
97
		        </exclusion>
98
		        <exclusion>
99
		          <groupId>org.jibx</groupId>
100
		          <artifactId>jibx-bind</artifactId>
101
		        </exclusion>
102
		        <exclusion>
103
		        	<groupId>org.apache.maven.plugins</groupId>
104
					<artifactId>maven-compiler-plugin</artifactId>
105
		        </exclusion>
106
		        <exclusion>
107
		        	<groupId>org.apache.maven.plugins</groupId>
108
					<artifactId>maven-jar-plugin</artifactId>
109
		        </exclusion>
110
		        <exclusion>
111
		        	<groupId>org.apache.maven.plugins</groupId>
112
					<artifactId>maven-clean-plugin</artifactId>
113
		        </exclusion>
114
		        <exclusion>
115
		        	<groupId>org.jibx</groupId>
116
					<artifactId>maven-jibx-plugin</artifactId>
117
		        </exclusion>
118
		        <!-- TODO: refine the JCS requirements -->
119
		        <exclusion>
120
		        	<groupId>berkeleydb</groupId>
121
      				<artifactId>berkeleydb</artifactId>
122
		        </exclusion>
123
		        <exclusion>
124
		        	<groupId>mysql</groupId>
125
      				<artifactId>mysql-connector-java</artifactId>
126
		        </exclusion>
127
		        <exclusion>
128
		        	<groupId>hsqldb</groupId>
129
					<artifactId>hsqldb</artifactId>
130
		        </exclusion>
131
		        <exclusion>
132
					<groupId>xml-apis</groupId>
133
					<artifactId>xml-apis</artifactId>
134
		        </exclusion>
135
		        <exclusion>
136
		        	<groupId>junit</groupId>
137
					<artifactId>junit</artifactId>
138
		        </exclusion>
139
		        <exclusion>
140
					<groupId>xerces</groupId>
141
					<artifactId>xercesImpl</artifactId>
142
		        </exclusion>
143
			</exclusions>
144
		</dependency>
145
		<!-- geotools -->
146
		<dependency>
147
            <groupId>org.geotools</groupId>
148
			<artifactId>gt-api</artifactId>
149
			<version>2.6.4</version>
150
		</dependency>
151
		<dependency>
152
            <groupId>org.geotools</groupId>
153
			<artifactId>gt-data</artifactId>
154
			<version>2.6.4</version>
155
		</dependency>
156
		<dependency>
157
            <groupId>org.geotools</groupId>
158
			<artifactId>gt-shapefile</artifactId>
159
			<version>2.6.4</version>
160
		</dependency>
161
		<dependency>
162
        	<groupId>com.servlets</groupId>
163
        	<artifactId>cos</artifactId>
164
        	<version>05Nov2002</version>
165
		</dependency>
166
		<dependency>
167
			<groupId>com.hazelcast</groupId>
168
			<artifactId>hazelcast</artifactId>
169
			<version>2.4.1</version>
170
		</dependency>
171
		<dependency>
172
        	<groupId>net.sf.opencsv</groupId>
173
        	<artifactId>opencsv</artifactId>
174
        	<version>1.8</version>
175
		</dependency>
176
		<dependency>
177
    		<groupId>org.apache.wicket</groupId>
178
    		<artifactId>wicket-core</artifactId>
179
			<version>6.7.0</version>
180
		</dependency>
181
		<dependency>
182
			<groupId>postgresql</groupId>
183
			<artifactId>postgresql</artifactId>
184
			<version>8.0-312.jdbc3</version>
185
		</dependency>
186
		<dependency>
187
			<groupId>org.apache.solr</groupId>
188
			<artifactId>solr-core</artifactId>
189
			<version>3.4.0</version>
190
		</dependency>
191
		<dependency>
192
			<groupId>org.apache.solr</groupId>
193
			<artifactId>solr-solrj</artifactId>
194
			<version>3.4.0</version>
195
			<exclusions>
196
				<exclusion>
197
		        	<groupId>junit</groupId>
198
					<artifactId>junit</artifactId>
199
		        </exclusion>
200
			</exclusions>
201
		</dependency>
202
		<dependency>
203
			<groupId>commons-io</groupId>
204
			<artifactId>commons-io</artifactId>
205
			<version>2.0</version>
206
		</dependency>
207
		<dependency>
208
      		<groupId>org.dspace</groupId>
209
			<artifactId>oaicat</artifactId>
210
			<version>1.5.48</version>
211
		</dependency>
212
		<dependency>
213
			<groupId>org.quartz-scheduler</groupId>
214
			<artifactId>quartz</artifactId>
215
			<version>1.7.2</version>
216
		</dependency>
217
		<dependency>
218
			<groupId>org.apache.axis</groupId>
219
			<artifactId>axis</artifactId>
220
			<version>1.4</version>
221
		</dependency>
222
		<dependency>
223
			<groupId>javax.xml</groupId>
224
			<artifactId>jaxrpc-api</artifactId>
225
			<version>1.1</version>
226
		</dependency>
227
		<dependency>
228
			<groupId>junit</groupId>
229
			<artifactId>junit</artifactId>
230
			<version>4.8.2</version>
231
		</dependency>
232
		<!-- require newer xercesImpl -->
233
		<dependency>
234
			<groupId>xerces</groupId>
235
			<artifactId>xercesImpl</artifactId>
236
			<version>2.7.1</version>
237
		</dependency>
238
    </dependencies>
239
</project>
(6-6/7)