Merge branch 'release/5.42.0'
[cdmlib.git] / cdmlib-cache / pom.xml
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
4 <parent>
5 <groupId>eu.etaxonomy</groupId>
6 <artifactId>cdmlib-parent</artifactId>
7 <version>5.42.0</version>
8 <relativePath>../pom.xml</relativePath>
9 </parent>
10
11 <modelVersion>4.0.0</modelVersion>
12 <artifactId>cdmlib-cache</artifactId>
13 <name>CDM Entity Cache</name>
14 <description>CDM Entity Cache</description>
15 <build>
16 <plugins>
17 <plugin>
18 <groupId>org.codehaus.mojo</groupId>
19 <artifactId>exec-maven-plugin</artifactId>
20 <version>3.0.0</version>
21 <executions>
22 <execution>
23 <phase>compile</phase>
24 <goals>
25 <!-- goal 'java' has problems with closing threads, therefore use exec -->
26 <goal>exec</goal>
27 </goals>
28 </execution>
29 </executions>
30 <configuration>
31 <executable>java</executable>
32 <arguments>
33 <argument>-classpath</argument>
34 <classpath />
35 <argument>eu.etaxonomy.cdm.cache.CdmModelCacher</argument>
36 </arguments>
37 </configuration>
38 </plugin>
39 </plugins>
40 <pluginManagement>
41 <plugins>
42 <!--This plugin's configuration is used to store Eclipse m2e settings only. It has no influence on the Maven build itself.-->
43 <!-- <plugin>
44 <groupId>org.eclipse.m2e</groupId>
45 <artifactId>lifecycle-mapping</artifactId>
46 <version>1.0.0</version>
47 <configuration>
48 <lifecycleMappingMetadata>
49 <pluginExecutions>
50 <pluginExecution>
51 <pluginExecutionFilter>
52 <groupId>org.codehaus.mojo</groupId>
53 <artifactId>exec-maven-plugin</artifactId>
54 <versionRange>[3.0.0,)</versionRange>
55 <phase>compile</phase>
56 <goals>
57 <goal>exec</goal>
58 </goals>
59 </pluginExecutionFilter>
60 <action>
61 <ignore></ignore>
62 </action>
63 </pluginExecution>
64 </pluginExecutions>
65 </lifecycleMappingMetadata>
66 </configuration>
67 </plugin> -->
68 </plugins>
69 </pluginManagement>
70 </build>
71 <dependencies>
72 <dependency>
73 <groupId>eu.etaxonomy</groupId>
74 <artifactId>cdmlib-services</artifactId>
75 </dependency>
76 <dependency>
77 <groupId>net.sf.ehcache</groupId>
78 <artifactId>ehcache</artifactId>
79 </dependency>
80 <dependency>
81 <groupId>eu.etaxonomy</groupId>
82 <artifactId>cdmlib-test</artifactId>
83 <scope>test</scope>
84 </dependency>
85 </dependencies>
86 </project>