Merge branch 'develop' of wp5.e-taxonomy.eu:/var/git/taxeditor into remoting-4.0
[taxeditor.git] / eu.etaxonomy.taxeditor.cdmlib / pom.xml
1 <<<<<<< HEAD
2 <?xml version="1.0" encoding="UTF-8"?>
3 <project>
4
5 <parent>
6 <groupId>eu.etaxonomy</groupId>
7 <artifactId>taxeditor-parent</artifactId>
8 <version>3.6.1-SNAPSHOT</version>
9 </parent>
10 <modelVersion>4.0.0</modelVersion>
11 <artifactId>eu.etaxonomy.taxeditor.cdmlib</artifactId>
12 <packaging>eclipse-plugin</packaging>
13 <name>CDM Library Bundle</name>
14 <description>Cdm Library Plugin Taxonomic Editor</description>
15
16 <build>
17 <pluginManagement>
18 <plugins>
19 <plugin>
20 <groupId>org.apache.maven.plugins</groupId>
21 <artifactId>maven-surefire-plugin</artifactId>
22 <version>2.7</version>
23 </plugin>
24 </plugins>
25 </pluginManagement>
26 <plugins>
27 <plugin>
28 <groupId>org.apache.maven.plugins</groupId>
29 <artifactId>maven-dependency-plugin</artifactId>
30 <version>2.4</version>
31 <executions>
32 <execution>
33 <id>copy-dependencies</id>
34 <phase>validate</phase>
35 <goals>
36 <goal>copy-dependencies</goal>
37 </goals>
38 <configuration>
39 <excludeArtifactIds>
40 cdmlib-remote-webapp
41 </excludeArtifactIds>
42 <includeArtifactIds>
43 cdmlib-services,cdmlib-commons,cdmlib-persistence,cdmlib-ext,cdmlib-model,cdmlib-io,cdmlib-print,cdmlib-remote
44 </includeArtifactIds>
45 <outputDirectory>${basedir}/lib</outputDirectory>
46 <overWriteReleases>true</overWriteReleases>
47 <overWriteSnapshots>true</overWriteSnapshots>
48 <excludeTransitive>true</excludeTransitive>
49 </configuration>
50 </execution>
51 <execution>
52 <id>copy-dependency-war</id>
53 <phase>validate</phase>
54 <goals>
55 <goal>copy-dependencies</goal>
56 </goals>
57 <configuration>
58 <includeArtifactIds>
59 cdmlib-remote-webapp
60 </includeArtifactIds>
61 <outputDirectory>
62 ${basedir}/src/main/resources/etc/jetty
63 </outputDirectory>
64 <overWriteReleases>true</overWriteReleases>
65 <overWriteSnapshots>true</overWriteSnapshots>
66 <excludeTransitive>true</excludeTransitive>
67 </configuration>
68 </execution>
69 </executions>
70 </plugin>
71 <plugin>
72 <groupId>org.apache.maven.plugins</groupId>
73 <artifactId>maven-antrun-plugin</artifactId>
74 <version>1.7</version>
75 <executions>
76 <execution>
77 <id>update-snapshot-jar-names</id>
78 <phase>validate</phase>
79 <goals>
80 <goal>run</goal>
81 </goals>
82 <configuration>
83 <target>
84 <echo>Anonymizing war</echo>
85 <move todir="./src/main/resources/etc/jetty">
86 <fileset dir="./src/main/resources/etc/jetty" />
87 <mapper type="regexp"
88 from="(^cdmlib\-.*)\-[0-9]\.[0-9]\.[0-9]\-SNAPSHOT(\.war)"
89 to="\1\2" />
90 </move>
91 <move todir="./src/main/resources/etc/jetty">
92 <fileset dir="./src/main/resources/etc/jetty" />
93 <mapper type="regexp"
94 from="(^cdmlib\-.*)\-[0-9]\.[0-9]\.[0-9]\-[0-9.-]+(\.war)"
95 to="\1\2" />
96 </move>
97 <echo>Update cdmlib jars to SNAPSHOT when build with
98 timestamp
99 </echo>
100 <move todir="./lib">
101 <fileset dir="./lib" />
102 <mapper type="regexp"
103 from="(^cdmlib\-.*\-[0-9]\.[0-9]\.[0-9]\-)[0-9.-]+(\.jar)"
104 to="\1SNAPSHOT\2" />
105 </move>
106 <move todir="./lib">
107 <fileset dir="./lib" />
108 <mapper type="regexp"
109 from="(^cdmlib\-.*\-[0-9]\.[0-9]\.[0-9]\-)[0-9.-]+(\-sources\.jar)"
110 to="\1SNAPSHOT\2" />
111 </move>
112 </target>
113 </configuration>
114 </execution>
115 </executions>
116 </plugin>
117 </plugins>
118 </build>
119 <profiles>
120 <profile>
121 <id>cleanCdmlibJars</id>
122 <build>
123 <plugins>
124 <plugin>
125 <artifactId>maven-clean-plugin</artifactId>
126 <version>2.3</version>
127 <configuration>
128 <filesets>
129 <fileset>
130 <directory>${basedir}/lib</directory>
131 <includes>
132 <include>cdmlib-*</include>
133 </includes>
134 <followSymlinks>false</followSymlinks>
135 </fileset>
136 </filesets>
137 </configuration>
138 </plugin>
139 </plugins>
140 </build>
141 </profile>
142 <profile>
143 <id>cleanAllJars</id>
144 <build>
145 <plugins>
146 <plugin>
147 <artifactId>maven-clean-plugin</artifactId>
148 <version>2.3</version>
149 <configuration>
150 <filesets>
151 <fileset>
152 <directory>${basedir}/lib</directory>
153 <includes>
154 <include>*</include>
155 </includes>
156 <followSymlinks>false</followSymlinks>
157 </fileset>
158 </filesets>
159 </configuration>
160 </plugin>
161 </plugins>
162 </build>
163 </profile>
164 <profile>
165 <id>copyAllJars</id>
166 <build>
167 <plugins>
168 <plugin>
169 <groupId>org.apache.maven.plugins</groupId>
170 <artifactId>maven-dependency-plugin</artifactId>
171 <version>2.4</version>
172 <executions>
173 <execution>
174 <id>copy-all-dependencies</id>
175 <phase>validate</phase>
176 <goals>
177 <goal>copy-dependencies</goal>
178 </goals>
179 <configuration>
180 <excludeArtifactIds>
181 cdmlib-remote-webapp
182 </excludeArtifactIds>
183 <outputDirectory>${basedir}/lib</outputDirectory>
184 <overWriteReleases>true</overWriteReleases>
185 <overWriteSnapshots>true</overWriteSnapshots>
186 <excludeTransitive>true</excludeTransitive>
187 </configuration>
188 </execution>
189 </executions>
190 </plugin>
191 </plugins>
192 </build>
193 </profile>
194 </profiles>
195 <repositories>
196 <repository>
197 <id>SpringSource Enterprise Bundle Repository - External Bundle
198 Milestones
199 </id>
200 <url>http://repository.springsource.com/maven/bundles/milestone
201 </url>
202 </repository>
203 <repository>
204 <id>SpringSource Enterprise Bundle Repository - SpringSource
205 Bundle
206 Releases
207 </id>
208 <url>http://repository.springsource.com/maven/bundles/release
209 </url>
210 </repository>
211 <repository>
212 <id>SpringSource Enterprise Bundle Repository - External Bundle
213 Releases
214 </id>
215 <url>http://repository.springsource.com/maven/bundles/external
216 </url>
217 </repository>
218 </repositories>
219 <dependencies>
220 <dependency>
221 <groupId>eu.etaxonomy</groupId>
222 <artifactId>cdmlib-remote-webapp</artifactId>
223 <version>${cdmlib.version}</version>
224 <type>war</type>
225 </dependency>
226 <dependency>
227 <groupId>eu.etaxonomy</groupId>
228 <artifactId>cdmlib-commons</artifactId>
229 <version>${cdmlib.version}</version>
230 </dependency>
231 <dependency>
232 <groupId>eu.etaxonomy</groupId>
233 <artifactId>cdmlib-model</artifactId>
234 <version>${cdmlib.version}</version>
235 </dependency>
236 <dependency>
237 <groupId>eu.etaxonomy</groupId>
238 <artifactId>cdmlib-persistence</artifactId>
239 <version>${cdmlib.version}</version>
240 </dependency>
241 <dependency>
242 <groupId>eu.etaxonomy</groupId>
243 <artifactId>cdmlib-remote</artifactId>
244 <version>${cdmlib.version}</version>
245 </dependency>
246 <dependency>
247 <groupId>eu.etaxonomy</groupId>
248 <artifactId>cdmlib-print</artifactId>
249 <version>${cdmlib.version}</version>
250 </dependency>
251 <dependency>
252 <groupId>eu.etaxonomy</groupId>
253 <artifactId>cdmlib-services</artifactId>
254 <version>${cdmlib.version}</version>
255 </dependency>
256 <dependency>
257 <groupId>eu.etaxonomy</groupId>
258 <artifactId>cdmlib-io</artifactId>
259 <version>${cdmlib.version}</version>
260 </dependency>
261 <dependency>
262 <groupId>eu.etaxonomy</groupId>
263 <artifactId>cdmlib-ext</artifactId>
264 <version>${cdmlib.version}</version>
265 </dependency>
266
267 <!-- <dependency> -->
268 <!-- <groupId>org.eclipse.jetty</groupId> -->
269 <!-- <artifactId>jetty-server</artifactId> -->
270 <!-- <version>9.1.3.v20140225</version> -->
271 <!-- </dependency> -->
272 <!-- <dependency> -->
273 <!-- <groupId>org.eclipse.jetty</groupId> -->
274 <!-- <artifactId>jetty-util</artifactId> -->
275 <!-- <version>9.1.3.v20140225</version> -->
276 <!-- </dependency> -->
277 <!-- <dependency> -->
278 <!-- <groupId>org.eclipse.jetty</groupId> -->
279 <!-- <artifactId>jetty-xml</artifactId> -->
280 <!-- <version>9.1.3.v20140225</version> -->
281 <!-- </dependency> -->
282 <!-- <dependency> -->
283 <!-- <groupId>org.eclipse.jetty</groupId> -->
284 <!-- <artifactId>jetty-servlet</artifactId> -->
285 <!-- <version>9.1.3.v20140225</version> -->
286 <!-- </dependency> -->
287 <!-- <dependency> -->
288 <!-- <groupId>org.eclipse.jetty</groupId> -->
289 <!-- <artifactId>jetty-webapp</artifactId> -->
290 <!-- <version>9.1.3.v20140225</version> -->
291 <!-- </dependency> -->
292 <!-- <dependency> -->
293 <!-- <groupId>org.eclipse.jetty</groupId> -->
294 <!-- <artifactId>jetty-security</artifactId> -->
295 <!-- <version>9.1.3.v20140225</version> -->
296 <!-- </dependency> -->
297 <!-- <dependency> -->
298 <!-- <groupId>org.eclipse.jetty</groupId> -->
299 <!-- <artifactId>jetty-http</artifactId> -->
300 <!-- <version>${jetty.version}</version> -->
301 <!-- </dependency> -->
302 <!-- <dependency> -->
303 <!-- <groupId>org.eclipse.jetty</groupId> -->
304 <!-- <artifactId>jetty-io</artifactId> -->
305 <!-- <version>${jetty.version}</version> -->
306 <!-- </dependency> -->
307 <!-- <dependency> -->
308 <!-- <groupId>javax.servlet</groupId> -->
309 <!-- <artifactId>javax.servlet-api</artifactId> -->
310 <!-- <version>3.1.0</version> -->
311 <!-- </dependency> -->
312
313 <!-- <dependency> -->
314 <!-- <groupId>javax.servlet</groupId> -->
315 <!-- <artifactId>jsp-api</artifactId> -->
316 <!-- <version>2.0</version> -->
317 <!-- </dependency> -->
318
319 <dependency>
320 <groupId>net.sf.ehcache</groupId>
321 <artifactId>ehcache-core</artifactId>
322 <version>2.4.3</version>
323 </dependency>
324 <dependency>
325 <groupId>org.hibernate</groupId>
326 <artifactId>hibernate-core</artifactId>
327 <version>4.1.10.Final</version>
328 </dependency>
329 <dependency>
330 <groupId>org.hibernate.common</groupId>
331 <artifactId>hibernate-commons-annotations</artifactId>
332 <version>4.0.1.Final</version>
333 </dependency>
334 <dependency>
335 <groupId>org.hibernate</groupId>
336 <artifactId>hibernate-search-engine</artifactId>
337 <version>4.2.0.Final</version>
338 </dependency>
339 <dependency>
340 <groupId>org.hibernate.javax.persistence</groupId>
341 <artifactId>hibernate-jpa-2.0-api</artifactId>
342 <version>1.0.1.Final</version>
343 </dependency>
344 <dependency>
345 <groupId>org.hibernate</groupId>
346 <artifactId>hibernate-envers</artifactId>
347 <version>4.1.10.Final</version>
348 </dependency>
349 <dependency>
350 <groupId>org.hibernate</groupId>
351 <artifactId>hibernate-entitymanager</artifactId>
352 <version>4.1.10.Final</version>
353 </dependency>
354 <dependency>
355 <groupId>dom4j</groupId>
356 <artifactId>dom4j</artifactId>
357 <version>1.6</version>
358 </dependency>
359 <dependency>
360 <groupId>org.jadira.usertype</groupId>
361 <artifactId>usertype.jodatime</artifactId>
362 <version>2.0.1</version>
363 </dependency>
364 <dependency>
365 <groupId>org.jadira.usertype</groupId>
366 <artifactId>usertype.spi</artifactId>
367 <version>2.0.1</version>
368 </dependency>
369
370 <dependency>
371 <groupId>junit</groupId>
372 <artifactId>junit</artifactId>
373 <version>4.11</version>
374 <scope>test</scope>
375 </dependency>
376 <dependency>
377 <groupId>log4j</groupId>
378 <artifactId>log4j</artifactId>
379 <version>1.2.17</version>
380 </dependency>
381 <dependency>
382 <groupId>org.jdom</groupId>
383 <artifactId>jdom</artifactId>
384 <version>1.1.3</version>
385 </dependency>
386 <dependency>
387 <groupId>org.springframework</groupId>
388 <artifactId>org.springframework.context</artifactId>
389 <version>3.2.2.RELEASE</version>
390 </dependency>
391 <dependency>
392 <groupId>org.springframework</groupId>
393 <artifactId>org.springframework.context.support</artifactId>
394 <version>3.2.2.RELEASE</version>
395 </dependency>
396 <dependency>
397 <groupId>org.springframework</groupId>
398 <artifactId>org.springframework.aspects</artifactId>
399 <version>3.2.2.RELEASE</version>
400 </dependency>
401 <dependency>
402 <groupId>org.springframework</groupId>
403 <artifactId>org.springframework.test</artifactId>
404 <version>3.2.2.RELEASE</version>
405 </dependency>
406 <dependency>
407 <groupId>org.springframework</groupId>
408 <artifactId>org.springframework.beans</artifactId>
409 <version>3.2.2.RELEASE</version>
410 </dependency>
411 <dependency>
412 <groupId>org.springframework</groupId>
413 <artifactId>org.springframework.transaction</artifactId>
414 <version>3.2.2.RELEASE</version>
415 </dependency>
416 <dependency>
417 <groupId>org.springframework</groupId>
418 <artifactId>org.springframework.web</artifactId>
419 <version>3.2.2.RELEASE</version>
420 </dependency>
421 <dependency>
422 <groupId>org.springframework</groupId>
423 <artifactId>org.springframework.core</artifactId>
424 <version>3.2.2.RELEASE</version>
425 </dependency>
426 <dependency>
427 <groupId>org.springframework</groupId>
428 <artifactId>org.springframework.aop</artifactId>
429 <version>3.2.2.RELEASE</version>
430 </dependency>
431 <dependency>
432 <groupId>org.springframework</groupId>
433 <artifactId>org.springframework.expression</artifactId>
434 <version>3.2.2.RELEASE</version>
435 </dependency>
436 <dependency>
437 <groupId>org.springframework</groupId>
438 <artifactId>org.springframework.orm</artifactId>
439 <version>3.2.2.RELEASE</version>
440 </dependency>
441 <dependency>
442 <groupId>org.springframework</groupId>
443 <artifactId>org.springframework.jdbc</artifactId>
444 <version>3.2.2.RELEASE</version>
445 </dependency>
446 <dependency>
447 <groupId>org.springframework.security</groupId>
448 <artifactId>spring-security-core</artifactId>
449 <version>3.1.3.RELEASE</version>
450 </dependency>
451 <dependency>
452 <groupId>org.springframework.security</groupId>
453 <artifactId>spring-security-config</artifactId>
454 <version>3.1.3.RELEASE</version>
455 </dependency>
456 <dependency>
457 <groupId>org.springframework.security</groupId>
458 <artifactId>spring-security-remoting</artifactId>
459 <version>3.1.3.RELEASE</version>
460 </dependency>
461 <dependency>
462 <groupId>org.jboss.logging</groupId>
463 <artifactId>jboss-logging</artifactId>
464 <version>3.1.3.GA</version>
465 </dependency>
466 <dependency>
467 <groupId>org.hamcrest</groupId>
468 <artifactId>hamcrest-core</artifactId>
469 <version>1.3</version>
470 </dependency>
471 <dependency>
472 <groupId>com.mchange</groupId>
473 <artifactId>c3p0</artifactId>
474 <version>0.9.2</version>
475 </dependency>
476 <dependency>
477 <groupId>org.jboss.spec.javax.transaction</groupId>
478 <artifactId>jboss-transaction-api_1.1_spec</artifactId>
479 <version>1.0.0.Final</version>
480 </dependency>
481 <dependency>
482 <groupId>org.aspectj</groupId>
483 <artifactId>aspectjrt</artifactId>
484 <version>1.7.1</version>
485 </dependency>
486 <dependency>
487 <groupId>commons-logging</groupId>
488 <artifactId>commons-logging</artifactId>
489 <version>1.1.1</version>
490 </dependency>
491 <dependency>
492 <groupId>commons-lang</groupId>
493 <artifactId>commons-lang</artifactId>
494 <version>2.6</version>
495 </dependency>
496 <dependency>
497 <groupId>aopalliance</groupId>
498 <artifactId>aopalliance</artifactId>
499 <version>1.0</version>
500 </dependency>
501 <dependency>
502 <groupId>joda-time</groupId>
503 <artifactId>joda-time</artifactId>
504 <version>2.1</version>
505 </dependency>
506 <dependency>
507 <groupId>com.ibm.lsid</groupId>
508 <artifactId>lsid-client</artifactId>
509 <version>1.1.2</version>
510 </dependency>
511 <dependency>
512 <groupId>com.ibm.lsid</groupId>
513 <artifactId>lsid-server</artifactId>
514 <version>1.1.2</version>
515 </dependency>
516 <dependency>
517 <groupId>org.apache.lucene</groupId>
518 <artifactId>lucene-core</artifactId>
519 <version>3.6.2</version>
520 </dependency>
521 <dependency>
522 <groupId>org.slf4j</groupId>
523 <artifactId>slf4j-api</artifactId>
524 <version>1.7.2</version>
525 </dependency>
526 <dependency>
527 <groupId>org.javassist</groupId>
528 <artifactId>javassist</artifactId>
529 <version>3.17.1-GA</version>
530 </dependency>
531 <dependency>
532 <groupId>au.com.bytecode</groupId>
533 <artifactId>opencsv</artifactId>
534 <version>2.4</version>
535 </dependency>
536
537 <!-- For Unit Tests Start -->
538
539 <dependency>
540 <groupId>org.unitils</groupId>
541 <artifactId>unitils-core</artifactId>
542 <version>3.4.2</version>
543 </dependency>
544 <dependency>
545 <groupId>org.unitils</groupId>
546 <artifactId>unitils-spring</artifactId>
547 <version>3.4.2</version>
548 </dependency>
549 <dependency>
550 <groupId>org.unitils</groupId>
551 <artifactId>unitils-database</artifactId>
552 <version>3.4.2</version>
553 </dependency>
554 <dependency>
555 <groupId>commons-dbcp</groupId>
556 <artifactId>commons-dbcp</artifactId>
557 <version>1.4</version>
558 </dependency>
559 <dependency>
560 <groupId>commons-pool</groupId>
561 <artifactId>commons-pool</artifactId>
562 <version>1.5.4</version>
563 </dependency>
564 <dependency>
565 <groupId>org.unitils</groupId>
566 <artifactId>unitils-dbmaintainer</artifactId>
567 <version>3.4.2</version>
568 </dependency>
569 <dependency>
570 <groupId>com.h2database</groupId>
571 <artifactId>h2</artifactId>
572 <version>1.4.181</version>
573 </dependency>
574 <dependency>
575 <groupId>org.unitils</groupId>
576 <artifactId>unitils-dbunit</artifactId>
577 <version>3.4.2</version>
578 </dependency>
579 <dependency>
580 <groupId>org.dbunit</groupId>
581 <artifactId>dbunit</artifactId>
582 <version>2.4.9</version>
583 </dependency>
584 <!-- For Unit Tests End -->
585
586 <!-- For Hibernate Mapping Start -->
587 <dependency>
588 <groupId>wsdl4j</groupId>
589 <artifactId>wsdl4j</artifactId>
590 <version>1.6.3</version>
591 </dependency>
592 <dependency>
593 <groupId>javax.validation</groupId>
594 <artifactId>validation-api</artifactId>
595 <version>1.1.0.Final</version>
596 </dependency>
597 <!-- For Hibernate Mapping End -->
598 </dependencies>
599 =======
600 <?xml version="1.0" encoding="UTF-8"?>
601 <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">
602 <parent>
603 <groupId>eu.etaxonomy</groupId>
604 <artifactId>taxeditor-parent</artifactId>
605 <version>3.6.1-SNAPSHOT</version>
606 </parent>
607 <modelVersion>4.0.0</modelVersion>
608 <artifactId>eu.etaxonomy.taxeditor.cdmlib</artifactId>
609 <packaging>eclipse-plugin</packaging>
610 <name>CDM Library Dependencies Plugin</name>
611 <description>CDM Library and dependencies as a plugin</description>
612 <build>
613 <plugins>
614 <plugin>
615 <groupId>org.apache.maven.plugins</groupId>
616 <artifactId>maven-dependency-plugin</artifactId>
617 <version>2.4</version>
618 <executions>
619 <execution>
620 <id>copy-dependencies</id>
621 <phase>validate</phase>
622 <goals>
623 <goal>copy-dependencies</goal>
624 </goals>
625 <configuration>
626 <includeArtifactIds>cdmlib-commons,cdmlib-model,cdmlib-persistence,cdmlib-remote,cdmlib-print,cdmlib-services,cdmlib-ext,cdmlib-io</includeArtifactIds>
627 <outputDirectory>lib</outputDirectory>
628 <overWriteReleases>true</overWriteReleases>
629 <overWriteSnapshots>true</overWriteSnapshots>
630 <excludeTransitive>true</excludeTransitive>
631 </configuration>
632 </execution>
633 <execution>
634 <id>copy-dependencies-sources</id>
635 <phase>validate</phase>
636 <goals>
637 <goal>copy-dependencies</goal>
638 </goals>
639 <configuration>
640 <classifier>sources</classifier>
641 <includeArtifactIds>cdmlib-commons,cdmlib-model,cdmlib-persistence,cdmlib-remote,cdmlib-print,cdmlib-services,cdmlib-ext,cdmlib-io</includeArtifactIds>
642 <outputDirectory>lib</outputDirectory>
643 <overWriteReleases>true</overWriteReleases>
644 <overWriteSnapshots>true</overWriteSnapshots>
645 <excludeTransitive>true</excludeTransitive>
646 <failOnMissingClassifierArtifact>false</failOnMissingClassifierArtifact>
647 </configuration>
648 </execution>
649 </executions>
650 </plugin>
651 <plugin>
652 <groupId>org.apache.maven.plugins</groupId>
653 <artifactId>maven-antrun-plugin</artifactId>
654 <version>1.7</version>
655 <executions>
656 <execution>
657 <id>remove-existing-jars</id>
658 <phase>clean</phase>
659 <goals>
660 <goal>run</goal>
661 </goals>
662 <configuration>
663 <target>
664 <echo>Remove all cdmlib jars</echo>
665 <delete>
666 <fileset dir="./lib" includes="cdmlib-*" />
667 </delete>
668 </target>
669 </configuration>
670 </execution>
671 <execution>
672 <id>update-snapshot-jar-names</id>
673 <phase>validate</phase>
674 <goals>
675 <goal>run</goal>
676 </goals>
677 <configuration>
678 <target>
679 <echo>Update cdmlib jars to SNAPSHOT when build with timestamp</echo>
680 <move todir="./lib">
681 <fileset dir="./lib" />
682 <mapper type="regexp" from="(^cdmlib\-.*\-[0-9]\.[0-9]\.[0-9]\-)[0-9.-]+(\.jar)" to="\1SNAPSHOT\2" />
683 </move>
684 <move todir="./lib">
685 <fileset dir="./lib" />
686 <mapper type="regexp" from="(^cdmlib\-.*\-[0-9]\.[0-9]\.[0-9]\-)[0-9.-]+(\-sources\.jar)" to="\1SNAPSHOT\2" />
687 </move>
688 </target>
689 </configuration>
690 </execution>
691 </executions>
692 </plugin>
693 </plugins>
694 </build>
695 <dependencies>
696 <dependency>
697 <groupId>identificationKeyAPI</groupId>
698 <artifactId>identificationKeyAPI</artifactId>
699 <version>1.0-SNAPSHOT</version>
700 </dependency>
701 <dependency>
702 <groupId>eu.etaxonomy</groupId>
703 <artifactId>cdmlib-commons</artifactId>
704 <version>${cdmlib.version}</version>
705 </dependency>
706 <dependency>
707 <groupId>eu.etaxonomy</groupId>
708 <artifactId>cdmlib-model</artifactId>
709 <version>${cdmlib.version}</version>
710 </dependency>
711 <dependency>
712 <groupId>eu.etaxonomy</groupId>
713 <artifactId>cdmlib-persistence</artifactId>
714 <version>${cdmlib.version}</version>
715 </dependency>
716 <dependency>
717 <groupId>eu.etaxonomy</groupId>
718 <artifactId>cdmlib-remote</artifactId>
719 <version>${cdmlib.version}</version>
720 </dependency>
721 <dependency>
722 <groupId>eu.etaxonomy</groupId>
723 <artifactId>cdmlib-print</artifactId>
724 <version>${cdmlib.version}</version>
725 </dependency>
726 <dependency>
727 <groupId>eu.etaxonomy</groupId>
728 <artifactId>cdmlib-services</artifactId>
729 <version>${cdmlib.version}</version>
730 </dependency>
731 <dependency>
732 <groupId>eu.etaxonomy</groupId>
733 <artifactId>cdmlib-io</artifactId>
734 <version>${cdmlib.version}</version>
735 </dependency>
736 <dependency>
737 <groupId>eu.etaxonomy</groupId>
738 <artifactId>cdmlib-ext</artifactId>
739 <version>${cdmlib.version}</version>
740 </dependency>
741 <dependency>
742 <groupId>org.aspectj</groupId>
743 <artifactId>aspectjrt</artifactId>
744 <version>1.7.1</version>
745 </dependency>
746 <dependency>
747 <groupId>org.aspectj</groupId>
748 <artifactId>aspectjweaver</artifactId>
749 <version>1.7.1</version>
750 </dependency>
751
752 <!-- for ikey-plus
753 TODO this should not be needed but the utils class contained in this jar
754 seems to be loaded as bean by spring
755 -->
756 </dependencies>
757 >>>>>>> d24b444b7bf4e1bd048f864bcfede121794caddf
758 </project>