performed javacscript:fix and worked on documentation
[taxeditor.git] / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
3 <modelVersion>4.0.0</modelVersion>
4 <groupId>eu.etaxonomy</groupId>
5 <artifactId>taxeditor-parent</artifactId>
6 <version>3.0</version>
7 <name>EDIT Taxonomic Editor</name>
8 <description>The Taxonomic Editor for EDIT's platform for cybertaxonomy</description>
9 <url>http://wp5.e-taxonomy.eu</url>
10 <inceptionYear>2007</inceptionYear>
11 <packaging>pom</packaging>
12 <properties>
13 <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
14 <cdmlib.version>2.5</cdmlib.version>
15 </properties>
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-printpublisher</module>
22 <module>taxeditor-annotatedlineeditor</module>
23 <module>taxeditor-application</module>
24 </modules>
25 <scm>
26 <connection>scm:svn:http://dev.e-taxonomy.eu/svn/trunk/taxeditor/</connection>
27 <developerConnection>scm:svn:https://dev.e-taxonomy.eu/svn/trunk/taxeditor/</developerConnection>
28 <url>http://dev.e-taxonomy.eu/websvn/listing.php?repname=EDIT+Taxonomic+Editor</url>
29 </scm>
30 <mailingLists>
31 <mailingList>
32 <name>EDIT Taxonomic Editor</name>
33 <subscribe>
34 edit-taxonomic-editor+subscribe@googlegroups.com
35 </subscribe>
36 <unsubscribe>
37 edit-taxonomic-editor+unsubscribe@googlegroups.com
38 </unsubscribe>
39 <post>edit-taxonomic-editor@googlegroups.com</post>
40 <archive>http://groups.google.com/group/edit-taxonomic-editor/topics</archive>
41 </mailingList>
42 </mailingLists>
43 <licenses>
44 <license>
45 <name>Mozilla Public License Version 1.1</name>
46 <url>http://www.mozilla.org/MPL/MPL-1.1.html</url>
47 <distribution>repo</distribution>
48 </license>
49 </licenses>
50 <developers>
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>Java Developer</role>
65 <role>Architect</role>
66 </roles>
67 <url/>
68 </developer>
69 </developers>
70 <issueManagement>
71 <system>Trac</system>
72 <url>http://dev.e-taxonomy.eu/trac/</url>
73 </issueManagement>
74 <ciManagement>
75 <system>Hudson</system>
76 <url>http://160.45.63.201/hudson</url>
77 </ciManagement>
78 <!-- **** REPOSITORIES **** -->
79 <repositories>
80 <!-- the cdm internal repository -->
81 <repository>
82 <id>EditRepository</id>
83 <url>http://wp5.e-taxonomy.eu/cdmlib/mavenrepo/</url>
84 </repository>
85 </repositories>
86 <build>
87 <plugins>
88 <plugin>
89 <groupId>org.apache.maven.plugins</groupId>
90 <artifactId>maven-compiler-plugin</artifactId>
91 <version>2.3.2</version>
92 <configuration>
93 <source>1.6</source>
94 <target>1.6</target>
95 </configuration>
96 </plugin>
97 <plugin>
98 <groupId>org.apache.maven.plugins</groupId>
99 <artifactId>maven-surefire-plugin</artifactId>
100 <version>2.6</version>
101 <configuration>
102 <includes>
103 <include>**/*Test.java</include>
104 </includes>
105 <systemPropertyVariables>
106 <property>
107 <name>hibernate.connection.driver_class</name>
108 <value>${hibernate.connection.driver_class}</value>
109 </property>
110 <property>
111 <name>hibernate.connection.url</name>
112 <value>${hibernate.connection.url}</value>
113 </property>
114 <property>
115 <name>hibernate.connection.username</name>
116 <value>${hibernate.connection.username}</value>
117 </property>
118 <property>
119 <name>hibernate.connection.password</name>
120 <value>${hibernate.connection.password}</value>
121 </property>
122 </systemPropertyVariables>
123 </configuration>
124 </plugin>
125 <plugin>
126 <groupId>org.apache.maven.plugins</groupId>
127 <artifactId>maven-site-plugin</artifactId>
128 <version>2.1.1</version>
129 <configuration>
130 <locales>en</locales>
131 </configuration>
132 </plugin>
133 <plugin>
134 <groupId>org.apache.maven.plugins</groupId>
135 <artifactId>maven-source-plugin</artifactId>
136 <version>2.1.2</version>
137 <executions>
138 <execution>
139 <id>attach-sources</id>
140 <phase>verify</phase>
141 <goals>
142 <goal>jar</goal>
143 </goals>
144 </execution>
145 </executions>
146 </plugin>
147 <plugin>
148 <groupId>org.apache.maven.plugins</groupId>
149 <artifactId>maven-javadoc-plugin</artifactId>
150 <version>2.7</version>
151 <configuration>
152 <stylesheet>maven</stylesheet>
153 <quiet>true</quiet>
154 <detectLinks>true</detectLinks>
155 <failOnError>false</failOnError>
156 </configuration>
157 <executions>
158 <execution>
159 <id>aggregate</id>
160 <goals>
161 <goal>aggregate</goal>
162 </goals>
163 <phase>site</phase>
164 </execution>
165 </executions>
166 </plugin>
167 <plugin>
168 <groupId>org.apache.maven.plugins</groupId>
169 <artifactId>maven-eclipse-plugin</artifactId>
170 <version>2.8</version>
171 <configuration>
172 <downloadSources>true</downloadSources>
173 <downloadJavadocs>true</downloadJavadocs>
174 <additionalProjectnatures>
175 <projectnature>org.eclipse.pde.PluginNature</projectnature>
176 </additionalProjectnatures>
177 </configuration>
178 </plugin>
179 </plugins>
180 </build>
181 <reporting>
182 <plugins>
183 <plugin>
184 <!-- you will want to start by publishing your classes' Javadocs -->
185 <groupId>org.apache.maven.plugins</groupId>
186 <artifactId>maven-javadoc-plugin</artifactId>
187 <version>2.7</version>
188 <configuration>
189 <detectLinks>true</detectLinks>
190 </configuration>
191 </plugin>
192 <plugin>
193 <!-- this will generate an indexed and cross-referenced HTML version of your source code -->
194 <groupId>org.apache.maven.plugins</groupId>
195 <artifactId>maven-jxr-plugin</artifactId>
196 <version>2.2</version>
197 </plugin>
198 <plugin>
199 <groupId>org.apache.maven.plugins</groupId>
200 <artifactId>maven-changes-plugin</artifactId>
201 <version>2.3</version>
202 <configuration>
203 <issueLinkTemplatePerSystem>
204 <default>%URL%/ticket/%ISSUE%</default>
205 </issueLinkTemplatePerSystem>
206 </configuration>
207 <reportSets>
208 <reportSet>
209 <reports>
210 <report>changes-report</report>
211 </reports>
212 </reportSet>
213 </reportSets>
214 </plugin>
215 </plugins>
216 </reporting>
217 <!-- DISTRIBUTION MANAGEMENT -->
218 <distributionManagement>
219 <site>
220 <id>wp5.e-taxonomy.eu</id>
221 <name>EDIT Taxonomic Editor</name>
222 <url>scpexe://160.45.63.151/var/www/wp5.e-taxonomy.eu/taxeditor/</url>
223 </site>
224 <repository>
225 <uniqueVersion>false</uniqueVersion>
226 <id>wp5.e-taxonomy.eu</id>
227 <name>Edit Maven Repository</name>
228 <url>scpexe://160.45.63.151/var/www/wp5.e-taxonomy.eu/cdmlib/mavenrepo/</url>
229 </repository>
230 </distributionManagement>
231 <!-- **** DEPENDENCIES **** -->
232 <dependencies>
233 <dependency>
234 <groupId>org.unitils</groupId>
235 <artifactId>unitils</artifactId>
236 </dependency>
237 <dependency>
238 <groupId>junit</groupId>
239 <artifactId>junit</artifactId>
240 </dependency>
241 <dependency>
242 <groupId>log4j</groupId>
243 <artifactId>log4j</artifactId>
244 </dependency>
245 </dependencies>
246 <dependencyManagement>
247 <dependencies>
248 <!-- ******* TAXEDITOR ******* -->
249 <dependency>
250 <groupId>eu.etaxonomy</groupId>
251 <artifactId>taxeditor-store</artifactId>
252 <version>${project.version}</version>
253 </dependency>
254 <dependency>
255 <groupId>eu.etaxonomy</groupId>
256 <artifactId>taxeditor-navigation</artifactId>
257 <version>${project.version}</version>
258 </dependency>
259 <dependency>
260 <groupId>eu.etaxonomy</groupId>
261 <artifactId>taxeditor-editor</artifactId>
262 <version>${project.version}</version>
263 </dependency>
264 <dependency>
265 <groupId>eu.etaxonomy</groupId>
266 <artifactId>taxeditor-bulkeditor</artifactId>
267 <version>${project.version}</version>
268 </dependency>
269 <dependency>
270 <groupId>eu.etaxonomy</groupId>
271 <artifactId>taxeditor-application</artifactId>
272 <version>${project.version}</version>
273 </dependency>
274 <dependency>
275 <groupId>eu.etaxonomy</groupId>
276 <artifactId>taxeditor-printpublisher</artifactId>
277 <version>${project.version}</version>
278 </dependency>
279 <!-- ******* CDMLIB ******* -->
280 <dependency>
281 <groupId>eu.etaxonomy</groupId>
282 <artifactId>cdmlib-model</artifactId>
283 <version>${cdmlib.version}</version>
284 </dependency>
285 <dependency>
286 <groupId>eu.etaxonomy</groupId>
287 <artifactId>cdmlib-commons</artifactId>
288 <version>${cdmlib.version}</version>
289 </dependency>
290 <dependency>
291 <groupId>eu.etaxonomy</groupId>
292 <artifactId>cdmlib-services</artifactId>
293 <version>${cdmlib.version}</version>
294 </dependency>
295 <dependency>
296 <groupId>eu.etaxonomy</groupId>
297 <artifactId>cdmlib-io</artifactId>
298 <version>${cdmlib.version}</version>
299 </dependency>
300 <dependency>
301 <groupId>eu.etaxonomy</groupId>
302 <artifactId>cdmlib-ext</artifactId>
303 <version>${cdmlib.version}</version>
304 </dependency>
305 <dependency>
306 <groupId>eu.etaxonomy</groupId>
307 <artifactId>cdmlib-persistence</artifactId>
308 <version>${cdmlib.version}</version>
309 </dependency>
310 <dependency>
311 <groupId>eu.etaxonomy</groupId>
312 <artifactId>cdmlib-remote</artifactId>
313 <version>${cdmlib.version}</version>
314 </dependency>
315 <dependency>
316 <groupId>eu.etaxonomy</groupId>
317 <artifactId>cdmlib-print</artifactId>
318 <version>${cdmlib.version}</version>
319 </dependency>
320 <!-- ******* ECLIPSE ******* -->
321 <dependency>
322 <groupId>org.eclipse</groupId>
323 <artifactId>help</artifactId>
324 <version>3.5.0</version>
325 </dependency>
326 <dependency>
327 <groupId>org.eclipse</groupId>
328 <artifactId>ecf</artifactId>
329 <version>3.1.0</version>
330 </dependency>
331 <dependency>
332 <groupId>org.eclipse</groupId>
333 <artifactId>text</artifactId>
334 <version>3.5.0</version>
335 </dependency>
336 <dependency>
337 <groupId>org.eclipse.core</groupId>
338 <artifactId>commands</artifactId>
339 <version>3.6.0</version>
340 </dependency>
341 <dependency>
342 <groupId>org.eclipse.core</groupId>
343 <artifactId>filebuffers</artifactId>
344 <version>3.5.100</version>
345 </dependency>
346 <dependency>
347 <groupId>org.eclipse.core</groupId>
348 <artifactId>runtime</artifactId>
349 <version>3.6.0</version>
350 </dependency>
351 <dependency>
352 <groupId>org.eclipse.core</groupId>
353 <artifactId>expressions</artifactId>
354 <version>3.4.200</version>
355 </dependency>
356 <dependency>
357 <groupId>org.eclipse.core</groupId>
358 <artifactId>filesystem</artifactId>
359 <version>1.3.0</version>
360 </dependency>
361 <dependency>
362 <groupId>org.eclipse.core</groupId>
363 <artifactId>jobs</artifactId>
364 <version>3.5.0</version>
365 </dependency>
366 <dependency>
367 <groupId>org.eclipse.core</groupId>
368 <artifactId>contenttype</artifactId>
369 <version>3.4.100</version>
370 </dependency>
371 <dependency>
372 <groupId>org.eclipse.core</groupId>
373 <artifactId>databinding</artifactId>
374 <version>1.3.100</version>
375 </dependency>
376 <dependency>
377 <groupId>org.eclipse.core</groupId>
378 <artifactId>resources</artifactId>
379 <version>3.6.0</version>
380 </dependency>
381 <dependency>
382 <groupId>org.eclipse.equinox</groupId>
383 <artifactId>common</artifactId>
384 <version>3.6.0</version>
385 </dependency>
386 <dependency>
387 <groupId>org.eclipse.equinox</groupId>
388 <artifactId>preferences</artifactId>
389 <version>3.3.0</version>
390 </dependency>
391 <dependency>
392 <groupId>org.eclipse.equinox</groupId>
393 <artifactId>app</artifactId>
394 <version>1.3.0</version>
395 </dependency>
396 <dependency>
397 <groupId>org.eclipse.equinox</groupId>
398 <artifactId>registry</artifactId>
399 <version>3.5.0</version>
400 </dependency>
401 <dependency>
402 <groupId>org.eclipse.equinox.p2</groupId>
403 <artifactId>core</artifactId>
404 <version>2.0.0</version>
405 </dependency>
406 <dependency>
407 <groupId>org.eclipse.equinox.p2</groupId>
408 <artifactId>operations</artifactId>
409 <version>2.0.0</version>
410 </dependency>
411 <dependency>
412 <groupId>org.eclipse.ui</groupId>
413 <artifactId>workbench</artifactId>
414 <version>3.6.0</version>
415 </dependency>
416 <dependency>
417 <groupId>org.eclipse</groupId>
418 <artifactId>ui</artifactId>
419 <version>3.6.0</version>
420 </dependency>
421 <dependency>
422 <groupId>org.eclipse.ui</groupId>
423 <artifactId>editors</artifactId>
424 <version>3.6.0</version>
425 </dependency>
426 <dependency>
427 <groupId>org.eclipse.ui</groupId>
428 <artifactId>navigator</artifactId>
429 <version>3.5.0</version>
430 </dependency>
431 <dependency>
432 <groupId>org.eclipse.ui</groupId>
433 <artifactId>forms</artifactId>
434 <version>3.5.0</version>
435 </dependency>
436 <dependency>
437 <groupId>org.eclipse.ui</groupId>
438 <artifactId>ide</artifactId>
439 <version>3.6.0</version>
440 </dependency>
441 <dependency>
442 <groupId>org.eclipse.ui.workbench</groupId>
443 <artifactId>texteditor</artifactId>
444 <version>3.6.0</version>
445 </dependency>
446 <dependency>
447 <groupId>org.eclipse</groupId>
448 <artifactId>jface</artifactId>
449 <version>3.6.0</version>
450 </dependency>
451 <dependency>
452 <groupId>org.eclipse.jface</groupId>
453 <artifactId>databinding</artifactId>
454 <version>1.4.0</version>
455 </dependency>
456 <dependency>
457 <groupId>org.eclipse.jface</groupId>
458 <artifactId>text</artifactId>
459 <version>3.6.0</version>
460 </dependency>
461 <dependency>
462 <groupId>org.eclipse.equinox.p2.metadata</groupId>
463 <artifactId>repository</artifactId>
464 <version>1.1.0</version>
465 </dependency>
466 <dependency>
467 <groupId>org.eclipse.ecf</groupId>
468 <artifactId>filetransfer</artifactId>
469 <version>4.0.0</version>
470 </dependency>
471 <dependency>
472 <groupId>org.eclipse.ecf</groupId>
473 <artifactId>identity</artifactId>
474 <version>3.1.0</version>
475 </dependency>
476 <dependency>
477 <groupId>org.eclipse.ecf.provider</groupId>
478 <artifactId>filetransfer</artifactId>
479 <version>3.1.0</version>
480 </dependency>
481 <dependency>
482 <groupId>org.eclipse</groupId>
483 <artifactId>swt</artifactId>
484 <version>3.6.0</version>
485 </dependency>
486 <dependency>
487 <groupId>org.eclipse</groupId>
488 <artifactId>osgi</artifactId>
489 <version>3.6.0</version>
490 </dependency>
491 <dependency>
492 <groupId>org.eclipse.swt.cocoa</groupId>
493 <artifactId>macosx</artifactId>
494 <version>3.6.0</version>
495 </dependency>
496 <!-- ******* VARIOUS ******* -->
497 <dependency>
498 <groupId>com.google.api</groupId>
499 <artifactId>translate</artifactId>
500 <version>0.92</version>
501 </dependency>
502 <dependency>
503 <groupId>org.apache.commons</groupId>
504 <artifactId>commons-io</artifactId>
505 <version>1.3.2</version>
506 </dependency>
507 <dependency>
508 <groupId>log4j</groupId>
509 <artifactId>log4j</artifactId>
510 <version>1.2.15</version>
511 </dependency>
512 <dependency>
513 <groupId>junit</groupId>
514 <artifactId>junit</artifactId>
515 <version>4.5</version>
516 <scope>test</scope>
517 </dependency>
518 <dependency>
519 <groupId>org.unitils</groupId>
520 <artifactId>unitils</artifactId>
521 <version>2.2</version>
522 <scope>test</scope>
523 </dependency>
524 <dependency>
525 <groupId>org.dbunit</groupId>
526 <artifactId>dbunit</artifactId>
527 <version>2.4.4</version>
528 <scope>test</scope>
529 </dependency>
530 </dependencies>
531 </dependencyManagement>
532 </project>