Statistics
| Branch: | Revision:

m2u-upass-admin / pom.xml @ 137:5a146099297b

History | View | Annotate | Download (20.2 KB)

1
<?xml version="1.0"?>
2
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3
        xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
4

    
5
        <modelVersion>4.0.0</modelVersion>
6

    
7
        <groupId>net.penril</groupId>
8
        <artifactId>m2u-upass-admin</artifactId>
9
        <version>2.0-SNAPSHOT</version>
10
        <packaging>war</packaging>
11
        <name>M2U UPass Admin</name>
12
        <properties>
13
                <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
14
                <cobertura.version>1.9.4.1</cobertura.version>
15
                <config.postfix />
16
                <m2u-upass-classifier />
17
        </properties>
18
        <reporting>
19
                <plugins>
20
                        <plugin>
21
                                <groupId>org.codehaus.mojo</groupId>
22
                                <artifactId>cobertura-maven-plugin</artifactId>
23
                                <version>2.5.1</version>
24
                        </plugin>
25
                </plugins>
26
        </reporting>
27
        <distributionManagement>
28
                <snapshotRepository>
29
                        <id>penril.nexus.repo</id>
30
                        <name>Penril Nexus Repo</name>
31
                        <url>scp://staging.penril.net/usr/share/tomcat5/sonatype-work/nexus/storage/snapshots</url>
32
                        <uniqueVersion>false</uniqueVersion>
33
                </snapshotRepository>
34
        </distributionManagement>
35
        <build>
36
                <pluginManagement>
37
                        <plugins>
38
                                <plugin>
39
                                        <groupId>org.codehaus.mojo</groupId>
40
                                        <artifactId>cobertura-maven-plugin</artifactId>
41
                                        <version>2.5.1</version>
42
                                </plugin>
43
                                <plugin>
44
                                        <groupId>org.apache.maven.plugins</groupId>
45
                                        <artifactId>maven-antrun-plugin</artifactId>
46
                                        <version>1.6</version>
47
                                </plugin>
48
                                <plugin>
49
                                        <groupId>org.glassfish</groupId>
50
                                        <artifactId>maven-embedded-glassfish-plugin</artifactId>
51
                                        <version>3.1.1</version>
52
                                        <configuration>
53
                                                <goalPrefix>embedded-glassfish</goalPrefix>
54
                                                <autoDelete>true</autoDelete>
55
                                                <ports>
56
                                                        <http-listener>9100</http-listener>
57
                                                        <https-listener>9103</https-listener>
58
                                                </ports>
59
                                                <contextRoot>${project.artifactId}</contextRoot>
60
                                        </configuration>
61
                                </plugin>
62
                                <plugin>
63
                                        <groupId>org.apache.maven.plugins</groupId>
64
                                        <artifactId>maven-compiler-plugin</artifactId>
65
                                        <version>2.3.2</version>
66
                                        <configuration>
67
                                                <source>1.6</source>
68
                                                <target>1.6</target>
69
                                        </configuration>
70
                                </plugin>
71
                        </plugins>
72
                </pluginManagement>
73
                <sourceDirectory>src</sourceDirectory>
74
                <resources>
75
                        <resource>
76
                                <directory>resource</directory>
77
                        </resource>
78
                </resources>
79
                <testSourceDirectory>test</testSourceDirectory>
80
                <!-- <outputDirectory>${basedir}/WebContent/WEB-INF/classes</outputDirectory> -->
81
                <plugins>
82
                        <plugin>
83
                                <groupId>org.apache.maven.plugins</groupId>
84
                                <artifactId>maven-war-plugin</artifactId>
85
                                <version>2.1.1</version>
86
                                <configuration>
87
                                        <warSourceDirectory>${basedir}/WebContent</warSourceDirectory>
88
                                </configuration>
89
                        </plugin>
90
                        <plugin>
91
                                <groupId>org.apache.maven.plugins</groupId>
92
                                <artifactId>maven-compiler-plugin</artifactId>
93
                                <version>2.3.2</version>
94
                                <configuration>
95
                                        <source>1.6</source>
96
                                        <target>1.6</target>
97
                                </configuration>
98
                        </plugin>
99
                        <plugin>
100
                                <artifactId>maven-failsafe-plugin</artifactId>
101
                                <version>2.6</version>
102
                                <executions>
103
                                        <execution>
104
                                                <goals>
105
                                                        <goal>integration-test</goal>
106
                                                        <goal>verify</goal>
107
                                                </goals>
108
                                        </execution>
109
                                </executions>
110
                                <configuration>
111
                                <includes>
112
                                        <include>**/FirstTestWithSeleniumBuilder.java</include>
113
                                        <include>**/AnotherTestWithSeleniumBuilder.java</include>
114
                                </includes>
115
                                </configuration>
116
                                <dependencies>
117
                                        <dependency>
118
                                                <groupId>net.sourceforge.cobertura</groupId>
119
                                                <artifactId>cobertura-runtime</artifactId>
120
                                                <version>${cobertura.version}</version>
121
                                                <!-- <scope>provided</scope> -->
122
                                                <scope>compile</scope>
123
                                                <type>pom</type>
124
                                        </dependency>
125
                                </dependencies>
126
                        </plugin>
127
                </plugins>
128
        </build>
129

    
130

    
131

    
132
        <profiles>
133
                <profile>
134
                        <id>env-staging-ci</id>
135
                        <activation>
136
                                <property>
137
                                        <name>env</name>
138
                                        <value>staging-ci</value>
139
                                </property>
140
                        </activation>
141
                        <properties>
142
                                <config.postfix>.staging-ci</config.postfix>
143
                        </properties>
144
                        <build>
145
                                <plugins>
146
                                        <plugin>
147
                                                <groupId>org.glassfish</groupId>
148
                                                <artifactId>maven-embedded-glassfish-plugin</artifactId>
149
                                                <configuration>
150
                                                        <app>${project.build.directory}/${project.artifactId}-${project.version}-${m2u-upass-classifier}.war</app>
151
                                                        <!-- <app>${project.build.directory}/${project.artifactId}-${project.version}</app> -->
152
                                                </configuration>
153
                                                <executions>
154
                                                        <execution>
155
                                                                <id>start-glassfish</id>
156
                                                                <phase>pre-integration-test</phase>
157
                                                                <goals>
158
                                                                        <goal>start</goal>
159
                                                                </goals>
160
                                                        </execution>
161
                                                        <execution>
162
                                                                <id>glassfish-deploy</id>
163
                                                                <phase>pre-integration-test</phase>
164
                                                                <goals>
165
                                                                        <goal>deploy</goal>
166
                                                                </goals>
167
                                                        </execution>
168
                                                </executions>
169
                                                <dependencies>
170
                                                        <dependency>
171
                                                                <groupId>net.sourceforge.cobertura</groupId>
172
                                                                <artifactId>cobertura-runtime</artifactId>
173
                                                                <version>${cobertura.version}</version>
174
                                                                <!-- <scope>provided</scope> -->
175
                                                                <scope>compile</scope>
176
                                                                <type>pom</type>
177
                                                        </dependency>
178
                                                </dependencies>
179
                                        </plugin>
180
                                        <plugin>
181
                                                <artifactId>maven-surefire-plugin</artifactId>
182
                                                <configuration>
183
                                                        <classesDirectory>${project.build.directory}/generated-classes/cobertura</classesDirectory>
184
                                                        <forkMode>none</forkMode>
185
                                                        <skipTests>true</skipTests>
186
                                                </configuration>
187
                                        </plugin>
188
                                </plugins>
189
                        </build>
190
                        <dependencies>
191
                                <dependency>
192
                                        <groupId>axis</groupId>
193
                                        <artifactId>axis</artifactId>
194
                                        <version>1.4</version>
195
                                        <type>jar</type>
196
                                        <scope>compile</scope>
197
                                </dependency>
198
                        </dependencies>
199
                </profile>
200
                <profile>
201
                        <id>env-dev-m2u</id>
202
                        <activation>
203
                                <property>
204
                                        <name>env</name>
205
                                        <value>dev-m2u</value>
206
                                </property>
207
                        </activation>
208
                        <properties>
209
                                <config.postfix>.dev-m2u</config.postfix>
210
                        </properties>
211
                </profile>
212
                <profile>
213
                        <id>env-ant</id>
214
                        <activation>
215
                                <property>
216
                                        <name>env</name>
217
                                </property>
218
                        </activation>
219
                        <build>
220
                                <plugins>
221
                                        <plugin>
222
                                                <artifactId>maven-antrun-plugin</artifactId>
223
                                                <executions>
224
                                                        <execution>
225
                                                                <id>env-config</id>
226
                                                                <phase>process-resources</phase>
227
                                                                <configuration>
228
                                                                        <target>
229
                                                                                <delete file="${project.build.outputDirectory}/hibernate.cfg.xml" />
230
                                                                                <copy file="resource/hibernate${config.postfix}.cfg.xml" tofile="${project.build.outputDirectory}/hibernate.cfg.xml" />
231

    
232
                                                                                <delete>
233
                                                                                        <fileset dir="${project.build.outputDirectory}" includes="hibernate.*.cfg.xml" />
234
                                                                                </delete>
235

    
236
                                                                                <delete file="${project.build.outputDirectory}/UPassClient.cfg" />
237
                                                                                <copy file="resource/UPassClient${config.postfix}.cfg" tofile="${project.build.outputDirectory}/UPassClient.cfg" />
238

    
239
                                                                                <delete>
240
                                                                                        <fileset dir="${project.build.outputDirectory}" includes="UPassClient.*.cfg" />
241
                                                                                </delete>
242

    
243
                                                                                <delete file="${project.build.outputDirectory}/AppConfig.properties" />
244
                                                                                <copy file="resource/AppConfig${config.postfix}.properties" tofile="${project.build.outputDirectory}/AppConfig.properties" />
245

    
246
                                                                                <delete>
247
                                                                                        <fileset dir="${project.build.outputDirectory}" includes="AppConfig.*.properties" />
248
                                                                                </delete>
249

    
250
                                                                                <delete file="${project.build.outputDirectory}/log4j.xml" />
251
                                                                                <copy file="resource/log4j${config.postfix}.xml" tofile="${project.build.outputDirectory}/log4j.xml" />
252

    
253
                                                                                <delete>
254
                                                                                        <fileset dir="${project.build.outputDirectory}" includes="log4j.*.xml" />
255
                                                                                </delete>
256

    
257
                                                                        </target>
258
                                                                </configuration>
259
                                                                <goals>
260
                                                                        <goal>run</goal>
261
                                                                </goals>
262
                                                        </execution>
263
                                                </executions>
264
                                        </plugin>
265
                                </plugins>
266
                        </build>
267
                </profile>
268
                <profile>
269
                        <id>env-dev-penril</id>
270
                        <activation>
271
                                <property>
272
                                        <name>env</name>
273
                                        <value>dev-penril</value>
274
                                </property>
275
                        </activation>
276
                        <properties>
277
                                <config.postfix>.dev-penril</config.postfix>
278
                        </properties>
279
                </profile>
280
                <profile>
281
                        <id>env-maybank-dev</id>
282
                        <activation>
283
                                <property>
284
                                        <name>env</name>
285
                                        <value>maybank-dev</value>
286
                                </property>
287
                        </activation>
288
                        <properties>
289
                                <config.postfix>.maybank-dev</config.postfix>
290
                        </properties>
291
                        <build>
292
                                <plugins>
293
                                        <plugin>
294
                                                <groupId>org.glassfish</groupId>
295
                                                <artifactId>maven-embedded-glassfish-plugin</artifactId>
296
                                                <configuration>
297
                                                        <app>${project.build.directory}/${project.artifactId}-${project.version}.war</app>
298
                                                </configuration>
299
                                        </plugin>
300
                                </plugins>
301
                        </build>
302
                </profile>
303
                <profile>
304
                        <id>env-maybank-prod</id>
305
                        <activation>
306
                                <property>
307
                                        <name>env</name>
308
                                        <value>maybank-prod</value>
309
                                </property>
310
                        </activation>
311
                        <properties>
312
                                <config.postfix>.maybank-prod</config.postfix>
313
                        </properties>
314
                        <build>
315
                                <plugins>
316
                                        <plugin>
317
                                                <groupId>org.glassfish</groupId>
318
                                                <artifactId>maven-embedded-glassfish-plugin</artifactId>
319
                                                <configuration>
320
                                                        <app>${project.build.directory}/${project.artifactId}-${project.version}.war</app>
321
                                                </configuration>
322
                                        </plugin>
323
                                </plugins>
324
                        </build>
325
                </profile>
326

    
327

    
328
                <profile>
329
                        <id>env-staging-penril</id>
330
                        <activation>
331
                                <property>
332
                                        <name>env</name>
333
                                        <value>staging-penril</value>
334
                                </property>
335
                        </activation>
336
                        <properties>
337
                                <config.postfix>.staging-penril</config.postfix>
338
                        </properties>
339
                        <build>
340
                                <plugins>
341
                                        <plugin>
342
                                                <artifactId>maven-antrun-plugin</artifactId>
343
                                                <configuration>
344
                                                        <target>
345
                                                                <copy file="${basedir}/target/${artifactId}-${version}.war" tofile="/var/lib/jenkins/was-workspace/{artifactId}/${artifactId}-${version}.war" />
346
                                                        </target>
347
                                                </configuration>
348
                                                <executions>
349
                                                        <execution>
350
                                                                <id>was-deployer</id>
351
                                                                <phase>install</phase>
352
                                                                <goals>
353
                                                                        <goal>run</goal>
354
                                                                </goals>
355
                                                        </execution>
356
                                                </executions>
357
                                        </plugin>
358

    
359
                                </plugins>
360
                        </build>
361
                </profile>
362

    
363

    
364

    
365
                <profile>
366
                        <id>cobertura-instrument</id>
367
                        <activation>
368
                                <property>
369
                                        <name>cobertura-build</name>
370
                                </property>
371
                        </activation>
372
                        <properties>
373
                                <m2u-upass-classifier>instrumented</m2u-upass-classifier>
374
                        </properties>
375
                        <distributionManagement>
376
                                <snapshotRepository>
377
                                        <id>penril.nexus.repo.coverage</id>
378
                                        <name>Penril Nexus Repo Coverage</name>
379
                                        <url>scp://staging.penril.net/usr/share/tomcat5/sonatype-work/nexus/storage/snapshots-coverage</url>
380
                                </snapshotRepository>
381
                        </distributionManagement>
382
                        <build>
383
                                <plugins>
384
                                        <plugin>
385
                                                <artifactId>maven-war-plugin</artifactId>
386
                                                <configuration>
387
                                                        <classifier>${m2u-upass-classifier}</classifier>
388
                                                        <packagingExcludes>WEB-INF/lib/m2u-upass-*SNAPSHOT.jar</packagingExcludes>
389
                                                </configuration>
390
                                        </plugin>
391
                                        <plugin>
392
                                                <groupId>org.codehaus.mojo</groupId>
393
                                                <artifactId>cobertura-maven-plugin</artifactId>
394
                                                <configuration>
395
                                                        <formats>
396
                                                                <format>html</format>
397
                                                                <format>xml</format>
398
                                                        </formats>
399

    
400
                                                        <!-- TODO: To be configured... -->
401
                                                        <instrumentation>
402
                                                                <ignores>
403
                                                                        <ignore>com.example.boringcode.*</ignore>
404
                                                                </ignores>
405
                                                                <excludes>
406
                                                                        <exclude>com/example/dullcode/**/*.class</exclude>
407
                                                                        <exclude>com/example/**/*Test.class</exclude>
408
                                                                </excludes>
409
                                                        </instrumentation>
410

    
411
                                                        <!-- TODO: To be configured... -->
412
                                                        <check>
413
                                                                <branchRate>85</branchRate>
414
                                                                <lineRate>85</lineRate>
415
                                                                <haltOnFailure>true</haltOnFailure>
416
                                                                <totalBranchRate>85</totalBranchRate>
417
                                                                <totalLineRate>85</totalLineRate>
418
                                                                <packageLineRate>85</packageLineRate>
419
                                                                <packageBranchRate>85</packageBranchRate>
420
                                                                <regexes>
421
                                                                        <regex>
422
                                                                                <pattern>com.example.reallyimportant.*</pattern>
423
                                                                                <branchRate>90</branchRate>
424
                                                                                <lineRate>80</lineRate>
425
                                                                        </regex>
426
                                                                        <regex>
427
                                                                                <pattern>com.example.boringcode.*</pattern>
428
                                                                                <branchRate>40</branchRate>
429
                                                                                <lineRate>30</lineRate>
430
                                                                        </regex>
431
                                                                </regexes>
432
                                                        </check>
433
                                                </configuration>
434
                                                <executions>
435
                                                        <execution>
436
                                                                <id>instrument-code</id>
437
                                                                <phase>process-classes</phase>
438
                                                                <goals>
439
                                                                        <goal>instrument</goal>
440
                                                                </goals>
441
                                                                <configuration>
442
                                                                        <attach>true</attach>
443
                                                                </configuration>
444
                                                        </execution>
445
                                                </executions>
446
                                        </plugin>
447
                                        <plugin>
448
                                                <artifactId>maven-source-plugin</artifactId>
449
                                                <executions>
450
                                                        <execution>
451
                                                                <id>attach-sources</id>
452
                                                                <goals>
453
                                                                        <goal>jar</goal>
454
                                                                </goals>
455
                                                        </execution>
456
                                                </executions>
457
                                                <inherited>true</inherited>
458
                                        </plugin>
459
                                </plugins>
460
                        </build>
461
                        <dependencies>
462
                                <dependency>
463
                                        <groupId>net.sourceforge.cobertura</groupId>
464
                                        <artifactId>cobertura-runtime</artifactId>
465
                                        <version>${cobertura.version}</version>
466
                                        <!-- <scope>provided</scope> -->
467
                                        <scope>compile</scope>
468
                                        <type>pom</type>
469
                                </dependency>
470
                        </dependencies>
471
                </profile>
472
        </profiles>
473

    
474

    
475

    
476
        <dependencies>
477
                <dependency>
478
                        <groupId>junit</groupId>
479
                        <artifactId>junit</artifactId>
480
                        <version>4.8.2</version>
481
                        <type>jar</type>
482
                        <scope>test</scope>
483
                </dependency>
484
                <dependency>
485
                        <groupId>net.penril</groupId>
486
                        <artifactId>m2u-upass-core</artifactId>
487
                        <version>2.0-SNAPSHOT</version>
488
                        <classifier>${m2u-upass-classifier}</classifier>
489
                </dependency>
490
                <dependency>
491
                        <groupId>net.penril</groupId>
492
                        <artifactId>m2u-upass-admin-core</artifactId>
493
                        <version>2.0-SNAPSHOT</version>
494
                        <exclusions>
495
                                <exclusion>
496
                                        <artifactId>saaj-api</artifactId>
497
                                        <groupId>javax.xml.soap</groupId>
498
                                </exclusion>
499
                                <exclusion>
500
                                        <artifactId>axis-jaxrpc</artifactId>
501
                                        <groupId>org.apache.axis</groupId>
502
                                </exclusion>
503
                                <exclusion>
504
                                        <artifactId>axis-saaj</artifactId>
505
                                        <groupId>org.apache.axis</groupId>
506
                                </exclusion>
507
                        </exclusions>
508
                </dependency>
509
                <dependency>
510
                        <groupId>net.penril.onlineapps</groupId>
511
                        <artifactId>oa-mailbox</artifactId>
512
                        <version>0.9-SNAPSHOT</version>
513
                        <type>jar</type>
514
                </dependency>
515
                <dependency>
516
                        <groupId>com.vasco.vacman</groupId>
517
                        <artifactId>aal2wrap</artifactId>
518
                        <version>3.7.10</version>
519
                        <type>jar</type>
520
                        <scope>system</scope>
521
                        <systemPath>${basedir}/WebContent/WEB-INF/lib/aal2wrap.jar</systemPath>
522
                </dependency>
523
                <dependency>
524
                        <groupId>com.microsoft</groupId>
525
                        <artifactId>mssql-jdbc</artifactId>
526
                        <version>3.0</version>
527
                        <type>jar</type>
528
                </dependency>
529
                <dependency>
530
                        <groupId>antlr</groupId>
531
                        <artifactId>antlr</artifactId>
532
                        <version>2.7.6</version>
533
                        <type>jar</type>
534
                        <scope>compile</scope>
535
                </dependency>
536
                <dependency>
537
                        <groupId>commons-collections</groupId>
538
                        <artifactId>commons-collections</artifactId>
539
                        <version>3.2.1</version>
540
                        <type>jar</type>
541
                        <scope>compile</scope>
542
                </dependency>
543
                <dependency>
544
                        <groupId>commons-logging</groupId>
545
                        <artifactId>commons-logging</artifactId>
546
                        <version>1.1.1</version>
547
                        <type>jar</type>
548
                        <scope>compile</scope>
549
                </dependency>
550
                <dependency>
551
                        <groupId>dom4j</groupId>
552
                        <artifactId>dom4j</artifactId>
553
                        <version>1.6</version>
554
                        <type>jar</type>
555
                        <scope>compile</scope>
556
                        <exclusions>
557
                                <exclusion>
558
                                        <artifactId>xml-apis</artifactId>
559
                                        <groupId>xml-apis</groupId>
560
                                </exclusion>
561
                        </exclusions>
562
                </dependency>
563
                <dependency>
564
                        <groupId>org.hibernate</groupId>
565
                        <artifactId>hibernate-core</artifactId>
566
                        <version>3.3.1.GA</version>
567
                        <type>jar</type>
568
                        <scope>compile</scope>
569
                </dependency>
570
                <dependency>
571
                        <groupId>javassist</groupId>
572
                        <artifactId>javassist</artifactId>
573
                        <version>3.4.GA</version>
574
                        <type>jar</type>
575
                        <scope>compile</scope>
576
                </dependency>
577
                <dependency>
578
                        <groupId>javax.servlet</groupId>
579
                        <artifactId>jstl</artifactId>
580
                        <version>1.1.2</version>
581
                        <type>jar</type>
582
                        <scope>compile</scope>
583
                </dependency>
584
                <dependency>
585
                        <groupId>javax.transaction</groupId>
586
                        <artifactId>jta</artifactId>
587
                        <version>1.1</version>
588
                        <type>jar</type>
589
                        <scope>compile</scope>
590
                </dependency>
591
                <dependency>
592
                        <groupId>org.slf4j</groupId>
593
                        <artifactId>slf4j-api</artifactId>
594
                        <version>1.5.6</version>
595
                        <type>jar</type>
596
                        <scope>compile</scope>
597
                </dependency>
598
                <dependency>
599
                        <groupId>org.slf4j</groupId>
600
                        <artifactId>slf4j-log4j12</artifactId>
601
                        <version>1.5.6</version>
602
                        <type>jar</type>
603
                        <scope>compile</scope>
604
                </dependency>
605
                <dependency>
606
                        <groupId>org.slf4j</groupId>
607
                        <artifactId>slf4j-simple</artifactId>
608
                        <version>1.5.6</version>
609
                        <type>jar</type>
610
                        <scope>compile</scope>
611
                </dependency>
612
                <dependency>
613
                        <groupId>struts</groupId>
614
                        <artifactId>struts</artifactId>
615
                        <version>1.1</version>
616
                        <type>jar</type>
617
                        <scope>compile</scope>
618
                </dependency>
619
                <dependency>
620
                        <groupId>struts</groupId>
621
                        <artifactId>struts-el</artifactId>
622
                        <version>1.1</version>
623
                        <type>jar</type>
624
                        <scope>compile</scope>
625
                </dependency>
626
                <dependency>
627
                        <groupId>struts</groupId>
628
                        <artifactId>struts-legacy</artifactId>
629
                        <version>1.1</version>
630
                        <type>jar</type>
631
                        <scope>compile</scope>
632
                </dependency>
633
                <dependency>
634
                        <groupId>commons-beanutils</groupId>
635
                        <artifactId>commons-beanutils</artifactId>
636
                        <version>1.8.3</version>
637
                        <type>jar</type>
638
                        <scope>compile</scope>
639
                </dependency>
640
                <dependency>
641
                        <groupId>javax.activation</groupId>
642
                        <artifactId>activation</artifactId>
643
                        <version>1.1.1</version>
644
                        <type>jar</type>
645
                        <scope>compile</scope>
646
                </dependency>
647
                <dependency>
648
                        <groupId>commons-digester</groupId>
649
                        <artifactId>commons-digester</artifactId>
650
                        <version>1.7</version>
651
                        <type>jar</type>
652
                        <scope>compile</scope>
653
                        <exclusions>
654
                                <exclusion>
655
                                        <artifactId>xml-apis</artifactId>
656
                                        <groupId>xml-apis</groupId>
657
                                </exclusion>
658
                        </exclusions>
659
                </dependency>
660
                <dependency>
661
                        <groupId>commons-discovery</groupId>
662
                        <artifactId>commons-discovery</artifactId>
663
                        <version>0.2</version>
664
                        <type>jar</type>
665
                        <scope>compile</scope>
666
                </dependency>
667
                <dependency>
668
                        <groupId>commons-fileupload</groupId>
669
                        <artifactId>commons-fileupload</artifactId>
670
                        <version>1.2.1</version>
671
                        <type>jar</type>
672
                        <scope>compile</scope>
673
                </dependency>
674
                <dependency>
675
                        <groupId>commons-io</groupId>
676
                        <artifactId>commons-io</artifactId>
677
                        <version>1.4</version>
678
                </dependency>
679
                <dependency>
680
                        <groupId>commons-lang</groupId>
681
                        <artifactId>commons-lang</artifactId>
682
                        <version>2.6</version>
683
                        <type>jar</type>
684
                        <scope>compile</scope>
685
                </dependency>
686
                <dependency>
687
                        <groupId>taglibs</groupId>
688
                        <artifactId>standard</artifactId>
689
                        <version>1.1.2</version>
690
                        <type>jar</type>
691
                        <scope>compile</scope>
692
                </dependency>
693
                <dependency>
694
                        <groupId>wsdl4j</groupId>
695
                        <artifactId>wsdl4j</artifactId>
696
                        <version>1.6.2</version>
697
                        <type>jar</type>
698
                        <scope>compile</scope>
699
                </dependency>
700
                <dependency>
701
                        <groupId>javax.sql</groupId>
702
                        <artifactId>jdbc-stdext</artifactId>
703
                        <version>2.0</version>
704
                        <scope>compile</scope>
705
                </dependency>
706
                <dependency>
707
                        <groupId>javax.servlet</groupId>
708
                        <artifactId>servlet-api</artifactId>
709
                        <version>2.3</version>
710
                        <type>jar</type>
711
                        <scope>provided</scope>
712
                </dependency>
713
                <dependency>
714
                        <groupId>javax.servlet.jsp</groupId>
715
                        <artifactId>jsp-api</artifactId>
716
                        <version>2.1</version>
717
                        <type>jar</type>
718
                        <scope>provided</scope>
719
                </dependency>
720
                <dependency>
721
                        <groupId>c3p0</groupId>
722
                        <artifactId>c3p0</artifactId>
723
                        <version>0.9.1.2</version>
724
                        <type>jar</type>
725
                        <scope>compile</scope>
726
                </dependency>
727
                <dependency>
728
                        <groupId>commons-dbcp</groupId>
729
                        <artifactId>commons-dbcp</artifactId>
730
                        <version>1.2.2</version>
731
                        <type>jar</type>
732
                        <scope>compile</scope>
733
                </dependency>
734
                <dependency>
735
                        <groupId>commons-pool</groupId>
736
                        <artifactId>commons-pool</artifactId>
737
                        <version>1.3</version>
738
                        <type>jar</type>
739
                        <scope>compile</scope>
740
                </dependency>
741
                <dependency>
742
                        <groupId>org.hibernate</groupId>
743
                        <artifactId>hibernate-c3p0</artifactId>
744
                        <version>3.3.1.GA</version>
745
                        <type>jar</type>
746
                        <scope>compile</scope>
747
                </dependency>
748
                <dependency>
749
                        <groupId>com.google.code.gson</groupId>
750
                        <artifactId>gson</artifactId>
751
                        <version>1.7.1</version>
752
                </dependency>
753
                <dependency>
754
                        <groupId>org.coury</groupId>
755
                        <artifactId>jfilehelpers</artifactId>
756
                        <version>0.2a-20111103</version>
757
                </dependency>
758
                <dependency>
759
                        <groupId>org.seleniumhq.selenium</groupId>
760
                        <artifactId>selenium-server</artifactId>
761
                        <version>2.35.0</version>
762
                        <scope>test</scope>
763
                </dependency>
764
        </dependencies>
765
</project>