Revision 7704
Added by ben leinfelder over 11 years ago
metacat-common/pom.xml | ||
---|---|---|
29 | 29 |
<artifactId>d1_common_java</artifactId> |
30 | 30 |
<version>1.2.0-SNAPSHOT</version> |
31 | 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> |
|
32 | 67 |
</dependency> |
33 | 68 |
</dependencies> |
34 | 69 |
</project> |
pom.xml | ||
---|---|---|
32 | 32 |
<name>OpenGeo Maven Repository</name> |
33 | 33 |
<url>http://repo.opengeo.org</url> |
34 | 34 |
</repository> |
35 |
|
|
36 | 35 |
</repositories> |
37 | 36 |
<dependencies> |
37 |
<dependency> |
|
38 |
<groupId>edu.ucsb.nceas.metacat.common</groupId> |
|
39 |
<artifactId>metacat-common</artifactId> |
|
40 |
<version>1.0-SNAPSHOT</version> |
|
41 |
<type>jar</type> |
|
42 |
<!-- exclude extraneous artifacts (jars) --> |
|
43 |
<exclusions> |
|
44 |
<exclusion> |
|
45 |
<groupId>org.jibx</groupId> |
|
46 |
<artifactId>jibx-tools</artifactId> |
|
47 |
</exclusion> |
|
48 |
<exclusion> |
|
49 |
<groupId>org.jibx</groupId> |
|
50 |
<artifactId>jibx-schema</artifactId> |
|
51 |
</exclusion> |
|
52 |
<exclusion> |
|
53 |
<groupId>org.jibx</groupId> |
|
54 |
<artifactId>jibx-extras</artifactId> |
|
55 |
</exclusion> |
|
56 |
<exclusion> |
|
57 |
<groupId>org.jibx</groupId> |
|
58 |
<artifactId>jibx-bind</artifactId> |
|
59 |
</exclusion> |
|
60 |
<exclusion> |
|
61 |
<groupId>org.apache.maven.plugins</groupId> |
|
62 |
<artifactId>maven-compiler-plugin</artifactId> |
|
63 |
</exclusion> |
|
64 |
<exclusion> |
|
65 |
<groupId>org.apache.maven.plugins</groupId> |
|
66 |
<artifactId>maven-jar-plugin</artifactId> |
|
67 |
</exclusion> |
|
68 |
<exclusion> |
|
69 |
<groupId>org.apache.maven.plugins</groupId> |
|
70 |
<artifactId>maven-clean-plugin</artifactId> |
|
71 |
</exclusion> |
|
72 |
<exclusion> |
|
73 |
<groupId>org.jibx</groupId> |
|
74 |
<artifactId>maven-jibx-plugin</artifactId> |
|
75 |
</exclusion> |
|
76 |
</exclusions> |
|
77 |
</dependency> |
|
38 | 78 |
<dependency> |
39 | 79 |
<groupId>org.dataone</groupId> |
40 | 80 |
<artifactId>d1_libclient_java</artifactId> |
41 | 81 |
<version>${d1_libclient_version}</version> |
42 | 82 |
<type>jar</type> |
43 |
<scope>runtime</scope>
|
|
83 |
<scope>runtime</scope> |
|
44 | 84 |
<!-- exclude extraneous artifacts (jars) --> |
45 | 85 |
<exclusions> |
46 | 86 |
<exclusion> |
... | ... | |
195 | 235 |
<artifactId>xercesImpl</artifactId> |
196 | 236 |
<version>2.7.1</version> |
197 | 237 |
</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 | 238 |
</dependencies> |
205 | 239 |
</project> |
Also available in: Unified diff
exclude jibx-tools, maven cruft and org.eclipse "dependencies" to cut down on the number of jar files in the lib folder.