Project

General

Profile

Download (2.17 KB) Statistics
| Branch: | Revision:
1 472bf5b2 Andreas Müller
<?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 0e3dfc58 Andreas Müller
  <version>4.14.0-SNAPSHOT</version>
17 472bf5b2 Andreas Müller
  
18
  <name>CDM PESI</name>
19
  <description>The PESI package for EDIT's CdmLibrary</description>
20
  <properties>
21 0e3dfc58 Andreas Müller
  	<java.codelevel>1.8</java.codelevel>
22 472bf5b2 Andreas Müller
  </properties>
23
  <scm>
24 0e3dfc58 Andreas Müller
    <connection>scm:git:https://dev.e-taxonomy.eu/git/cdmlib-apps.git</connection>
25
    <developerConnection>scm:git:ssh://git@dev.e-taxonomy.eu/var/git/cdmlib-apps.git</developerConnection>
26
    <url>https://dev.e-taxonomy.eu/gitweb/cdmlib-apps.git/tree/HEAD:/cdm-pesi</url>
27 472bf5b2 Andreas Müller
  </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 c97bb2d2 Andreas Müller
  		<artifactId>cdmlib-test</artifactId>
53 472bf5b2 Andreas Müller
  		<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 69423f7e Andreas Müller
	<!-- Profiling -->
62 472bf5b2 Andreas Müller
		<dependency>
63
			<groupId>com.yourkit</groupId>
64
			<artifactId>yjp-controller-api-redist</artifactId>
65
			<version>9.0.8</version>
66 69423f7e Andreas Müller
<!--        <scope>test</scope> -->
67
	</dependency>
68 472bf5b2 Andreas Müller
  </dependencies>
69
</project>