Project

General

Profile

Download (2.93 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
  <groupId>eu.etaxonomy</groupId>
10
  <artifactId>imports</artifactId>
11
  <version>4.3.0-SNAPSHOT</version>
12
  
13
  <name>App Import</name>
14
  <description>A collection of diverse imports to the EDIT CDM Platform</description>
15
  <scm>
16
    <connection>scm:svn:http://dev.e-taxonomy.eu/svn/trunk/cdmlib-apps/app-import/</connection>
17
    <developerConnection>scm:svn:https://dev.e-taxonomy.eu/svn/trunk/cdmlib-apps/app-import/</developerConnection>
18
    <url>http://dev.e-taxonomy.eu/trac/browser/trunk/cdmlib-apps/app-import/</url>
19
  </scm>
20
  <properties>
21
  	<java.codelevel>1.7</java.codelevel>
22
  </properties>
23
  <build>
24
    <plugins>
25
    	<plugin>
26
            <groupId>org.apache.maven.plugins</groupId>
27
            <artifactId>maven-compiler-plugin</artifactId>
28
            <version>2.3.2</version>
29
            <configuration>
30
				<source>${java.codelevel}</source>
31
            	<target>${java.codelevel}</target>
32
                <encoding>UTF-8</encoding>
33
            </configuration>
34
         </plugin>
35
    </plugins>
36
  </build>
37
  <repositories>
38
      <!-- the cdm internal repository -->
39
      <repository>
40
          <id>EditRepository</id>
41
          <url>http://wp5.e-taxonomy.eu/mavenrepo/</url>
42
      </repository>
43
  </repositories>
44
  <dependencies>
45
	<dependency>
46
		<groupId>eu.etaxonomy</groupId>
47
  		<artifactId>cdmlib-io</artifactId>
48
  		<version>${project.version}</version>
49
  	</dependency>
50
  	<dependency>
51
  		<groupId>eu.etaxonomy</groupId>
52
  		<artifactId>cdmlib-test</artifactId>
53
        	<scope>test</scope>
54
  		<version>${project.version}</version>
55
  	</dependency>
56
      <dependency>
57
        <!--
58
              need to specify this dependency,
59
              otherwise org.springframework.orm.hibernate5.HibernateTransactionManager is not found.
60
              The dependency to cdmlib-io brings an old version:
61
              [INFO] eu.etaxonomy:imports:jar:4.3.0-SNAPSHOT
62
              [INFO] \- eu.etaxonomy:cdmlib-io:jar:4.3.0-SNAPSHOT:compile
63
              [INFO]    \- eu.etaxonomy:cdmlib-ext:jar:4.3.0-SNAPSHOT:compile
64
              [INFO]       \- eu.etaxonomy:cdmlib-services:jar:4.3.0-SNAPSHOT:compile
65
              [INFO]          \- eu.etaxonomy:cdmlib-persistence:jar:4.3.0-SNAPSHOT:compile
66
              [INFO]             \- org.springframework:spring-orm:jar:3.2.0.RELEASE:compile
67
          -->
68
          <groupId>eu.etaxonomy</groupId>
69
          <artifactId>cdmlib-persistence</artifactId>
70
          <version>${project.version}</version>
71
      </dependency>
72

    
73
      <dependency>
74
        <groupId>com.itextpdf</groupId>
75
        <artifactId>itextpdf</artifactId>
76
        <version>5.5.8</version>
77
        <scope>compile</scope>
78
      </dependency>
79
  </dependencies>
80
</project>
(2-2/2)