Added latest junit to cdmlib plugin
[taxeditor.git] / eu.etaxonomy.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 <groupId>eu.etaxonomy</groupId>
12 <artifactId>eu.etaxonomy.taxeditor.cdmlib</artifactId>
13 <name>CDM Library Dependencies Plugin</name>
14 <description>CDM Library and dependencies as a plugin</description>
15
16 <build>
17 <plugins>
18 <plugin>
19 <groupId>org.apache.maven.plugins</groupId>
20 <artifactId>maven-dependency-plugin</artifactId>
21 <executions>
22 <execution>
23 <id>copy-dependencies</id>
24 <phase>validate</phase>
25 <goals>
26 <goal>copy-dependencies</goal>
27 </goals>
28 <configuration>
29 <excludeArtifactIds>junit,log4j,unitils</excludeArtifactIds>
30 <outputDirectory>lib</outputDirectory>
31 <overWriteReleases>true</overWriteReleases>
32 <overWriteSnapshots>true</overWriteSnapshots>
33 <excludeTransitive>true</excludeTransitive>
34 </configuration>
35 </execution>
36 <execution>
37 <id>copy-dependencies-sources</id>
38 <phase>validate</phase>
39 <goals>
40 <goal>copy-dependencies</goal>
41 </goals>
42 <configuration>
43 <classifier>sources</classifier>
44 <excludeArtifactIds>junit,log4j,unitils</excludeArtifactIds>
45 <outputDirectory>lib</outputDirectory>
46 <overWriteReleases>true</overWriteReleases>
47 <overWriteSnapshots>true</overWriteSnapshots>
48 <excludeTransitive>true</excludeTransitive>
49 </configuration>
50 </execution>
51 </executions>
52 </plugin>
53 </plugins>
54 </build>
55
56 <dependencies>
57 <dependency>
58 <groupId>eu.etaxonomy</groupId>
59 <artifactId>cdmlib-commons</artifactId>
60 </dependency>
61 <dependency>
62 <groupId>eu.etaxonomy</groupId>
63 <artifactId>cdmlib-model</artifactId>
64 </dependency>
65 <dependency>
66 <groupId>eu.etaxonomy</groupId>
67 <artifactId>cdmlib-persistence</artifactId>
68 </dependency>
69 <dependency>
70 <groupId>eu.etaxonomy</groupId>
71 <artifactId>cdmlib-remote</artifactId>
72 </dependency>
73 <dependency>
74 <groupId>eu.etaxonomy</groupId>
75 <artifactId>cdmlib-print</artifactId>
76 </dependency>
77 <dependency>
78 <groupId>eu.etaxonomy</groupId>
79 <artifactId>cdmlib-services</artifactId>
80 </dependency>
81 <dependency>
82 <groupId>eu.etaxonomy</groupId>
83 <artifactId>cdmlib-io</artifactId>
84 </dependency>
85 <dependency>
86 <groupId>eu.etaxonomy</groupId>
87 <artifactId>cdmlib-ext</artifactId>
88 </dependency>
89 </dependencies>
90 </project>