Project

General

Profile

Download (2.12 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
<!--   <parent> -->
10
<!--     <relativePath>../cdmapps-parent/pom.xml</relativePath> -->
11
<!--   </parent> -->
12
  
13
  <groupId>eu.etaxonomy.cdm</groupId>
14
  <artifactId>cdm-pesi</artifactId>
15 519ba447 Andreas Müller
  <version>5.18.0-SNAPSHOT</version>
16 472bf5b2 Andreas Müller
  
17
  <name>CDM PESI</name>
18
  <description>The PESI package for EDIT's CdmLibrary</description>
19
  <properties>
20 0e3dfc58 Andreas Müller
  	<java.codelevel>1.8</java.codelevel>
21 472bf5b2 Andreas Müller
  </properties>
22
  <scm>
23 0e3dfc58 Andreas Müller
    <connection>scm:git:https://dev.e-taxonomy.eu/git/cdmlib-apps.git</connection>
24
    <developerConnection>scm:git:ssh://git@dev.e-taxonomy.eu/var/git/cdmlib-apps.git</developerConnection>
25
    <url>https://dev.e-taxonomy.eu/gitweb/cdmlib-apps.git/tree/HEAD:/cdm-pesi</url>
26 472bf5b2 Andreas Müller
  </scm>
27
  <build>
28
    <plugins>
29
    	<plugin>
30
            <groupId>org.apache.maven.plugins</groupId>
31
            <artifactId>maven-compiler-plugin</artifactId>
32
            <version>2.3.2</version>
33
            <configuration>
34
				<source>${java.codelevel}</source>
35
            	<target>${java.codelevel}</target>
36
                <encoding>UTF-8</encoding>
37
            </configuration>
38
         </plugin>
39
    </plugins>
40
  </build>
41
  <repositories>
42 e35a72c0 a.mueller
      <!-- the cdm internal repository -->
43
      <repository>
44
          <id>EditRepository</id>
45
          <url>https://cybertaxonomy.eu/mavenrepo/</url>
46
      </repository>
47 472bf5b2 Andreas Müller
  </repositories>
48
  <dependencies>   
49
  	<dependency>
50
  		<groupId>eu.etaxonomy</groupId>
51 c97bb2d2 Andreas Müller
  		<artifactId>cdmlib-test</artifactId>
52 472bf5b2 Andreas Müller
  		<version>${project.version}</version>
53
  	</dependency>
54
   	<dependency>
55
  		<groupId>eu.etaxonomy</groupId>
56
  		<artifactId>cdmlib-io</artifactId>
57 e35a72c0 a.mueller
 		<version>${project.version}</version>
58 472bf5b2 Andreas Müller
  	</dependency>
59
60 69423f7e Andreas Müller
	<!-- Profiling -->
61 472bf5b2 Andreas Müller
		<dependency>
62
			<groupId>com.yourkit</groupId>
63
			<artifactId>yjp-controller-api-redist</artifactId>
64
			<version>9.0.8</version>
65 69423f7e Andreas Müller
<!--        <scope>test</scope> -->
66
	</dependency>
67 472bf5b2 Andreas Müller
  </dependencies>
68
</project>