7bcd944239e8aabb92bc073a70928d3239b66663
[taxeditor.git] / taxeditor-cdmlib / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <project xmlns="http://maven.apache.org/POM/4.0.0"
3 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
5 <parent>
6 <groupId>eu.etaxonomy</groupId>
7 <artifactId>taxeditor-parent</artifactId>
8 <version>3.0</version>
9 </parent>
10 <modelVersion>4.0.0</modelVersion>
11 <artifactId>taxeditor-cdmlib</artifactId>
12 <description>CDM Library as a plugin</description>
13
14 <build>
15 <plugins>
16 <plugin>
17 <groupId>org.apache.maven.plugins</groupId>
18 <artifactId>maven-dependency-plugin</artifactId>
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 </configuration>
48 </execution>
49 </executions>
50 </plugin>
51 </plugins>
52 </build>
53
54 <dependencies>
55 <dependency>
56 <groupId>eu.etaxonomy</groupId>
57 <artifactId>cdmlib-commons</artifactId>
58 </dependency>
59 <dependency>
60 <groupId>eu.etaxonomy</groupId>
61 <artifactId>cdmlib-model</artifactId>
62 </dependency>
63 <dependency>
64 <groupId>eu.etaxonomy</groupId>
65 <artifactId>cdmlib-persistence</artifactId>
66 </dependency>
67 <dependency>
68 <groupId>eu.etaxonomy</groupId>
69 <artifactId>cdmlib-remote</artifactId>
70 </dependency>
71 <dependency>
72 <groupId>eu.etaxonomy</groupId>
73 <artifactId>cdmlib-print</artifactId>
74 </dependency>
75 <dependency>
76 <groupId>eu.etaxonomy</groupId>
77 <artifactId>cdmlib-services</artifactId>
78 </dependency>
79 <dependency>
80 <groupId>eu.etaxonomy</groupId>
81 <artifactId>cdmlib-io</artifactId>
82 </dependency>
83 <dependency>
84 <groupId>eu.etaxonomy</groupId>
85 <artifactId>cdmlib-ext</artifactId>
86 </dependency>
87 </dependencies>
88 </project>