(no commit message)
[cdmlib.git] / musiclib-hibernatetest / 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 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"
5 >
6 <parent>
7 <artifactId>cdmParent</artifactId>
8 <groupId>eu.etaxonomy</groupId>
9 <version>0.1</version>
10 <relativePath>../cdmParent/pom.xml</relativePath>
11 </parent>
12 <modelVersion>4.0.0</modelVersion>
13 <artifactId>musiclib</artifactId>
14 <name>Markus Music Test</name>
15 <version>0.1.0</version>
16 <description>EDIT cdm library</description>
17 <scm>
18 <connection>scm:svn:http://ww2.biocase.org/svn/edit/trunk/cdmlib/musiclib/</connection>
19 <developerConnection>scm:svn:https://ww2.biocase.org/svn/edit/trunk/cdmlib/musiclib/</developerConnection>
20 <url>http://ww2.biocase.org/svn/edit/trunk/cdmlib/musiclib/</url>
21 </scm>
22 <build>
23 <plugins>
24 <plugin>
25 <artifactId>maven-compiler-plugin</artifactId>
26 <configuration>
27 <source>1.5</source>
28 <target>1.5</target>
29 </configuration>
30 </plugin>
31 <plugin>
32 <artifactId>maven-surefire-plugin</artifactId>
33 <configuration>
34 <includes>
35 <include>**/*Test.java</include>
36 </includes>
37 </configuration>
38 </plugin>
39 </plugins>
40 </build>
41 <dependencies>
42 <dependency>
43 <groupId>javax.persistence</groupId>
44 <artifactId>ejb</artifactId>
45 <version>3</version>
46 </dependency>
47 <dependency>
48 <groupId>javax.xml</groupId>
49 <artifactId>jaxrpc-api</artifactId>
50 <version>1.1</version>
51 </dependency>
52 <dependency>
53 <groupId>javax.xml.bind</groupId>
54 <artifactId>jaxb-api</artifactId>
55 <version>2.0</version>
56 </dependency>
57 <dependency>
58 <groupId>mysql</groupId>
59 <artifactId>mysql-connector-java</artifactId>
60 <version>5.0.5</version>
61 </dependency>
62 <dependency>
63 <groupId>org.hibernate</groupId>
64 <artifactId>hibernate-commons-annotations</artifactId>
65 <version>3.3.0.ga</version>
66 </dependency>
67 <dependency>
68 <groupId>org.hibernate</groupId>
69 <artifactId>hibernate-annotations</artifactId>
70 <version>3.3.0.ga</version>
71 </dependency>
72 <dependency>
73 <groupId>org.hibernate</groupId>
74 <artifactId>hibernate</artifactId>
75 <version>3.2.5.ga</version>
76 </dependency>
77
78 <dependency>
79 <groupId>org.springframework</groupId>
80 <artifactId>spring</artifactId>
81 <version>2.5</version>
82 </dependency>
83 <dependency>
84 <groupId>org.springframework</groupId>
85 <artifactId>spring-beans</artifactId>
86 <version>2.5</version>
87 </dependency>
88 <dependency>
89 <groupId>org.springframework</groupId>
90 <artifactId>spring-orm</artifactId>
91 <version>2.5</version>
92 </dependency>
93 <dependency>
94 <groupId>org.springframework</groupId>
95 <artifactId>spring-jdbc</artifactId>
96 <version>2.5</version>
97 </dependency>
98 <dependency>
99 <groupId>org.springframework</groupId>
100 <artifactId>spring-test</artifactId>
101 <version>2.5</version>
102 </dependency>
103 </dependencies>
104 </project>
105