(no commit message)
[cdmlib.git] / cdmlib-io / pom.xml
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 <parent>
8 <artifactId>cdmParent</artifactId>
9 <groupId>eu.etaxonomy</groupId>
10 <version>${cdmlib.version}</version>
11 <relativePath>../cdmParent/pom.xml</relativePath>
12 </parent>
13
14 <modelVersion>4.0.0</modelVersion>
15 <artifactId>cdmlib-io</artifactId>
16 <name>EDIT Common Data Model Library - Domain Model</name>
17 <version>${cdmlib.version}</version>
18 <description>The import-export package for EDIT's cdmLibrary</description>
19 <scm>
20 <connection>scm:svn:http://dev.e-taxonomy.eu/svn/trunk/cdmlib/cdmlib-io/</connection>
21 <developerConnection>scm:svn:https://dev.e-taxonomy.eu/svn/trunk/cdmlib/cdmlib-io/</developerConnection>
22 <url>http://dev.e-taxonomy.eu/trac/browser/trunk/cdmlib/cdmlib-io/</url>
23 </scm>
24
25 <build>
26 <plugins>
27 <plugin>
28 <artifactId>maven-compiler-plugin</artifactId>
29 <configuration>
30 <source>1.5</source>
31 <target>1.5</target>
32 </configuration>
33 </plugin>
34 <plugin>
35 <artifactId>maven-surefire-plugin</artifactId>
36 <configuration>
37 <includes>
38 <include>**/*Test.java</include>
39 </includes>
40 </configuration>
41 </plugin>
42 </plugins>
43 </build>
44
45 <dependencies>
46 <!-- <dependency>-->
47 <!-- <groupId>eu.etaxonomy</groupId>-->
48 <!-- <artifactId>cdmlib-model</artifactId>-->
49 <!-- <version>0.4.8-SNAPSHOT</version>-->
50 <!-- </dependency>-->
51 <dependency>
52 <groupId>eu.etaxonomy</groupId>
53 <artifactId>cdmlib-services</artifactId>
54 <version>0.5.0-SNAPSHOT</version>
55 </dependency>
56 </dependencies>
57 </project>
58
59