Project

General

Profile

1
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
2
	xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
3
	<modelVersion>4.0.0</modelVersion>
4
	<groupId>edu.ucsb.nceas.metacat.common</groupId>
5
	<artifactId>metacat-common</artifactId>
6
	<packaging>jar</packaging>
7
	<version>1.0-SNAPSHOT</version>
8
	<name>metacat-common</name>
9
	<url>http://maven.apache.org</url>
10
	<dependencies>
11
		<dependency>
12
			<groupId>junit</groupId>
13
			<artifactId>junit</artifactId>
14
			<version>3.8.1</version>
15
			<scope>test</scope>
16
		</dependency>
17
		<dependency>
18
			<groupId>org.apache.solr</groupId>
19
			<artifactId>solr-core</artifactId>
20
			<version>3.4.0</version>
21
		</dependency>
22
		<dependency>
23
			<groupId>org.apache.solr</groupId>
24
			<artifactId>solr-test-framework</artifactId>
25
			<version>3.4.0</version>
26
		</dependency>
27
		<dependency>
28
			<groupId>org.dataone</groupId>
29
			<artifactId>d1_common_java</artifactId>
30
			<version>1.2.0-SNAPSHOT</version>
31
			<type>jar</type>
32
			<!-- exclude extraneous artifacts (jars) -->
33
			<exclusions>
34
		        <exclusion>
35
		          <groupId>org.jibx</groupId>
36
		          <artifactId>jibx-tools</artifactId>
37
		        </exclusion>
38
		        <exclusion>
39
		          <groupId>org.jibx</groupId>
40
		          <artifactId>jibx-schema</artifactId>
41
		        </exclusion>
42
		        <exclusion>
43
		          <groupId>org.jibx</groupId>
44
		          <artifactId>jibx-extras</artifactId>
45
		        </exclusion>
46
		        <exclusion>
47
		          <groupId>org.jibx</groupId>
48
		          <artifactId>jibx-bind</artifactId>
49
		        </exclusion>
50
		        <exclusion>
51
		        	<groupId>org.apache.maven.plugins</groupId>
52
					<artifactId>maven-compiler-plugin</artifactId>
53
		        </exclusion>
54
		        <exclusion>
55
		        	<groupId>org.apache.maven.plugins</groupId>
56
					<artifactId>maven-jar-plugin</artifactId>
57
		        </exclusion>
58
		        <exclusion>
59
		        	<groupId>org.apache.maven.plugins</groupId>
60
					<artifactId>maven-clean-plugin</artifactId>
61
		        </exclusion>
62
		        <exclusion>
63
		        	<groupId>org.jibx</groupId>
64
					<artifactId>maven-jibx-plugin</artifactId>
65
		        </exclusion>
66
			</exclusions>
67
		</dependency>
68
	</dependencies>
69
	<build>
70
		<plugins>
71
			<plugin>
72
				<groupId>org.apache.maven.plugins</groupId>
73
				<artifactId>maven-compiler-plugin</artifactId>
74
				<version>2.3</version>
75
				<configuration>
76
					<source>1.6</source>
77
					<target>1.6</target>
78
				</configuration>
79
			</plugin>
80
		</plugins>
81
	</build>
82
</project>
    (1-1/1)