Project

General

Profile

Download (2.24 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.cdm</groupId>
10
  <artifactId>imports</artifactId>
11
  <version>3.4.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
  <dependencies>
38
	<dependency>
39
		<groupId>eu.etaxonomy</groupId>
40
  		<artifactId>cdmlib-io</artifactId>
41
  		<version>${project.version}</version>
42
  	</dependency>
43
  	<dependency>
44
  		<groupId>eu.etaxonomy</groupId>
45
  		<artifactId>cdmlib-persistence</artifactId>
46
  		<type>test-jar</type>
47
        	<scope>test</scope>
48
  		<version>${project.version}</version>
49
  	</dependency>
50
	<!-- <dependency>
51
      		<groupId>org.unitils</groupId>
52
		<artifactId>unitils-dbunit</artifactId>
53
		<version>3.3</version>
54
		<scope>test</scope>
55
    	</dependency>
56
    	<dependency>
57
		<groupId>org.unitils</groupId>
58
      		<artifactId>unitils-spring</artifactId>
59
      		<version>3.3</version>
60
      		<scope>test</scope>
61
  	</dependency> -->
62

    
63

    
64
<!--     <dependency>
65
    	<groupId>aspectj</groupId>
66
      	<artifactId>aspectjrt</artifactId>
67
		<version>1.6.3</version>
68
    </dependency> -->
69
  </dependencies></project>
(2-2/2)