Project

General

Profile

Download (3.89 KB) Statistics
| Branch: | Tag: | Revision:
1 203d4dca n.hoffmann
<?xml version="1.0" encoding="UTF-8"?>
2 4d1c677b n.hoffmann
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
3 203d4dca n.hoffmann
	<parent>
4
		<groupId>eu.etaxonomy</groupId>
5
		<artifactId>taxeditor-parent</artifactId>
6 2a964240 Cherian Mathew
		<version>3.1.0.201211061120</version>
7 203d4dca n.hoffmann
	</parent>
8
	<modelVersion>4.0.0</modelVersion>
9 a49c25e1 n.hoffmann
	<artifactId>eu.etaxonomy.taxeditor.cdmlib</artifactId>
10 b6f47468 n.hoffmann
	<packaging>eclipse-plugin</packaging>
11 76129b16 n.hoffmann
	<name>CDM Library Dependencies Plugin</name>
12
	<description>CDM Library and dependencies as a plugin</description>
13 312d8e90 n.hoffmann
	<build>
14 b6f47468 n.hoffmann
		<plugins>
15
			<plugin>
16
				<groupId>org.apache.maven.plugins</groupId>
17 4d1c677b n.hoffmann
				<artifactId>maven-dependency-plugin</artifactId>
18 466ff5ee n.hoffmann
				<version>2.4</version>
19 4d1c677b n.hoffmann
				<executions>
20
					<execution>
21
						<id>copy-dependencies</id>
22
						<phase>validate</phase>
23
						<goals>
24
							<goal>copy-dependencies</goal>
25
						</goals>
26
						<configuration>
27
							<excludeArtifactIds>junit,log4j,unitils</excludeArtifactIds>
28
							<outputDirectory>lib</outputDirectory>
29
							<overWriteReleases>true</overWriteReleases>
30
							<overWriteSnapshots>true</overWriteSnapshots>
31
							<excludeTransitive>true</excludeTransitive>
32
						</configuration>
33
					</execution>
34 466ff5ee n.hoffmann
					<execution>
35 4d1c677b n.hoffmann
			            <id>copy-dependencies-sources</id>
36
			            <phase>validate</phase>
37
			            <goals>
38
			              <goal>copy-dependencies</goal>
39
			            </goals>
40
			            <configuration>
41
			              <classifier>sources</classifier>
42
			              <excludeArtifactIds>junit,log4j,unitils</excludeArtifactIds>
43
			              <outputDirectory>lib</outputDirectory>
44
			              <overWriteReleases>true</overWriteReleases>
45
			              <overWriteSnapshots>true</overWriteSnapshots>
46
			              <excludeTransitive>true</excludeTransitive>
47 466ff5ee n.hoffmann
			              <failOnMissingClassifierArtifact>false</failOnMissingClassifierArtifact>
48 4d1c677b n.hoffmann
			            </configuration>
49 466ff5ee n.hoffmann
		          </execution>
50 4d1c677b n.hoffmann
				</executions>
51 b6f47468 n.hoffmann
			</plugin>
52 4d1c677b n.hoffmann
		</plugins>
53
	</build>
54 312d8e90 n.hoffmann
	<dependencies>
55 75b33001 Cherian Mathew
	    <dependency>
56
            <groupId>identificationKeyAPI</groupId>
57
            <artifactId>identificationKeyAPI</artifactId>
58
            <version>1.0-SNAPSHOT</version>
59
        </dependency>
60 312d8e90 n.hoffmann
		<dependency>
61
			<groupId>eu.etaxonomy</groupId>
62
			<artifactId>cdmlib-commons</artifactId>
63 b6f47468 n.hoffmann
			<version>${cdmlib.version}</version>
64 312d8e90 n.hoffmann
		</dependency>
65
		<dependency>
66
			<groupId>eu.etaxonomy</groupId>
67
			<artifactId>cdmlib-model</artifactId>
68 b6f47468 n.hoffmann
			<version>${cdmlib.version}</version>
69 312d8e90 n.hoffmann
		</dependency>
70
		<dependency>
71
			<groupId>eu.etaxonomy</groupId>
72
			<artifactId>cdmlib-persistence</artifactId>
73 b6f47468 n.hoffmann
			<version>${cdmlib.version}</version>
74 312d8e90 n.hoffmann
		</dependency>
75
		<dependency>
76
			<groupId>eu.etaxonomy</groupId>
77
			<artifactId>cdmlib-remote</artifactId>
78 b6f47468 n.hoffmann
			<version>${cdmlib.version}</version>
79 312d8e90 n.hoffmann
		</dependency>
80
		<dependency>
81
			<groupId>eu.etaxonomy</groupId>
82
			<artifactId>cdmlib-print</artifactId>
83 b6f47468 n.hoffmann
			<version>${cdmlib.version}</version>
84 312d8e90 n.hoffmann
		</dependency>
85
		<dependency>
86
			<groupId>eu.etaxonomy</groupId>
87
			<artifactId>cdmlib-services</artifactId>
88 b6f47468 n.hoffmann
			<version>${cdmlib.version}</version>
89 312d8e90 n.hoffmann
		</dependency>
90
		<dependency>
91
			<groupId>eu.etaxonomy</groupId>
92
			<artifactId>cdmlib-io</artifactId>
93 b6f47468 n.hoffmann
			<version>${cdmlib.version}</version>
94 312d8e90 n.hoffmann
		</dependency>
95
		<dependency>
96
			<groupId>eu.etaxonomy</groupId>
97
			<artifactId>cdmlib-ext</artifactId>
98 b6f47468 n.hoffmann
			<version>${cdmlib.version}</version>
99 312d8e90 n.hoffmann
		</dependency>
100 bb23a637 Andreas Kohlbecker
        <!--  for ikey-plus 
101
        	TODO this should not be needed but the utils class contained  in this jar 
102
        	seems to be loaded as bean by spring
103
        -->
104
        <dependency>
105
            <groupId>identificationKeyAPI</groupId>
106
            <artifactId>identificationKeyAPI</artifactId>
107
            <version>1.0-SNAPSHOT</version>
108
        </dependency>
109 312d8e90 n.hoffmann
	</dependencies>
110 4d1c677b n.hoffmann
</project>