Project

General

Profile

Download (2.07 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
  xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
5
  
6
  <modelVersion>4.0.0</modelVersion>
7
  
8
  <groupId>eu.etaxonomy</groupId>
9
  <artifactId>imports</artifactId>
10
  <version>5.22.0-SNAPSHOT</version>
11
  
12
  <name>App Import</name>
13
  <description>A collection of diverse imports to the EDIT CDM Platform</description>
14
  <scm>
15
    <connection>scm:git:https://dev.e-taxonomy.eu/git/cdmlib-apps.git</connection>
16
    <developerConnection>scm:git:ssh://git@dev.e-taxonomy.eu/var/git/cdmlib-apps.git</developerConnection>
17
    <url>https://dev.e-taxonomy.eu/gitweb/cdmlib-apps.git/tree/HEAD:/app-import</url>
18
  </scm>
19
  <properties>
20
  	<java.codelevel>1.8</java.codelevel>
21
  </properties>
22
  
23
  <dependencyManagement>
24
    <dependencies>
25
      <dependency>
26
        <groupId>eu.etaxonomy</groupId>
27
        <artifactId>cdmlib-parent</artifactId>
28
        <version>${project.version}</version>
29
        <type>pom</type>
30
        <scope>import</scope>
31
      </dependency>
32
    </dependencies>
33
  </dependencyManagement>
34
  
35
  <build>
36
    <plugins>
37
    	<plugin>
38
            <groupId>org.apache.maven.plugins</groupId>
39
            <artifactId>maven-compiler-plugin</artifactId>
40
            <version>2.3.2</version>
41
            <configuration>
42
				<source>${java.codelevel}</source>
43
            	<target>${java.codelevel}</target>
44
                <encoding>UTF-8</encoding>
45
            </configuration>
46
         </plugin>
47
    </plugins>
48
  </build>
49
  
50
  <repositories>
51
      <!-- the cdm internal repository -->
52
      <repository>
53
          <id>EditRepository</id>
54
          <url>https://cybertaxonomy.eu/mavenrepo/</url>
55
      </repository>
56
  </repositories>
57
  
58
  <dependencies>
59
	<dependency>
60
		<groupId>eu.etaxonomy</groupId>
61
  		<artifactId>cdmlib-io</artifactId>
62
  	</dependency>
63
  	<dependency>
64
  		<groupId>eu.etaxonomy</groupId>
65
  		<artifactId>cdmlib-test</artifactId>
66
        <scope>test</scope>
67
  	</dependency>
68
  </dependencies>
69
</project>
(2-2/2)