Project

General

Profile

Download (3.33 KB) Statistics
| Branch: | Tag: | Revision:
1
<?xml version="1.0" encoding="UTF-8"?>
2
<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
	<parent>
4
		<groupId>eu.etaxonomy</groupId>
5
		<artifactId>taxeditor-parent</artifactId>
6
		<version>3.0.11.201206271847</version>
7
	</parent>
8
	<modelVersion>4.0.0</modelVersion>
9
	<artifactId>eu.etaxonomy.taxeditor.cdmlib</artifactId>
10
	<packaging>eclipse-plugin</packaging>
11
	<name>CDM Library Dependencies Plugin</name>
12
	<description>CDM Library and dependencies as a plugin</description>
13
	<build>
14
		<plugins>
15
			<plugin>
16
				<groupId>org.apache.maven.plugins</groupId>
17
				<artifactId>maven-dependency-plugin</artifactId>
18
				<version>2.4</version>
19
				<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
					<execution>
35
			            <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
			              <failOnMissingClassifierArtifact>false</failOnMissingClassifierArtifact>
48
			            </configuration>
49
		          </execution>
50
				</executions>
51
			</plugin>
52
		</plugins>
53
	</build>
54
	<dependencies>
55
		<dependency>
56
			<groupId>eu.etaxonomy</groupId>
57
			<artifactId>cdmlib-commons</artifactId>
58
			<version>${cdmlib.version}</version>
59
		</dependency>
60
		<dependency>
61
			<groupId>eu.etaxonomy</groupId>
62
			<artifactId>cdmlib-model</artifactId>
63
			<version>${cdmlib.version}</version>
64
		</dependency>
65
		<dependency>
66
			<groupId>eu.etaxonomy</groupId>
67
			<artifactId>cdmlib-persistence</artifactId>
68
			<version>${cdmlib.version}</version>
69
		</dependency>
70
		<dependency>
71
			<groupId>eu.etaxonomy</groupId>
72
			<artifactId>cdmlib-remote</artifactId>
73
			<version>${cdmlib.version}</version>
74
		</dependency>
75
		<dependency>
76
			<groupId>eu.etaxonomy</groupId>
77
			<artifactId>cdmlib-print</artifactId>
78
			<version>${cdmlib.version}</version>
79
		</dependency>
80
		<dependency>
81
			<groupId>eu.etaxonomy</groupId>
82
			<artifactId>cdmlib-services</artifactId>
83
			<version>${cdmlib.version}</version>
84
		</dependency>
85
		<dependency>
86
			<groupId>eu.etaxonomy</groupId>
87
			<artifactId>cdmlib-io</artifactId>
88
			<version>${cdmlib.version}</version>
89
		</dependency>
90
		<dependency>
91
			<groupId>eu.etaxonomy</groupId>
92
			<artifactId>cdmlib-ext</artifactId>
93
			<version>${cdmlib.version}</version>
94
		</dependency>
95
	</dependencies>
96
</project>
(5-5/5)