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>edu.ucsb.nceas.metacat.common</groupId>
34
			<artifactId>metacat-common</artifactId>
35
			<version>1.0-SNAPSHOT</version>
36
			<type>jar</type>
37
		</dependency>
38
		<dependency>
39
			<groupId>javax.servlet</groupId>
40
			<artifactId>servlet-api</artifactId>
41
			<version>2.5</version>
42
			<type>jar</type>
43
			<scope>provided</scope>
44
		</dependency>
45
		 <dependency>
46
        <groupId>org.dataone</groupId>
47
        <artifactId>d1_cn_index_processor</artifactId>
48
        <version>1.2.0-SNAPSHOT</version>
49
        <type>jar</type>
50
        <exclusions>
51
                <exclusion>
52
                    <groupId>org.slf4j</groupId>
53
                    <artifactId>slf4j-log4j12</artifactId>
54
                </exclusion>
55
        </exclusions>
56
        </dependency>
57
		
58
	</dependencies>
59

    
60
	<build>
61
		<plugins>
62
			<plugin>
63
				<groupId>org.apache.maven.plugins</groupId>
64
				<artifactId>maven-compiler-plugin</artifactId>
65
				<version>2.3</version>
66
				<configuration>
67
					<source>1.6</source>
68
					<target>1.6</target>
69
				</configuration>
70
			</plugin>
71
		
72
			<plugin>
73
				<artifactId>maven-failsafe-plugin</artifactId>
74
				<version>2.6</version>
75
				<executions>
76
					<execution>
77
						<goals>
78
							<goal>integration-test</goal>
79
							<goal>verify</goal>
80
						</goals>
81
					</execution>
82
				</executions>
83
			</plugin>
84

    
85
		</plugins>
86
	</build>
87

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