Statistics
| Branch: | Revision:

m2u-upass-admin / pom.xml @ 120:ae1d99468601

History | View | Annotate | Download (19.8 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}/com/ib/hibernate/configuration/hibernate.cfg.xml" />
230
                                                                                <copy file="resource/com/ib/hibernate/configuration/hibernate${config.postfix}.cfg.xml" tofile="${project.build.outputDirectory}/com/ib/hibernate/configuration/hibernate.cfg.xml" />
231

    
232
                                                                                <delete>
233
                                                                                        <fileset dir="${project.build.outputDirectory}/com/ib/hibernate/configuration" 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

    
304

    
305

    
306
                <profile>
307
                        <id>env-staging-penril</id>
308
                        <activation>
309
                                <property>
310
                                        <name>env</name>
311
                                        <value>staging-penril</value>
312
                                </property>
313
                        </activation>
314
                        <properties>
315
                                <config.postfix>.staging-penril</config.postfix>
316
                        </properties>
317
                        <build>
318
                                <plugins>
319
                                        <plugin>
320
                                                <artifactId>maven-antrun-plugin</artifactId>
321
                                                <configuration>
322
                                                        <target>
323
                                                                <copy file="${basedir}/target/${artifactId}-${version}.war" tofile="/var/lib/jenkins/was-workspace/{artifactId}/${artifactId}-${version}.war" />
324
                                                        </target>
325
                                                </configuration>
326
                                                <executions>
327
                                                        <execution>
328
                                                                <id>was-deployer</id>
329
                                                                <phase>install</phase>
330
                                                                <goals>
331
                                                                        <goal>run</goal>
332
                                                                </goals>
333
                                                        </execution>
334
                                                </executions>
335
                                        </plugin>
336

    
337
                                </plugins>
338
                        </build>
339
                </profile>
340

    
341

    
342

    
343
                <profile>
344
                        <id>cobertura-instrument</id>
345
                        <activation>
346
                                <property>
347
                                        <name>cobertura-build</name>
348
                                </property>
349
                        </activation>
350
                        <properties>
351
                                <m2u-upass-classifier>instrumented</m2u-upass-classifier>
352
                        </properties>
353
                        <distributionManagement>
354
                                <snapshotRepository>
355
                                        <id>penril.nexus.repo.coverage</id>
356
                                        <name>Penril Nexus Repo Coverage</name>
357
                                        <url>scp://staging.penril.net/usr/share/tomcat5/sonatype-work/nexus/storage/snapshots-coverage</url>
358
                                </snapshotRepository>
359
                        </distributionManagement>
360
                        <build>
361
                                <plugins>
362
                                        <plugin>
363
                                                <artifactId>maven-war-plugin</artifactId>
364
                                                <configuration>
365
                                                        <classifier>${m2u-upass-classifier}</classifier>
366
                                                        <packagingExcludes>WEB-INF/lib/m2u-upass-*SNAPSHOT.jar</packagingExcludes>
367
                                                </configuration>
368
                                        </plugin>
369
                                        <plugin>
370
                                                <groupId>org.codehaus.mojo</groupId>
371
                                                <artifactId>cobertura-maven-plugin</artifactId>
372
                                                <configuration>
373
                                                        <formats>
374
                                                                <format>html</format>
375
                                                                <format>xml</format>
376
                                                        </formats>
377

    
378
                                                        <!-- TODO: To be configured... -->
379
                                                        <instrumentation>
380
                                                                <ignores>
381
                                                                        <ignore>com.example.boringcode.*</ignore>
382
                                                                </ignores>
383
                                                                <excludes>
384
                                                                        <exclude>com/example/dullcode/**/*.class</exclude>
385
                                                                        <exclude>com/example/**/*Test.class</exclude>
386
                                                                </excludes>
387
                                                        </instrumentation>
388

    
389
                                                        <!-- TODO: To be configured... -->
390
                                                        <check>
391
                                                                <branchRate>85</branchRate>
392
                                                                <lineRate>85</lineRate>
393
                                                                <haltOnFailure>true</haltOnFailure>
394
                                                                <totalBranchRate>85</totalBranchRate>
395
                                                                <totalLineRate>85</totalLineRate>
396
                                                                <packageLineRate>85</packageLineRate>
397
                                                                <packageBranchRate>85</packageBranchRate>
398
                                                                <regexes>
399
                                                                        <regex>
400
                                                                                <pattern>com.example.reallyimportant.*</pattern>
401
                                                                                <branchRate>90</branchRate>
402
                                                                                <lineRate>80</lineRate>
403
                                                                        </regex>
404
                                                                        <regex>
405
                                                                                <pattern>com.example.boringcode.*</pattern>
406
                                                                                <branchRate>40</branchRate>
407
                                                                                <lineRate>30</lineRate>
408
                                                                        </regex>
409
                                                                </regexes>
410
                                                        </check>
411
                                                </configuration>
412
                                                <executions>
413
                                                        <execution>
414
                                                                <id>instrument-code</id>
415
                                                                <phase>process-classes</phase>
416
                                                                <goals>
417
                                                                        <goal>instrument</goal>
418
                                                                </goals>
419
                                                                <configuration>
420
                                                                        <attach>true</attach>
421
                                                                </configuration>
422
                                                        </execution>
423
                                                </executions>
424
                                        </plugin>
425
                                        <plugin>
426
                                                <artifactId>maven-source-plugin</artifactId>
427
                                                <executions>
428
                                                        <execution>
429
                                                                <id>attach-sources</id>
430
                                                                <goals>
431
                                                                        <goal>jar</goal>
432
                                                                </goals>
433
                                                        </execution>
434
                                                </executions>
435
                                                <inherited>true</inherited>
436
                                        </plugin>
437
                                </plugins>
438
                        </build>
439
                        <dependencies>
440
                                <dependency>
441
                                        <groupId>net.sourceforge.cobertura</groupId>
442
                                        <artifactId>cobertura-runtime</artifactId>
443
                                        <version>${cobertura.version}</version>
444
                                        <!-- <scope>provided</scope> -->
445
                                        <scope>compile</scope>
446
                                        <type>pom</type>
447
                                </dependency>
448
                        </dependencies>
449
                </profile>
450
        </profiles>
451

    
452

    
453

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