Project

General

Profile

Download (2.12 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
<!--   <parent> -->
10
<!--     <relativePath>../cdmapps-parent/pom.xml</relativePath> -->
11
<!--   </parent> -->
12
  
13
  <groupId>eu.etaxonomy.cdm</groupId>
14
  <artifactId>cdm-pesi</artifactId>
15
  <version>5.19.0-SNAPSHOT</version>
16
  
17
  <name>CDM PESI</name>
18
  <description>The PESI package for EDIT's CdmLibrary</description>
19
  <properties>
20
  	<java.codelevel>1.8</java.codelevel>
21
  </properties>
22
  <scm>
23
    <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
  </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
      <!-- the cdm internal repository -->
43
      <repository>
44
          <id>EditRepository</id>
45
          <url>https://cybertaxonomy.eu/mavenrepo/</url>
46
      </repository>
47
  </repositories>
48
  <dependencies>   
49
  	<dependency>
50
  		<groupId>eu.etaxonomy</groupId>
51
  		<artifactId>cdmlib-test</artifactId>
52
  		<version>${project.version}</version>
53
  	</dependency>
54
   	<dependency>
55
  		<groupId>eu.etaxonomy</groupId>
56
  		<artifactId>cdmlib-io</artifactId>
57
 		<version>${project.version}</version>
58
  	</dependency>
59

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

    
(3-3/3)