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.index</groupId>
5
	<artifactId>metacat-index</artifactId>
6
	<packaging>war</packaging>
7
	<version>1.0-SNAPSHOT</version>
8
	<name>metacat-index</name>
9
	<url>http://maven.apache.org</url>
10

    
11
	<repositories>
12
		<repository>
13
			<id>dataone.org</id>
14
			<url>http://dev-testing.dataone.org/maven</url>
15
			<releases>
16
				<enabled>true</enabled>
17
			</releases>
18
			<snapshots>
19
				<enabled>true</enabled>
20
			</snapshots>
21
		</repository>
22
	</repositories>
23

    
24
	<dependencies>
25
		<dependency>
26
			<groupId>junit</groupId>
27
			<artifactId>junit</artifactId>
28
			<version>4.7</version>
29
			<type>jar</type>
30
			<scope>test</scope>
31
		</dependency>
32
		<dependency>
33
			<groupId>org.dataone</groupId>
34
			<artifactId>d1_cn_index_processor</artifactId>
35
			<version>1.2.0-SNAPSHOT</version>
36
			<type>jar</type>
37
			<exclusions>
38
				<exclusion>
39
					<groupId>org.slf4j</groupId>
40
					<artifactId>slf4j-log4j12</artifactId>
41
				</exclusion>
42
			</exclusions>
43
		</dependency>
44
		<dependency>
45
			<groupId>edu.ucsb.nceas.metacat.common</groupId>
46
			<artifactId>metacat-common</artifactId>
47
			<version>1.0-SNAPSHOT</version>
48
			<type>jar</type>
49
		</dependency>
50
		<dependency>
51
			<groupId>javax.servlet</groupId>
52
			<artifactId>servlet-api</artifactId>
53
			<version>2.5</version>
54
			<type>jar</type>
55
			<scope>provided</scope>
56
		</dependency>
57
	</dependencies>
58

    
59
	<build>
60
		<plugins>
61
		
62
			<plugin>
63
				<artifactId>maven-failsafe-plugin</artifactId>
64
				<version>2.6</version>
65
				<executions>
66
					<execution>
67
						<goals>
68
							<goal>integration-test</goal>
69
							<goal>verify</goal>
70
						</goals>
71
					</execution>
72
				</executions>
73
			</plugin>
74

    
75
		</plugins>
76
	</build>
77

    
78
</project>
    (1-1/1)