1 |
7628
|
tao
|
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
2 |
7702
|
leinfelder
|
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 |
7804
|
tao
|
<repositories>
|
11 |
|
|
<repository>
|
12 |
|
|
<id>dataone.org</id>
|
13 |
|
|
<url>http://dev-testing.dataone.org/maven</url>
|
14 |
|
|
<releases>
|
15 |
|
|
<enabled>true</enabled>
|
16 |
|
|
</releases>
|
17 |
|
|
<snapshots>
|
18 |
|
|
<enabled>true</enabled>
|
19 |
|
|
</snapshots>
|
20 |
|
|
</repository>
|
21 |
|
|
</repositories>
|
22 |
7702
|
leinfelder
|
<dependencies>
|
23 |
|
|
<dependency>
|
24 |
|
|
<groupId>junit</groupId>
|
25 |
|
|
<artifactId>junit</artifactId>
|
26 |
7758
|
tao
|
<version>4.8.2</version>
|
27 |
7702
|
leinfelder
|
<scope>test</scope>
|
28 |
|
|
</dependency>
|
29 |
|
|
<dependency>
|
30 |
|
|
<groupId>org.apache.solr</groupId>
|
31 |
|
|
<artifactId>solr-core</artifactId>
|
32 |
|
|
<version>3.4.0</version>
|
33 |
|
|
</dependency>
|
34 |
|
|
<dependency>
|
35 |
|
|
<groupId>org.apache.solr</groupId>
|
36 |
|
|
<artifactId>solr-test-framework</artifactId>
|
37 |
|
|
<version>3.4.0</version>
|
38 |
|
|
</dependency>
|
39 |
|
|
<dependency>
|
40 |
7716
|
tao
|
<groupId>org.dataone</groupId>
|
41 |
|
|
<artifactId>d1_common_java</artifactId>
|
42 |
|
|
<version>1.2.0-SNAPSHOT</version>
|
43 |
|
|
<type>jar</type>
|
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 |
|
|
</exclusions>
|
79 |
|
|
</dependency>
|
80 |
7702
|
leinfelder
|
</dependencies>
|
81 |
7738
|
leinfelder
|
<build>
|
82 |
|
|
<plugins>
|
83 |
|
|
<plugin>
|
84 |
|
|
<groupId>org.apache.maven.plugins</groupId>
|
85 |
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
86 |
|
|
<version>2.3</version>
|
87 |
|
|
<configuration>
|
88 |
|
|
<source>1.6</source>
|
89 |
|
|
<target>1.6</target>
|
90 |
|
|
</configuration>
|
91 |
|
|
</plugin>
|
92 |
|
|
</plugins>
|
93 |
|
|
</build>
|
94 |
7628
|
tao
|
</project>
|