updated parent pom
[taxeditor.git] / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
3 "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
4 <project xmlns="http://maven.apache.org/POM/4.0.0"
5 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
6 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
7 <modelVersion>4.0.0</modelVersion>
8 <groupId>eu.etaxonomy</groupId>
9 <artifactId>taxeditor-parent</artifactId>
10 <version>2.1</version>
11
12 <name>EDIT Taxonomic Editor</name>
13 <description>The EDIT Taxonomic Editor for EDIT's platform for cybertaxonomy</description>
14 <url>http://wp5.e-taxonomy.eu/cdmlib/site/</url>
15 <packaging>pom</packaging>
16 <modules>
17 <module>taxeditor-store</module>
18 <module>taxeditor-navigation</module>
19 <module>taxeditor-editor</module>
20 <module>taxeditor-bulkeditor</module>
21 <module>taxeditor-annotatedlineeditor</module>
22 <module>taxeditor-application</module>
23 </modules>
24
25 <licenses>
26 <license>
27 <name>Mozilla Public License Version 1.1</name>
28 <url>http://www.mozilla.org/MPL/MPL-1.1.html</url>
29 <distribution>repo</distribution>
30 </license>
31 </licenses>
32
33 <developers>
34 <developer>
35 <!-- your SVN account id please! -->
36 <id>p.ciardelli</id>
37 <name>
38 Pepe Ciardelli
39 </name>
40 <email>p.ciardelli [at] bgbm.org</email>
41 <organization>
42 Botanical Garden Botanical Museum Berlin
43 </organization>
44 <organizationUrl>http://www.bgbm.org/BioDivInf/</organizationUrl>
45 <timezone>+1</timezone>
46 <roles>
47 <role>developer</role>
48 </roles>
49 <url></url>
50 </developer>
51 <developer>
52 <!-- your SVN account id please! -->
53 <id>n.hoffmann</id>
54 <name>
55 Niels Hoffmann
56 </name>
57 <email>n.hoffmann [at] bgbm.org</email>
58 <organization>
59 Botanic Garden Botanical Museum Berlin
60 </organization>
61 <organizationUrl>http://www.bgbm.org/BioDivInf/</organizationUrl>
62 <timezone>+1</timezone>
63 <roles>
64 <role>developer</role>
65 </roles>
66 <url></url>
67 </developer>
68 </developers>
69
70 <issueManagement>
71 <system>Trac</system>
72 <url>http://dev.e-taxonomy.eu/trac/</url>
73 </issueManagement>
74
75
76 <!-- **** REPOSITORIES **** -->
77 <repositories>
78 <!-- sun repository -->
79 <repository>
80 <id>java.net</id>
81 <url>http://download.java.net/maven/1/</url>
82 <layout>legacy</layout>
83 </repository>
84 <!-- the cdm internal repository -->
85 <repository>
86 <id>EditRepository</id>
87 <url>http://wp5.e-taxonomy.eu/cdmlib/mavenrepo/</url>
88 </repository>
89 <!-- apache incubating repository -->
90 <repository>
91 <id>ApacheIncubating</id>
92 <url>http://people.apache.org/repo/m2-incubating-repository/</url>
93 </repository>
94 <!-- Neccessary for hibernate-envers -->
95 <repository>
96 <releases>
97 <enabled>true</enabled>
98 <updatePolicy>always</updatePolicy>
99 <checksumPolicy>warn</checksumPolicy>
100 </releases>
101 <snapshots>
102 <enabled>false</enabled>
103 <updatePolicy>never</updatePolicy>
104 <checksumPolicy>fail</checksumPolicy>
105 </snapshots>
106 <id>jboss-repository</id>
107 <name>JBoss Repository</name>
108 <url>http://repository.jboss.com/maven2</url>
109 </repository>
110 </repositories>
111
112 <build>
113 <plugins>
114 <plugin>
115 <artifactId>maven-compiler-plugin</artifactId>
116 <configuration>
117 <source>1.5</source>
118 <target>1.5</target>
119 </configuration>
120 </plugin>
121 <plugin>
122 <artifactId>maven-surefire-plugin</artifactId>
123 <configuration>
124 <includes>
125 <include>**/*Test.java</include>
126 </includes>
127 <systemProperties>
128 <property>
129 <name>hibernate.connection.driver_class</name>
130 <value>${hibernate.connection.driver_class}</value>
131 </property>
132 <property>
133 <name>hibernate.connection.url</name>
134 <value>${hibernate.connection.url}</value>
135 </property>
136 <property>
137 <name>hibernate.connection.username</name>
138 <value>${hibernate.connection.username}</value>
139 </property>
140 <property>
141 <name>hibernate.connection.password</name>
142 <value>${hibernate.connection.password}</value>
143 </property>
144 </systemProperties>
145 </configuration>
146 </plugin>
147 <plugin>
148 <groupId>org.apache.maven.plugins</groupId>
149 <artifactId>maven-site-plugin</artifactId>
150 <version>2.0</version>
151 <configuration>
152 <locales>en</locales>
153 </configuration>
154 </plugin>
155 <plugin>
156 <groupId>org.apache.maven.plugins</groupId>
157 <artifactId>maven-source-plugin</artifactId>
158 <executions>
159 <execution>
160 <id>attach-sources</id>
161 <phase>verify</phase>
162 <goals>
163 <goal>jar</goal>
164 </goals>
165 </execution>
166 </executions>
167 </plugin>
168 <plugin>
169 <groupId>org.apache.maven.plugins</groupId>
170 <artifactId>maven-javadoc-plugin</artifactId>
171 <configuration>
172 <aggregate>true</aggregate>
173 <stylesheet>maven</stylesheet>
174 </configuration>
175 </plugin>
176 <plugin>
177 <groupId>org.apache.maven.plugins</groupId>
178 <artifactId>maven-eclipse-plugin</artifactId>
179 <configuration>
180 <downloadSources>true</downloadSources>
181 <downloadJavadocs>true</downloadJavadocs>
182 <additionalProjectnatures>
183 <projectnature>org.eclipse.pde.PluginNature</projectnature>
184 </additionalProjectnatures>
185 </configuration>
186 </plugin>
187
188 </plugins>
189 </build>
190
191 <reporting>
192 <plugins>
193 <plugin>
194 <!-- you will want to start by publishing your classes' Javadocs -->
195 <groupId>org.apache.maven.plugins</groupId>
196 <artifactId>maven-javadoc-plugin</artifactId>
197 <configuration>
198 <links>
199 <link>http://java.sun.com/j2se/1.5.0/docs/api/</link>
200 <link>http://static.springframework.org/spring/docs/2.5.x/api/</link>
201 <link>http://www.hibernate.org/hib_docs/v3/api/</link>
202 <!-- more libraries? -->
203 </links>
204 </configuration>
205 </plugin>
206 <plugin>
207 <!-- this will generate an indexed and cross-referenced HTML version of your source code -->
208 <groupId>org.apache.maven.plugins</groupId>
209 <artifactId>maven-jxr-plugin</artifactId>
210 </plugin>
211 <plugin>
212 <!-- if you use @todo tags to remind you of things to be done (which is a good coding practice), the taglist report will generate a list of all the items marked @todo or TODO -->
213 <groupId>org.codehaus.mojo</groupId>
214 <artifactId>taglist-maven-plugin</artifactId>
215 </plugin>
216 <plugin>
217 <!-- Test coverage can be a useful indication of the quality of your unit tests. It basically tells you how much of your code is actually run by your unit tests, which, in turn, can give you a good idea of the tests' quality -->
218 <groupId>org.codehaus.mojo</groupId>
219 <artifactId>cobertura-maven-plugin</artifactId>
220 <!--
221 <executions>
222 <execution>
223 <id>clean</id>
224 <phase>clean</phase>
225 <goals>
226 <goal>clean</goal>
227 </goals>
228 </execution>
229 </executions>
230 -->
231 </plugin>
232 <!--
233 <plugin>
234 <groupId>org.apache.maven.plugins</groupId>
235 <artifactId>maven-project-info-reports-plugin</artifactId>
236 <reportSets>
237 <reportSet>
238 <reports>
239 <report>dependencies</report>
240 <report>project-team</report>
241 <report>mailing-list</report>
242 <report>cim</report>
243 <report>issue-tracking</report>
244 <report>license</report>
245 <report>scm</report>
246 </reports>
247 </reportSet>
248 </reportSets>
249 </plugin> -->
250 <!-- The changes-maven-plugin plug-in uses a special XML file (src/changes/changes.xml) to track releases and changes in each release -->
251 <!--
252 <plugin>
253 <groupId>org.codehaus.mojo</groupId>
254 <artifactId>changes-maven-plugin</artifactId>
255 </plugin>
256 <plugin>
257 <artifactId>maven-surefire-plugin</artifactId>
258 </plugin>
259 -->
260 <!-- The changelog plug-in generates a nice report describing which files have been changed and by whom -->
261 <!--
262 <plugin>
263 <groupId>org.codehaus.mojo</groupId>
264 <artifactId>changelog-maven-plugin</artifactId>
265 </plugin>
266 -->
267 </plugins>
268 </reporting>
269
270 <!-- DISTRIBUTION MANAGEMENT -->
271 <distributionManagement>
272 <site>
273 <id>edit-wp5-taxeditor</id>
274 <url>
275 scp://wp5.e-taxonomy.eu/var/www/wp5.e-taxonomy.eu/taxeditor/site
276 </url>
277 </site>
278 <repository>
279 <id>edit-wp5</id>
280 <name>Edit Maven Repository</name>
281 <url>
282 scp://wp5.e-taxonomy.eu/var/www/wp5.e-taxonomy.eu/cdmlib/mavenrepo
283 </url>
284 </repository>
285 </distributionManagement>
286
287 <!-- **** DEPENDENCIES **** -->
288 <dependencies>
289 <dependency>
290 <groupId>org.unitils</groupId>
291 <artifactId>unitils</artifactId>
292 </dependency>
293 <dependency>
294 <groupId>junit</groupId>
295 <artifactId>junit</artifactId>
296 </dependency>
297 <dependency>
298 <groupId>log4j</groupId>
299 <artifactId>log4j</artifactId>
300 </dependency>
301 </dependencies>
302
303 <dependencyManagement>
304 <dependencies>
305 <dependency>
306 <groupId>eu.etaxonomy</groupId>
307 <artifactId>taxeditor-store</artifactId>
308 <version>${project.version}</version>
309 </dependency>
310 <dependency>
311 <groupId>eu.etaxonomy</groupId>
312 <artifactId>taxeditor-navigation</artifactId>
313 <version>${project.version}</version>
314 </dependency>
315 <dependency>
316 <groupId>eu.etaxonomy</groupId>
317 <artifactId>taxeditor-editor</artifactId>
318 <version>${project.version}</version>
319 </dependency>
320 <dependency>
321 <groupId>eu.etaxonomy</groupId>
322 <artifactId>taxeditor-bulkeditor</artifactId>
323 <version>${project.version}</version>
324 </dependency>
325 <dependency>
326 <groupId>eu.etaxonomy</groupId>
327 <artifactId>taxeditor-application</artifactId>
328 <version>${project.version}</version>
329 </dependency>
330
331 <!-- ******* VARIOUS ******* -->
332 <dependency>
333 <groupId>log4j</groupId>
334 <artifactId>log4j</artifactId>
335 <version>1.2.15</version>
336 </dependency>
337 <!-- hibernate 3.4 uses slf4j -->
338 <dependency>
339 <groupId>org.slf4j</groupId>
340 <artifactId>slf4j-log4j12</artifactId>
341 <version>1.5.2</version>
342 </dependency>
343 <dependency>
344 <groupId>junit</groupId>
345 <artifactId>junit</artifactId>
346 <version>4.5</version>
347 <scope>test</scope>
348 </dependency>
349 <dependency>
350 <groupId>org.unitils</groupId>
351 <artifactId>unitils</artifactId>
352 <version>2.2</version>
353 <scope>test</scope>
354 </dependency>
355 <dependency>
356 <groupId>org.dbunit</groupId>
357 <artifactId>dbunit</artifactId>
358 <version>2.4.4</version>
359 <scope>test</scope>
360 </dependency>
361 </dependencies>
362 </dependencyManagement>
363
364 </project>