Project

General

Profile

Download (3.03 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>process-resources</phase>
24
                    <goals>
25
                        <goal>exec</goal>
26
                    </goals>
27
                </execution>
28
            </executions>
29
            <configuration>
30
                <executable>java</executable>
31
                <arguments>
32
                    <argument>-classpath</argument>
33
                    <classpath/>
34
                    <argument>eu.etaxonomy.cdm.cache.CdmModelCacher</argument>
35
                </arguments>
36
           <!--     <mainClass>eu.etaxonomy.cdm.cache.CdmModelCacher</mainClass>
37
                <cleanupDaemonThreads>true</cleanupDaemonThreads>
38
                <stopUnresponsiveDaemonThreads>false</stopUnresponsiveDaemonThreads>  -->
39
            </configuration>
40
        </plugin>
41
    </plugins>
42
    <pluginManagement>
43
      <plugins>
44
        <!--This plugin's configuration is used to store Eclipse m2e settings only. It has no influence on the Maven build itself.-->
45
        <plugin>
46
          <groupId>org.eclipse.m2e</groupId>
47
          <artifactId>lifecycle-mapping</artifactId>
48
          <version>1.0.0</version>
49
          <configuration>
50
            <lifecycleMappingMetadata>
51
              <pluginExecutions>
52
                <pluginExecution>
53
                  <pluginExecutionFilter>
54
                    <groupId>org.codehaus.mojo</groupId>
55
                    <artifactId>exec-maven-plugin</artifactId>
56
                    <versionRange>[3.0.0,)</versionRange>
57
                    <phase>process-resources</phase>
58
                    <goals>
59
                      <goal>exec</goal>
60
                    </goals>
61
                  </pluginExecutionFilter>
62
                  <action>
63
                    <ignore></ignore>
64
                  </action>
65
                </pluginExecution>
66
              </pluginExecutions>
67
            </lifecycleMappingMetadata>
68
          </configuration>
69
        </plugin>
70
      </plugins>
71
    </pluginManagement>
72
  </build>
73
  <dependencies>
74
    <dependency>
75
      <groupId>eu.etaxonomy</groupId>
76
      <artifactId>cdmlib-services</artifactId>
77
    </dependency>
78
    <dependency>
79
        <groupId>eu.etaxonomy</groupId>
80
        <artifactId>cdmlib-test</artifactId>
81
        <scope>test</scope>
82
    </dependency>
83
   </dependencies>
84
</project>
    (1-1/1)