(no commit message)
[cdmlib.git] / cdmlib-persistence / 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>0.4.5</version>
11 <relativePath>../cdmParent/pom.xml</relativePath>
12 </parent>
13 <modelVersion>4.0.0</modelVersion>
14 <artifactId>cdmlib-persistence</artifactId>
15 <name>EDIT Common Data Model Library</name>
16 <version>${cdmlib.version}</version>
17 <description>EDIT CDM library</description>
18 <scm>
19 <connection>scm:svn:http://dev.e-taxonomy.eu/svn/trunk/cdmlib/cdmlibrary/</connection>
20 <developerConnection>scm:svn:https://dev.e-taxonomy.eu/svn/trunk/cdmlib/cdmlibrary/</developerConnection>
21 <url>http://dev.e-taxonomy.eu/trac/browser/trunk/cdmlib/cdmlibrary/</url>
22 </scm>
23 <build>
24 <plugins>
25 <!-- <plugin>-->
26 <!-- <groupId>org.codehaus.mojo</groupId>-->
27 <!-- <artifactId>hibernate3-maven-plugin</artifactId>-->
28 <!-- <version>2.0-alpha-2</version>-->
29 <!-- <configuration>-->
30 <!-- <components>-->
31 <!-- <component>-->
32 <!-- <name>hbm2cfgxml</name>-->
33 <!-- <outputDirectory>src/main/resources</outputDirectory>-->
34 <!-- </component>-->
35 <!-- </components>-->
36 <!-- <componentProperties>-->
37 <!-- <drop>true</drop>-->
38 <!-- <configurationfile>/src/main/resources/hibernate.cfg.xml</configurationfile>-->
39 <!-- </componentProperties>-->
40 <!-- </configuration>-->
41 <!-- </plugin>-->
42
43 <!-- <plugin>-->
44 <!-- <artifactId>maven-antrun-plugin</artifactId>-->
45 <!-- <executions>-->
46 <!-- <execution>-->
47 <!-- <phase>generate-resources</phase>-->
48 <!-- <goals>-->
49 <!-- <goal>run</goal>-->
50 <!-- </goals>-->
51 <!-- <configuration>-->
52 <!-- <tasks />-->
53 <!-- </configuration>-->
54 <!-- </execution>-->
55 <!-- </executions>-->
56 <!-- </plugin>-->
57
58 <plugin>
59 <artifactId>maven-compiler-plugin</artifactId>
60 <configuration>
61 <source>1.5</source>
62 <target>1.5</target>
63 </configuration>
64 </plugin>
65 <plugin>
66 <artifactId>maven-surefire-plugin</artifactId>
67 <configuration>
68 <includes>
69 <include>**/*Test.java</include>
70 </includes>
71 <systemProperties>
72 <property>
73 <name>hibernate.connection.driver_class</name>
74 <value>${hibernate.connection.driver_class}</value>
75 </property>
76 <property>
77 <name>hibernate.connection.url</name>
78 <value>${hibernate.connection.url}</value>
79 </property>
80 <property>
81 <name>hibernate.connection.username</name>
82 <value>${hibernate.connection.username}</value>
83 </property>
84 <property>
85 <name>hibernate.connection.password</name>
86 <value>${hibernate.connection.password}</value>
87 </property>
88 </systemProperties>
89 </configuration>
90 </plugin>
91
92 </plugins>
93 </build>
94 <dependencies>
95 <dependency>
96 <groupId>eu.etaxonomy</groupId>
97 <artifactId>cdmlib-model</artifactId>
98 <version>${cdmlib.version}</version>
99 </dependency>
100 <dependency>
101 <groupId>javax.persistence</groupId>
102 <artifactId>ejb</artifactId>
103 <version>3</version>
104 </dependency>
105 <dependency>
106 <groupId>org.hibernate</groupId>
107 <artifactId>hibernate-commons-annotations</artifactId>
108 <version>3.3.0.ga</version>
109 </dependency>
110 <dependency>
111 <groupId>org.hibernate</groupId>
112 <artifactId>hibernate</artifactId>
113 <version>3.2.5.ga</version>
114 </dependency>
115 <dependency>
116 <groupId>org.springframework</groupId>
117 <artifactId>spring</artifactId>
118 <version>${spring.version}</version>
119 </dependency>
120 <dependency>
121 <groupId>org.springframework</groupId>
122 <artifactId>spring-beans</artifactId>
123 <version>${spring.version}</version>
124 </dependency>
125 <dependency>
126 <groupId>org.springframework</groupId>
127 <artifactId>spring-orm</artifactId>
128 <version>${spring.version}</version>
129 </dependency>
130 <dependency>
131 <groupId>org.springframework</groupId>
132 <artifactId>spring-jdbc</artifactId>
133 <version>${spring.version}</version>
134 </dependency>
135 <dependency>
136 <groupId>org.springframework</groupId>
137 <artifactId>spring-test</artifactId>
138 <version>${spring.version}</version>
139 </dependency>
140 <!-- <dependency>-->
141 <!-- <groupId>xerces</groupId>-->
142 <!-- <artifactId>xercesImpl</artifactId>-->
143 <!-- <version>2.7.1</version>-->
144 <!-- </dependency>-->
145 <!-- <dependency>-->
146 <!-- <groupId>jaxen</groupId>-->
147 <!-- <artifactId>jaxen</artifactId>-->
148 <!-- <version>1.1</version>-->
149 <!-- </dependency>-->
150 <!-- <dependency>-->
151 <!-- <groupId>org.dbunit</groupId>-->
152 <!-- <artifactId>dbunit</artifactId>-->
153 <!-- <version>2.2</version>-->
154 <!-- </dependency>-->
155
156
157 <!-- ******* DATABASES DRIVER ******* -->
158 <!-- SQL Server and Sybase -->
159 <dependency>
160 <groupId>net.sourceforge.jtds</groupId>
161 <artifactId>jtds</artifactId>
162 <version>1.2.2</version>
163 </dependency>
164
165 <dependency>
166 <groupId>mysql</groupId>
167 <artifactId>mysql-connector-java</artifactId>
168 <version>5.0.5</version>
169 </dependency>
170 <dependency>
171 <groupId>postgresql</groupId>
172 <artifactId>postgresql</artifactId>
173 <version>8.2-504.jdbc4</version>
174 </dependency>
175 <dependency>
176 <groupId>hsqldb</groupId>
177 <artifactId>hsqldb</artifactId>
178 <version>1.8.0.7</version>
179 </dependency>
180
181
182 <dependency>
183 <groupId>com.microsoft.jdbcdriver</groupId>
184 <artifactId>mssqlserver</artifactId>
185 <version>2000.3</version>
186 </dependency>
187 <dependency>
188 <groupId>com.microsoft.jdbcdriver</groupId>
189 <artifactId>msutil</artifactId>
190 <version>2000.3</version>
191 </dependency>
192 <dependency>
193 <groupId>com.microsoft.jdbcdriver</groupId>
194 <artifactId>msbase</artifactId>
195 <version>2000.3</version>
196 </dependency>
197
198 <!-- <dependency>-->
199 <!-- <groupId>oracle</groupId>-->
200 <!-- <artifactId>ojdbc14</artifactId>-->
201 <!-- <version>10.2.0.2</version>-->
202 <!-- </dependency>-->
203 <!-- <dependency>-->
204 <!-- <groupId>oracle</groupId>-->
205 <!-- <artifactId>ojdbc14</artifactId>-->
206 <!-- <version>9i</version>-->
207 <!-- </dependency>-->
208 <!-- <dependency>-->
209 <!-- <groupId>oracle</groupId>-->
210 <!-- <artifactId>ojdbc14</artifactId>-->
211 <!-- <version>9.2.0.5</version>-->
212 <!-- </dependency>-->
213 </dependencies>
214 </project>