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.2.1</d1_libclient_version>
14
        <d1_common_java_version>1.1.1</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
        
36
    </repositories>
37
    <dependencies>
38
		<dependency>
39
			<groupId>org.dataone</groupId>
40
			<artifactId>d1_libclient_java</artifactId>
41
			<version>${d1_libclient_version}</version>
42
			<type>jar</type>
43
			<scope>runtime</scope>			
44
			<!-- exclude extraneous artifacts (jars) -->
45
			<exclusions>
46
		        <exclusion>
47
		          <groupId>org.jibx</groupId>
48
		          <artifactId>jibx-tools</artifactId>
49
		        </exclusion>
50
		        <exclusion>
51
		          <groupId>org.jibx</groupId>
52
		          <artifactId>jibx-schema</artifactId>
53
		        </exclusion>
54
		        <exclusion>
55
		          <groupId>org.jibx</groupId>
56
		          <artifactId>jibx-extras</artifactId>
57
		        </exclusion>
58
		        <exclusion>
59
		          <groupId>org.jibx</groupId>
60
		          <artifactId>jibx-bind</artifactId>
61
		        </exclusion>
62
		        <exclusion>
63
		        	<groupId>org.apache.maven.plugins</groupId>
64
					<artifactId>maven-compiler-plugin</artifactId>
65
		        </exclusion>
66
		        <exclusion>
67
		        	<groupId>org.apache.maven.plugins</groupId>
68
					<artifactId>maven-jar-plugin</artifactId>
69
		        </exclusion>
70
		        <exclusion>
71
		        	<groupId>org.apache.maven.plugins</groupId>
72
					<artifactId>maven-clean-plugin</artifactId>
73
		        </exclusion>
74
		        <exclusion>
75
		        	<groupId>org.jibx</groupId>
76
					<artifactId>maven-jibx-plugin</artifactId>
77
		        </exclusion>
78
		        <!-- TODO: refine the JCS requirements -->
79
		        <exclusion>
80
		        	<groupId>berkeleydb</groupId>
81
      				<artifactId>berkeleydb</artifactId>
82
		        </exclusion>
83
		        <exclusion>
84
		        	<groupId>mysql</groupId>
85
      				<artifactId>mysql-connector-java</artifactId>
86
		        </exclusion>
87
		        <exclusion>
88
		        	<groupId>hsqldb</groupId>
89
					<artifactId>hsqldb</artifactId>
90
		        </exclusion>
91
		        <exclusion>
92
					<groupId>xml-apis</groupId>
93
					<artifactId>xml-apis</artifactId>
94
		        </exclusion>
95
		        <exclusion>
96
		        	<groupId>junit</groupId>
97
					<artifactId>junit</artifactId>
98
		        </exclusion>
99
		        <exclusion>
100
					<groupId>xerces</groupId>
101
					<artifactId>xercesImpl</artifactId>
102
		        </exclusion>
103
			</exclusions>
104
		</dependency>
105
		<!-- geotools -->
106
		<dependency>
107
            <groupId>org.geotools</groupId>
108
			<artifactId>gt-api</artifactId>
109
			<version>2.6.4</version>
110
		</dependency>
111
		<dependency>
112
            <groupId>org.geotools</groupId>
113
			<artifactId>gt-data</artifactId>
114
			<version>2.6.4</version>
115
		</dependency>
116
		<dependency>
117
            <groupId>org.geotools</groupId>
118
			<artifactId>gt-shapefile</artifactId>
119
			<version>2.6.4</version>
120
		</dependency>
121
		<dependency>
122
        	<groupId>com.servlets</groupId>
123
        	<artifactId>cos</artifactId>
124
        	<version>05Nov2002</version>
125
		</dependency>
126
		<dependency>
127
			<groupId>com.hazelcast</groupId>
128
			<artifactId>hazelcast</artifactId>
129
			<version>2.4.1</version>
130
		</dependency>
131
		<dependency>
132
        	<groupId>net.sf.opencsv</groupId>
133
        	<artifactId>opencsv</artifactId>
134
        	<version>1.8</version>
135
		</dependency>
136
		<dependency>
137
    		<groupId>org.apache.wicket</groupId>
138
    		<artifactId>wicket-core</artifactId>
139
			<version>6.7.0</version>
140
		</dependency>
141
		<dependency>
142
			<groupId>postgresql</groupId>
143
			<artifactId>postgresql</artifactId>
144
			<version>8.0-312.jdbc3</version>
145
		</dependency>
146
		<dependency>
147
			<groupId>org.apache.solr</groupId>
148
			<artifactId>solr-core</artifactId>
149
			<version>3.4.0</version>
150
		</dependency>
151
		<dependency>
152
			<groupId>org.apache.solr</groupId>
153
			<artifactId>solr-solrj</artifactId>
154
			<version>3.4.0</version>
155
			<exclusions>
156
				<exclusion>
157
		        	<groupId>junit</groupId>
158
					<artifactId>junit</artifactId>
159
		        </exclusion>
160
			</exclusions>
161
		</dependency>
162
		<dependency>
163
			<groupId>commons-io</groupId>
164
			<artifactId>commons-io</artifactId>
165
			<version>2.0</version>
166
		</dependency>
167
		<dependency>
168
      		<groupId>org.dspace</groupId>
169
			<artifactId>oaicat</artifactId>
170
			<version>1.5.48</version>
171
		</dependency>
172
		<dependency>
173
			<groupId>org.quartz-scheduler</groupId>
174
			<artifactId>quartz</artifactId>
175
			<version>1.7.2</version>
176
		</dependency>
177
		<dependency>
178
			<groupId>org.apache.axis</groupId>
179
			<artifactId>axis</artifactId>
180
			<version>1.4</version>
181
		</dependency>
182
		<dependency>
183
			<groupId>javax.xml</groupId>
184
			<artifactId>jaxrpc-api</artifactId>
185
			<version>1.1</version>
186
		</dependency>
187
		<dependency>
188
			<groupId>junit</groupId>
189
			<artifactId>junit</artifactId>
190
			<version>4.8.2</version>
191
		</dependency>
192
		<!-- require newer xercesImpl -->
193
		<dependency>
194
			<groupId>xerces</groupId>
195
			<artifactId>xercesImpl</artifactId>
196
			<version>2.7.1</version>
197
		</dependency>
198
		<dependency>
199
            <groupId>edu.ucsb.nceas.metacat.common</groupId>
200
            <artifactId>metacat-common</artifactId>
201
            <version>1.0-SNAPSHOT</version>
202
            <type>jar</type>
203
        </dependency>
204
    </dependencies>
205
</project>
(6-6/7)