Statistics
| Branch: | Revision:

m2u-upass-admin / pom.xml @ 138:c7659b3ef38e

History | View | Annotate | Download (23.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
                        <dependencies>
145
                                <dependency>
146
                                        <groupId>org.hibernate</groupId>
147
                                        <artifactId>hibernate-core</artifactId>
148
                                        <version>3.3.1.GA</version>
149
                                        <type>jar</type>
150
                                        <scope>compile</scope>
151
                                </dependency>
152
                                <dependency>
153
                                        <groupId>org.hibernate</groupId>
154
                                        <artifactId>hibernate-c3p0</artifactId>
155
                                        <version>3.3.1.GA</version>
156
                                </dependency>
157
                                <dependency>
158
                                        <groupId>axis</groupId>
159
                                        <artifactId>axis</artifactId>
160
                                        <version>1.4</version>
161
                                        <type>jar</type>
162
                                        <scope>compile</scope>
163
                                </dependency>
164
                        </dependencies>
165
                        <build>
166
                                <plugins>
167
                                        <plugin>
168
                                                <groupId>org.glassfish</groupId>
169
                                                <artifactId>maven-embedded-glassfish-plugin</artifactId>
170
                                                <configuration>
171
                                                        <app>${project.build.directory}/${project.artifactId}-${project.version}-${m2u-upass-classifier}.war</app>
172
                                                        <!-- <app>${project.build.directory}/${project.artifactId}-${project.version}</app> -->
173
                                                </configuration>
174
                                                <executions>
175
                                                        <execution>
176
                                                                <id>start-glassfish</id>
177
                                                                <phase>pre-integration-test</phase>
178
                                                                <goals>
179
                                                                        <goal>start</goal>
180
                                                                </goals>
181
                                                        </execution>
182
                                                        <execution>
183
                                                                <id>glassfish-deploy</id>
184
                                                                <phase>pre-integration-test</phase>
185
                                                                <goals>
186
                                                                        <goal>deploy</goal>
187
                                                                </goals>
188
                                                        </execution>
189
                                                </executions>
190
                                                <dependencies>
191
                                                        <dependency>
192
                                                                <groupId>net.sourceforge.cobertura</groupId>
193
                                                                <artifactId>cobertura-runtime</artifactId>
194
                                                                <version>${cobertura.version}</version>
195
                                                                <!-- <scope>provided</scope> -->
196
                                                                <scope>compile</scope>
197
                                                                <type>pom</type>
198
                                                        </dependency>
199
                                                </dependencies>
200
                                        </plugin>
201
                                        <plugin>
202
                                                <artifactId>maven-surefire-plugin</artifactId>
203
                                                <configuration>
204
                                                        <classesDirectory>${project.build.directory}/generated-classes/cobertura</classesDirectory>
205
                                                        <forkMode>none</forkMode>
206
                                                        <skipTests>true</skipTests>
207
                                                </configuration>
208
                                        </plugin>
209
                                </plugins>
210
                        </build>
211
                        <dependencies>
212
                                <dependency>
213
                                        <groupId>axis</groupId>
214
                                        <artifactId>axis</artifactId>
215
                                        <version>1.4</version>
216
                                        <type>jar</type>
217
                                        <scope>compile</scope>
218
                                </dependency>
219
                        </dependencies>
220
                </profile>
221
                <profile>
222
                        <id>env-dev-m2u</id>
223
                        <activation>
224
                                <property>
225
                                        <name>env</name>
226
                                        <value>dev-m2u</value>
227
                                </property>
228
                        </activation>
229
                        <properties>
230
                                <config.postfix>.dev-m2u</config.postfix>
231
                        </properties>
232
                </profile>
233
                <profile>
234
                        <id>env-ant</id>
235
                        <activation>
236
                                <property>
237
                                        <name>env</name>
238
                                </property>
239
                        </activation>
240
                        <build>
241
                                <plugins>
242
                                        <plugin>
243
                                                <artifactId>maven-antrun-plugin</artifactId>
244
                                                <executions>
245
                                                        <execution>
246
                                                                <id>env-config</id>
247
                                                                <phase>process-resources</phase>
248
                                                                <configuration>
249
                                                                        <target>
250
                                                                                <delete file="${project.build.outputDirectory}/upassMin.properties" />
251
                                                                                <copy file="resources/upassMin${config.postfix}.properties" tofile="${project.build.outputDirectory}/upassMin.properties" />
252

    
253
                                                                                <delete>
254
                                                                                        <fileset dir="${project.build.outputDirectory}" includes="upassMin.*.properties" />
255
                                                                                </delete>
256
                                                                                <delete file="${project.build.outputDirectory}/hibernate.cfg.xml" />
257
                                                                                <copy file="resource/hibernate${config.postfix}.cfg.xml" tofile="${project.build.outputDirectory}/hibernate.cfg.xml" />
258

    
259
                                                                                <delete>
260
                                                                                        <fileset dir="${project.build.outputDirectory}" includes="hibernate.*.cfg.xml" />
261
                                                                                </delete>
262

    
263
                                                                                <delete file="${project.build.outputDirectory}/UPassClient.cfg" />
264
                                                                                <copy file="resource/UPassClient${config.postfix}.cfg" tofile="${project.build.outputDirectory}/UPassClient.cfg" />
265

    
266
                                                                                <delete>
267
                                                                                        <fileset dir="${project.build.outputDirectory}" includes="UPassClient.*.cfg" />
268
                                                                                </delete>
269

    
270
                                                                                <delete file="${project.build.outputDirectory}/AppConfig.properties" />
271
                                                                                <copy file="resource/AppConfig${config.postfix}.properties" tofile="${project.build.outputDirectory}/AppConfig.properties" />
272

    
273
                                                                                <delete>
274
                                                                                        <fileset dir="${project.build.outputDirectory}" includes="AppConfig.*.properties" />
275
                                                                                </delete>
276

    
277
                                                                                <delete file="${project.build.outputDirectory}/spring-ldap.xml" />
278
                                                                                <copy file="resources/spring-ldap.xml" tofile="${project.build.outputDirectory}/spring-ldap.xml" />
279
                                                                                <delete>
280
                                                                                        <fileset dir="${project.build.outputDirectory}" includes="spring-ldap.*.xml" />
281
                                                                                </delete>
282

    
283
                                                                                <delete file="${project.build.outputDirectory}/log4j.xml" />
284
                                                                                <copy file="resource/log4j${config.postfix}.xml" tofile="${project.build.outputDirectory}/log4j.xml" />
285

    
286
                                                                                <delete>
287
                                                                                        <fileset dir="${project.build.outputDirectory}" includes="log4j.*.xml" />
288
                                                                                </delete>
289

    
290
                                                                        </target>
291
                                                                </configuration>
292
                                                                <goals>
293
                                                                        <goal>run</goal>
294
                                                                </goals>
295
                                                        </execution>
296
                                                </executions>
297
                                        </plugin>
298
                                </plugins>
299
                        </build>
300
                </profile>
301
                <profile>
302
                        <id>env-dev-penril</id>
303
                        <activation>
304
                                <property>
305
                                        <name>env</name>
306
                                        <value>dev-penril</value>
307
                                </property>
308
                        </activation>
309
                        <properties>
310
                                <config.postfix>.dev-penril</config.postfix>
311
                        </properties>
312
                        <dependencies>
313
                                <dependency>
314
                                        <groupId>org.hibernate</groupId>
315
                                        <artifactId>hibernate-core</artifactId>
316
                                        <version>3.3.1.GA</version>
317
                                        <type>jar</type>
318
                                        <scope>compile</scope>
319
                                </dependency>
320
                                <dependency>
321
                                        <groupId>axis</groupId>
322
                                        <artifactId>axis</artifactId>
323
                                        <version>1.4</version>
324
                                        <type>jar</type>
325
                                        <scope>compile</scope>
326
                                </dependency>
327
                        </dependencies>
328
                </profile>
329
                <profile>
330
                        <id>env-maybank-dev</id>
331
                        <activation>
332
                                <property>
333
                                        <name>env</name>
334
                                        <value>maybank-dev</value>
335
                                </property>
336
                        </activation>
337
                        <properties>
338
                                <config.postfix>.maybank-dev</config.postfix>
339
                        </properties>
340
                        <dependencies>
341
                                <dependency>
342
                                        <groupId>org.hibernate</groupId>
343
                                        <artifactId>hibernate-core</artifactId>
344
                                        <version>3.3.1.GA</version>
345
                                        <type>jar</type>
346
                                        <scope>compile</scope>
347
                                        <exclusions>
348
                                                <exclusion>
349
                                                        <groupId>xml-apis</groupId>
350
                                                        <artifactId>xml-apis</artifactId>
351
                                                </exclusion>
352
                                        </exclusions>
353
                                </dependency>
354
                                <dependency>
355
                                        <groupId>org.hibernate</groupId>
356
                                        <artifactId>hibernate-c3p0</artifactId>
357
                                        <version>3.3.1.GA</version>
358
                                </dependency>
359
                                <dependency>
360
                                        <groupId>axis</groupId>
361
                                        <artifactId>axis</artifactId>
362
                                        <version>1.4</version>
363
                                        <type>jar</type>
364
                                        <scope>compile</scope>
365
                                        <exclusions>
366
                                                <exclusion>
367
                                                        <artifactId>axis-jaxrpc</artifactId>
368
                                                        <groupId>org.apache.axis</groupId>
369
                                                </exclusion>
370
                                                <exclusion>
371
                                                        <artifactId>axis-saaj</artifactId>
372
                                                        <groupId>org.apache.axis</groupId>
373
                                                </exclusion>
374
                                        </exclusions>
375
                                </dependency>
376
                        </dependencies>
377
                        <build>
378
                                <plugins>
379
                                        <plugin>
380
                                                <groupId>org.glassfish</groupId>
381
                                                <artifactId>maven-embedded-glassfish-plugin</artifactId>
382
                                                <configuration>
383
                                                        <app>${project.build.directory}/${project.artifactId}-${project.version}.war</app>
384
                                                </configuration>
385
                                        </plugin>
386
                                </plugins>
387
                        </build>
388
                </profile>
389
                <profile>
390
                        <id>env-maybank-prod</id>
391
                        <activation>
392
                                <property>
393
                                        <name>env</name>
394
                                        <value>maybank-prod</value>
395
                                </property>
396
                        </activation>
397
                        <properties>
398
                                <config.postfix>.maybank-prod</config.postfix>
399
                        </properties>
400
                        <dependencies>
401
                                <dependency>
402
                                        <groupId>org.hibernate</groupId>
403
                                        <artifactId>hibernate-core</artifactId>
404
                                        <version>3.3.1.GA</version>
405
                                        <type>jar</type>
406
                                        <scope>compile</scope>
407
                                        <exclusions>
408
                                                <exclusion>
409
                                                        <groupId>xml-apis</groupId>
410
                                                        <artifactId>xml-apis</artifactId>
411
                                                </exclusion>
412
                                        </exclusions>
413
                                </dependency>
414
                                <dependency>
415
                                        <groupId>org.hibernate</groupId>
416
                                        <artifactId>hibernate-c3p0</artifactId>
417
                                        <version>3.3.1.GA</version>
418
                                </dependency>
419
                                <dependency>
420
                                        <groupId>axis</groupId>
421
                                        <artifactId>axis</artifactId>
422
                                        <version>1.4</version>
423
                                        <type>jar</type>
424
                                        <scope>compile</scope>
425
                                        <exclusions>
426
                                                <exclusion>
427
                                                        <artifactId>axis-jaxrpc</artifactId>
428
                                                        <groupId>org.apache.axis</groupId>
429
                                                </exclusion>
430
                                                <exclusion>
431
                                                        <artifactId>axis-saaj</artifactId>
432
                                                        <groupId>org.apache.axis</groupId>
433
                                                </exclusion>
434
                                        </exclusions>
435
                                </dependency>
436
                        </dependencies>
437
                        <build>
438
                                <plugins>
439
                                        <plugin>
440
                                                <groupId>org.glassfish</groupId>
441
                                                <artifactId>maven-embedded-glassfish-plugin</artifactId>
442
                                                <configuration>
443
                                                        <app>${project.build.directory}/${project.artifactId}-${project.version}.war</app>
444
                                                </configuration>
445
                                        </plugin>
446
                                </plugins>
447
                        </build>
448
                </profile>
449
                <profile>
450
                        <id>env-staging-penril</id>
451
                        <activation>
452
                                <property>
453
                                        <name>env</name>
454
                                        <value>staging-penril</value>
455
                                </property>
456
                        </activation>
457
                        <properties>
458
                                <config.postfix>.staging-penril</config.postfix>
459
                        </properties>
460
                        <build>
461
                                <plugins>
462
                                        <plugin>
463
                                                <artifactId>maven-antrun-plugin</artifactId>
464
                                                <configuration>
465
                                                        <target>
466
                                                                <copy file="${basedir}/target/${artifactId}-${version}.war" tofile="/var/lib/jenkins/was-workspace/{artifactId}/${artifactId}-${version}.war" />
467
                                                        </target>
468
                                                </configuration>
469
                                                <executions>
470
                                                        <execution>
471
                                                                <id>was-deployer</id>
472
                                                                <phase>install</phase>
473
                                                                <goals>
474
                                                                        <goal>run</goal>
475
                                                                </goals>
476
                                                        </execution>
477
                                                </executions>
478
                                        </plugin>
479

    
480
                                </plugins>
481
                        </build>
482
                </profile>
483
                <profile>
484
                        <id>cobertura-instrument</id>
485
                        <activation>
486
                                <property>
487
                                        <name>cobertura-build</name>
488
                                </property>
489
                        </activation>
490
                        <properties>
491
                                <m2u-upass-classifier>instrumented</m2u-upass-classifier>
492
                        </properties>
493
                        <distributionManagement>
494
                                <snapshotRepository>
495
                                        <id>penril.nexus.repo.coverage</id>
496
                                        <name>Penril Nexus Repo Coverage</name>
497
                                        <url>scp://staging.penril.net/usr/share/tomcat5/sonatype-work/nexus/storage/snapshots-coverage</url>
498
                                </snapshotRepository>
499
                        </distributionManagement>
500
                        <build>
501
                                <plugins>
502
                                        <plugin>
503
                                                <artifactId>maven-war-plugin</artifactId>
504
                                                <configuration>
505
                                                        <classifier>${m2u-upass-classifier}</classifier>
506
                                                        <packagingExcludes>WEB-INF/lib/m2u-upass-*SNAPSHOT.jar</packagingExcludes>
507
                                                </configuration>
508
                                        </plugin>
509
                                        <plugin>
510
                                                <groupId>org.codehaus.mojo</groupId>
511
                                                <artifactId>cobertura-maven-plugin</artifactId>
512
                                                <configuration>
513
                                                        <formats>
514
                                                                <format>html</format>
515
                                                                <format>xml</format>
516
                                                        </formats>
517

    
518
                                                        <!-- TODO: To be configured... -->
519
                                                        <instrumentation>
520
                                                                <ignores>
521
                                                                        <ignore>com.example.boringcode.*</ignore>
522
                                                                </ignores>
523
                                                                <excludes>
524
                                                                        <exclude>com/example/dullcode/**/*.class</exclude>
525
                                                                        <exclude>com/example/**/*Test.class</exclude>
526
                                                                </excludes>
527
                                                        </instrumentation>
528

    
529
                                                        <!-- TODO: To be configured... -->
530
                                                        <check>
531
                                                                <branchRate>85</branchRate>
532
                                                                <lineRate>85</lineRate>
533
                                                                <haltOnFailure>true</haltOnFailure>
534
                                                                <totalBranchRate>85</totalBranchRate>
535
                                                                <totalLineRate>85</totalLineRate>
536
                                                                <packageLineRate>85</packageLineRate>
537
                                                                <packageBranchRate>85</packageBranchRate>
538
                                                                <regexes>
539
                                                                        <regex>
540
                                                                                <pattern>com.example.reallyimportant.*</pattern>
541
                                                                                <branchRate>90</branchRate>
542
                                                                                <lineRate>80</lineRate>
543
                                                                        </regex>
544
                                                                        <regex>
545
                                                                                <pattern>com.example.boringcode.*</pattern>
546
                                                                                <branchRate>40</branchRate>
547
                                                                                <lineRate>30</lineRate>
548
                                                                        </regex>
549
                                                                </regexes>
550
                                                        </check>
551
                                                </configuration>
552
                                                <executions>
553
                                                        <execution>
554
                                                                <id>instrument-code</id>
555
                                                                <phase>process-classes</phase>
556
                                                                <goals>
557
                                                                        <goal>instrument</goal>
558
                                                                </goals>
559
                                                                <configuration>
560
                                                                        <attach>true</attach>
561
                                                                </configuration>
562
                                                        </execution>
563
                                                </executions>
564
                                        </plugin>
565
                                        <plugin>
566
                                                <artifactId>maven-source-plugin</artifactId>
567
                                                <executions>
568
                                                        <execution>
569
                                                                <id>attach-sources</id>
570
                                                                <goals>
571
                                                                        <goal>jar</goal>
572
                                                                </goals>
573
                                                        </execution>
574
                                                </executions>
575
                                                <inherited>true</inherited>
576
                                        </plugin>
577
                                </plugins>
578
                        </build>
579
                        <dependencies>
580
                                <dependency>
581
                                        <groupId>net.sourceforge.cobertura</groupId>
582
                                        <artifactId>cobertura-runtime</artifactId>
583
                                        <version>${cobertura.version}</version>
584
                                        <!-- <scope>provided</scope> -->
585
                                        <scope>compile</scope>
586
                                        <type>pom</type>
587
                                </dependency>
588
                        </dependencies>
589
                </profile>
590
        </profiles>
591
        <dependencies>
592
                <dependency>
593
                        <groupId>junit</groupId>
594
                        <artifactId>junit</artifactId>
595
                        <version>4.8.2</version>
596
                        <type>jar</type>
597
                        <scope>test</scope>
598
                </dependency>
599
                <dependency>
600
                        <groupId>net.penril</groupId>
601
                        <artifactId>m2u-upass-core</artifactId>
602
                        <version>2.0-SNAPSHOT</version>
603
                        <classifier>${m2u-upass-classifier}</classifier>
604
                </dependency>
605
                <dependency>
606
                        <groupId>net.penril</groupId>
607
                        <artifactId>m2u-upass-admin-core</artifactId>
608
                        <version>2.0-SNAPSHOT</version>
609
                        <exclusions>
610
                                <exclusion>
611
                                        <artifactId>saaj-api</artifactId>
612
                                        <groupId>javax.xml.soap</groupId>
613
                                </exclusion>
614
                                <exclusion>
615
                                        <artifactId>axis-jaxrpc</artifactId>
616
                                        <groupId>org.apache.axis</groupId>
617
                                </exclusion>
618
                                <exclusion>
619
                                        <artifactId>axis-saaj</artifactId>
620
                                        <groupId>org.apache.axis</groupId>
621
                                </exclusion>
622
                        </exclusions>
623
                </dependency>
624
                <dependency>
625
                        <groupId>net.penril.onlineapps</groupId>
626
                        <artifactId>oa-mailbox</artifactId>
627
                        <version>0.9-SNAPSHOT</version>
628
                        <type>jar</type>
629
                </dependency>
630
                <dependency>
631
                        <groupId>com.vasco.vacman</groupId>
632
                        <artifactId>aal2wrap</artifactId>
633
                        <version>3.7.10</version>
634
                        <type>jar</type>
635
                        <scope>system</scope>
636
                        <systemPath>${basedir}/WebContent/WEB-INF/lib/aal2wrap.jar</systemPath>
637
                </dependency>
638
                <dependency>
639
                        <groupId>com.microsoft</groupId>
640
                        <artifactId>mssql-jdbc</artifactId>
641
                        <version>3.0</version>
642
                        <type>jar</type>
643
                </dependency>
644
                <dependency>
645
                        <groupId>antlr</groupId>
646
                        <artifactId>antlr</artifactId>
647
                        <version>2.7.6</version>
648
                        <type>jar</type>
649
                        <scope>compile</scope>
650
                </dependency>
651
                <dependency>
652
                        <groupId>commons-collections</groupId>
653
                        <artifactId>commons-collections</artifactId>
654
                        <version>3.2.1</version>
655
                        <type>jar</type>
656
                        <scope>compile</scope>
657
                </dependency>
658
                <dependency>
659
                        <groupId>commons-logging</groupId>
660
                        <artifactId>commons-logging</artifactId>
661
                        <version>1.1.1</version>
662
                        <type>jar</type>
663
                        <scope>compile</scope>
664
                </dependency>
665
                <dependency>
666
                        <groupId>dom4j</groupId>
667
                        <artifactId>dom4j</artifactId>
668
                        <version>1.6</version>
669
                        <type>jar</type>
670
                        <scope>compile</scope>
671
                        <exclusions>
672
                                <exclusion>
673
                                        <artifactId>xml-apis</artifactId>
674
                                        <groupId>xml-apis</groupId>
675
                                </exclusion>
676
                        </exclusions>
677
                </dependency>
678
                <dependency>
679
                        <groupId>org.hibernate</groupId>
680
                        <artifactId>hibernate-core</artifactId>
681
                        <version>3.3.1.GA</version>
682
                        <type>jar</type>
683
                        <scope>compile</scope>
684
                </dependency>
685
                <dependency>
686
                        <groupId>javassist</groupId>
687
                        <artifactId>javassist</artifactId>
688
                        <version>3.4.GA</version>
689
                        <type>jar</type>
690
                        <scope>compile</scope>
691
                </dependency>
692
                <dependency>
693
                        <groupId>javax.servlet</groupId>
694
                        <artifactId>jstl</artifactId>
695
                        <version>1.1.2</version>
696
                        <type>jar</type>
697
                        <scope>compile</scope>
698
                </dependency>
699
                <dependency>
700
                        <groupId>javax.transaction</groupId>
701
                        <artifactId>jta</artifactId>
702
                        <version>1.1</version>
703
                        <type>jar</type>
704
                        <scope>compile</scope>
705
                </dependency>
706
                <dependency>
707
                        <groupId>org.slf4j</groupId>
708
                        <artifactId>slf4j-api</artifactId>
709
                        <version>1.5.6</version>
710
                        <type>jar</type>
711
                        <scope>compile</scope>
712
                </dependency>
713
                <dependency>
714
                        <groupId>org.slf4j</groupId>
715
                        <artifactId>slf4j-log4j12</artifactId>
716
                        <version>1.5.6</version>
717
                        <type>jar</type>
718
                        <scope>compile</scope>
719
                </dependency>
720
                <dependency>
721
                        <groupId>org.slf4j</groupId>
722
                        <artifactId>slf4j-simple</artifactId>
723
                        <version>1.5.6</version>
724
                        <type>jar</type>
725
                        <scope>compile</scope>
726
                </dependency>
727
                <dependency>
728
                        <groupId>struts</groupId>
729
                        <artifactId>struts</artifactId>
730
                        <version>1.1</version>
731
                        <type>jar</type>
732
                        <scope>compile</scope>
733
                </dependency>
734
                <dependency>
735
                        <groupId>struts</groupId>
736
                        <artifactId>struts-el</artifactId>
737
                        <version>1.1</version>
738
                        <type>jar</type>
739
                        <scope>compile</scope>
740
                </dependency>
741
                <dependency>
742
                        <groupId>struts</groupId>
743
                        <artifactId>struts-legacy</artifactId>
744
                        <version>1.1</version>
745
                        <type>jar</type>
746
                        <scope>compile</scope>
747
                </dependency>
748
                <dependency>
749
                        <groupId>commons-beanutils</groupId>
750
                        <artifactId>commons-beanutils</artifactId>
751
                        <version>1.8.3</version>
752
                        <type>jar</type>
753
                        <scope>compile</scope>
754
                </dependency>
755
                <dependency>
756
                        <groupId>javax.activation</groupId>
757
                        <artifactId>activation</artifactId>
758
                        <version>1.1.1</version>
759
                        <type>jar</type>
760
                        <scope>compile</scope>
761
                </dependency>
762
                <dependency>
763
                        <groupId>commons-digester</groupId>
764
                        <artifactId>commons-digester</artifactId>
765
                        <version>1.7</version>
766
                        <type>jar</type>
767
                        <scope>compile</scope>
768
                        <exclusions>
769
                                <exclusion>
770
                                        <artifactId>xml-apis</artifactId>
771
                                        <groupId>xml-apis</groupId>
772
                                </exclusion>
773
                        </exclusions>
774
                </dependency>
775
                <dependency>
776
                        <groupId>commons-discovery</groupId>
777
                        <artifactId>commons-discovery</artifactId>
778
                        <version>0.2</version>
779
                        <type>jar</type>
780
                        <scope>compile</scope>
781
                </dependency>
782
                <dependency>
783
                        <groupId>commons-fileupload</groupId>
784
                        <artifactId>commons-fileupload</artifactId>
785
                        <version>1.2.1</version>
786
                        <type>jar</type>
787
                        <scope>compile</scope>
788
                </dependency>
789
                <dependency>
790
                        <groupId>commons-io</groupId>
791
                        <artifactId>commons-io</artifactId>
792
                        <version>1.4</version>
793
                </dependency>
794
                <dependency>
795
                        <groupId>commons-lang</groupId>
796
                        <artifactId>commons-lang</artifactId>
797
                        <version>2.6</version>
798
                        <type>jar</type>
799
                        <scope>compile</scope>
800
                </dependency>
801
                <dependency>
802
                        <groupId>taglibs</groupId>
803
                        <artifactId>standard</artifactId>
804
                        <version>1.1.2</version>
805
                        <type>jar</type>
806
                        <scope>compile</scope>
807
                </dependency>
808
                <dependency>
809
                        <groupId>wsdl4j</groupId>
810
                        <artifactId>wsdl4j</artifactId>
811
                        <version>1.6.2</version>
812
                        <type>jar</type>
813
                        <scope>compile</scope>
814
                </dependency>
815
                <dependency>
816
                        <groupId>javax.sql</groupId>
817
                        <artifactId>jdbc-stdext</artifactId>
818
                        <version>2.0</version>
819
                        <scope>compile</scope>
820
                </dependency>
821
                <dependency>
822
                        <groupId>javax.servlet</groupId>
823
                        <artifactId>servlet-api</artifactId>
824
                        <version>2.3</version>
825
                        <type>jar</type>
826
                        <scope>provided</scope>
827
                </dependency>
828
                <dependency>
829
                        <groupId>javax.servlet.jsp</groupId>
830
                        <artifactId>jsp-api</artifactId>
831
                        <version>2.1</version>
832
                        <type>jar</type>
833
                        <scope>provided</scope>
834
                </dependency>
835
                <dependency>
836
                        <groupId>c3p0</groupId>
837
                        <artifactId>c3p0</artifactId>
838
                        <version>0.9.1.2</version>
839
                        <type>jar</type>
840
                        <scope>compile</scope>
841
                </dependency>
842
                <dependency>
843
                        <groupId>commons-dbcp</groupId>
844
                        <artifactId>commons-dbcp</artifactId>
845
                        <version>1.2.2</version>
846
                        <type>jar</type>
847
                        <scope>compile</scope>
848
                </dependency>
849
                <dependency>
850
                        <groupId>commons-pool</groupId>
851
                        <artifactId>commons-pool</artifactId>
852
                        <version>1.3</version>
853
                        <type>jar</type>
854
                        <scope>compile</scope>
855
                </dependency>
856
                <dependency>
857
                        <groupId>org.hibernate</groupId>
858
                        <artifactId>hibernate-c3p0</artifactId>
859
                        <version>3.3.1.GA</version>
860
                        <type>jar</type>
861
                        <scope>compile</scope>
862
                </dependency>
863
                <dependency>
864
                        <groupId>com.google.code.gson</groupId>
865
                        <artifactId>gson</artifactId>
866
                        <version>1.7.1</version>
867
                </dependency>
868
                <dependency>
869
                        <groupId>org.coury</groupId>
870
                        <artifactId>jfilehelpers</artifactId>
871
                        <version>0.2a-20111103</version>
872
                </dependency>
873
                <dependency>
874
                        <groupId>org.seleniumhq.selenium</groupId>
875
                        <artifactId>selenium-server</artifactId>
876
                        <version>2.35.0</version>
877
                        <scope>test</scope>
878
                </dependency>
879
        </dependencies>
880
</project>