Minor
[cdmlib-apps.git] / cdm-pesi / 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 <modelVersion>4.0.0</modelVersion>
8
9
10 <!-- <parent> -->
11 <!-- <relativePath>../cdmapps-parent/pom.xml</relativePath> -->
12 <!-- </parent> -->
13
14 <groupId>eu.etaxonomy.cdm</groupId>
15 <artifactId>cdm-pesi</artifactId>
16 <version>3.8.0-SNAPSHOT</version>
17
18 <name>CDM PESI</name>
19 <description>The PESI package for EDIT's CdmLibrary</description>
20 <properties>
21 <java.codelevel>1.7</java.codelevel>
22 </properties>
23 <scm>
24 <connection>scm:svn:http://dev.e-taxonomy.eu/svn/trunk/cdmlib-apps/cdm-pesi/</connection>
25 <developerConnection>scm:svn:https://dev.e-taxonomy.eu/svn/trunk/cdmlib-apps/cdm-pesi/</developerConnection>
26 <url>http://dev.e-taxonomy.eu/trac/browser/trunk/cdmlib-apps/cdm-pesi/</url>
27 </scm>
28 <build>
29 <plugins>
30 <plugin>
31 <groupId>org.apache.maven.plugins</groupId>
32 <artifactId>maven-compiler-plugin</artifactId>
33 <version>2.3.2</version>
34 <configuration>
35 <source>${java.codelevel}</source>
36 <target>${java.codelevel}</target>
37 <encoding>UTF-8</encoding>
38 </configuration>
39 </plugin>
40 </plugins>
41 </build>
42 <repositories>
43 <!-- codehaus mule repository needed for yourkit -->
44 <repository>
45 <id>CodehausMuleRepository</id>
46 <url>http://dist.codehaus.org/mule/dependencies/maven2/</url>
47 </repository>
48 </repositories>
49 <dependencies>
50 <dependency>
51 <groupId>eu.etaxonomy</groupId>
52 <artifactId>cdmlib-persistence</artifactId>
53 <type>test-jar</type>
54 <!-- <scope>test</scope> -->
55 <version>${project.version}</version>
56 </dependency>
57 <dependency>
58 <groupId>eu.etaxonomy</groupId>
59 <artifactId>cdmlib-io</artifactId>
60 <version>${project.version}</version>
61 </dependency>
62
63
64
65 <!-- <dependency> -->
66 <!-- <groupId>org.unitils</groupId> -->
67 <!-- <artifactId>unitils-core</artifactId> -->
68 <!-- </dependency> -->
69 <!-- <dependency> -->
70 <!-- <groupId>org.dbunit</groupId> -->
71 <!-- <artifactId>dbunit</artifactId> -->
72 <!-- </dependency> -->
73 <!-- <dependency> -->
74 <!-- <groupId>xmlunit</groupId> -->
75 <!-- <artifactId>xmlunit</artifactId> -->
76 <!-- </dependency> -->
77
78 <!-- Profiling -->
79 <dependency>
80 <groupId>com.yourkit</groupId>
81 <artifactId>yjp-controller-api-redist</artifactId>
82 <version>9.0.8</version>
83 <!-- <scope>test</scope> -->
84 </dependency>
85 </dependencies>
86 </project>
87