Project

General

Profile

Download (1.9 KB) Statistics
| Branch: | Revision:
1 472bf5b2 Andreas Müller
<?xml version="1.0" encoding="UTF-8"?>
2 843e42c9 Andreas Müller
<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 472bf5b2 Andreas Müller
  <modelVersion>4.0.0</modelVersion>
5
  <groupId>eu.etaxonomy.cdm</groupId>
6
  <artifactId>cdm-eflora</artifactId>
7 4fdcc9ef Andreas Müller
  <version>5.29.0-SNAPSHOT</version>
8 472bf5b2 Andreas Müller
  
9
  <name>CDM e-Flora</name>
10 064fbac0 Andreas Müller
  <description>The e-Flora package for e-Flora imports to the EDIT CDM Platform</description>
11 472bf5b2 Andreas Müller
  
12
  <properties>
13 0e3dfc58 Andreas Müller
      <java.codelevel>1.8</java.codelevel>
14 472bf5b2 Andreas Müller
  </properties>
15
  <scm>
16 0e3dfc58 Andreas Müller
    <connection>scm:git:https://dev.e-taxonomy.eu/git/cdmlib-apps.git</connection>
17
    <developerConnection>scm:git:ssh://git@dev.e-taxonomy.eu/var/git/cdmlib-apps.git</developerConnection>
18
    <url>https://dev.e-taxonomy.eu/gitweb/cdmlib-apps.git/tree/HEAD:/cdm-eflora</url>
19 472bf5b2 Andreas Müller
  </scm>
20
  <build>
21
    <plugins>
22
       	<plugin>
23
            <groupId>org.apache.maven.plugins</groupId>
24
            <artifactId>maven-compiler-plugin</artifactId>
25
            <version>2.3.2</version>
26
            <configuration>
27
				<source>${java.codelevel}</source>
28
            	<target>${java.codelevel}</target>
29
                <encoding>UTF-8</encoding>
30
            </configuration>
31
         </plugin>
32
    </plugins>
33
  </build>
34
  <repositories>
35
        <!-- codehaus mule repository needed for yourkit  -->
36
        <repository>
37
            <id>CodehausMuleRepository</id>
38
            <url>http://dist.codehaus.org/mule/dependencies/maven2/</url>
39
        </repository>
40
  </repositories>
41
  <dependencies>   
42
  	<dependency>
43
  		<groupId>eu.etaxonomy</groupId>
44 78dfe644 Andreas Müller
  		<artifactId>cdmlib-test</artifactId>
45 472bf5b2 Andreas Müller
  		<scope>test</scope> 
46
  		<version>${project.version}</version>
47
  	</dependency>
48
   	<dependency>
49
  		<groupId>eu.etaxonomy</groupId>
50
  		<artifactId>cdmlib-io</artifactId>
51
  		<version>${project.version}</version>
52
  	</dependency>
53
  </dependencies>
54
</project>