Project

General

Profile

Download (2.18 KB) Statistics
| Branch: | Revision:
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
  <!-- 
5
    xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"
6
   -->
7
  <modelVersion>4.0.0</modelVersion>
8
  
9
  
10
<!--   <parent> -->
11
<!--     <relativePath>../cdmapps-parent/pom.xml</relativePath> -->
12
<!--   </parent> -->
13
  
14
  <groupId>eu.etaxonomy.cdm</groupId>
15
  <artifactId>cdm-pesi</artifactId>
16
  <version>4.1.0-SNAPSHOT</version>
17
  
18
  <name>CDM PESI</name>
19
  <description>The PESI package for EDIT's CdmLibrary</description>
20
  <properties>
21
  	<java.codelevel>1.7</java.codelevel>
22
  </properties>
23
  <scm>
24
    <connection>scm:svn:http://dev.e-taxonomy.eu/svn/trunk/cdmlib-apps/cdm-pesi/</connection>
25
    <developerConnection>scm:svn:https://dev.e-taxonomy.eu/svn/trunk/cdmlib-apps/cdm-pesi/</developerConnection>
26
    <url>http://dev.e-taxonomy.eu/trac/browser/trunk/cdmlib-apps/cdm-pesi/</url>
27
  </scm>
28
  <build>
29
    <plugins>
30
    	<plugin>
31
            <groupId>org.apache.maven.plugins</groupId>
32
            <artifactId>maven-compiler-plugin</artifactId>
33
            <version>2.3.2</version>
34
            <configuration>
35
				<source>${java.codelevel}</source>
36
            	<target>${java.codelevel}</target>
37
                <encoding>UTF-8</encoding>
38
            </configuration>
39
         </plugin>
40
    </plugins>
41
  </build>
42
  <repositories>
43
       <!-- codehaus mule repository needed for yourkit  -->
44
       <repository>
45
           <id>CodehausMuleRepository</id>
46
           <url>http://dist.codehaus.org/mule/dependencies/maven2/</url>
47
       </repository>
48
  </repositories>
49
  <dependencies>   
50
  	<dependency>
51
  		<groupId>eu.etaxonomy</groupId>
52
  		<artifactId>cdmlib-test</artifactId>
53
  		<version>${project.version}</version>
54
  	</dependency>
55
   	<dependency>
56
  		<groupId>eu.etaxonomy</groupId>
57
  		<artifactId>cdmlib-io</artifactId>
58
  		<version>${project.version}</version>
59
  	</dependency>
60

    
61
	<!-- Profiling -->
62
		<dependency>
63
			<groupId>com.yourkit</groupId>
64
			<artifactId>yjp-controller-api-redist</artifactId>
65
			<version>9.0.8</version>
66
<!--        <scope>test</scope> -->
67
	</dependency>
68
  </dependencies>
69
</project>
70

    
(3-3/3)