Project

General

Profile

Download (3.17 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
  
4
  <parent>
5
    <groupId>eu.etaxonomy</groupId>
6
    <artifactId>cdmlib-parent</artifactId>
7
    <version>5.32.0-SNAPSHOT</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 se 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 if using goal 'java' -->
38
     <!--       <mainClass>eu.etaxonomy.cdm.cache.CdmModelCacher</mainClass>
39
                <cleanupDaemonThreads>true</cleanupDaemonThreads>
40
                <stopUnresponsiveDaemonThreads>false</stopUnresponsiveDaemonThreads>  -->
41
            </configuration>
42
        </plugin>
43
    </plugins>
44
    <pluginManagement>
45
      <plugins>
46
        <!--This plugin's configuration is used to store Eclipse m2e settings only. It has no influence on the Maven build itself.-->
47
        <plugin>
48
          <groupId>org.eclipse.m2e</groupId>
49
          <artifactId>lifecycle-mapping</artifactId>
50
          <version>1.0.0</version>
51
          <configuration>
52
            <lifecycleMappingMetadata>
53
              <pluginExecutions>
54
                <pluginExecution>
55
                  <pluginExecutionFilter>
56
                    <groupId>org.codehaus.mojo</groupId>
57
                    <artifactId>exec-maven-plugin</artifactId>
58
                    <versionRange>[3.0.0,)</versionRange>
59
                    <phase>process-resources</phase>
60
                    <goals>
61
                      <goal>exec</goal>
62
                    </goals>
63
                  </pluginExecutionFilter>
64
                  <action>
65
                    <ignore></ignore>
66
                  </action>
67
                </pluginExecution>
68
              </pluginExecutions>
69
            </lifecycleMappingMetadata>
70
          </configuration>
71
        </plugin>
72
      </plugins>
73
    </pluginManagement>
74
  </build>
75
  <dependencies>
76
    <dependency>
77
      <groupId>eu.etaxonomy</groupId>
78
      <artifactId>cdmlib-services</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>
    (1-1/1)