Statistics
| Branch: | Revision:

m2u-upass-ws / pom.xml @ 49:4b668c7b5357

History | View | Annotate | Download (17.9 KB)

1 0:53910be9bd5d hadi
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
2
        xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
3
4
        <modelVersion>4.0.0</modelVersion>
5
6
        <groupId>net.penril</groupId>
7 1:de3237f0578f hadi
        <artifactId>m2u-upass-ws</artifactId>
8 0:53910be9bd5d hadi
        <version>2.0-SNAPSHOT</version>
9
        <packaging>war</packaging>
10 1:de3237f0578f hadi
        <name>M2U UPass Web Services</name>
11 0:53910be9bd5d hadi
        <properties>
12
                <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
13
                <cobertura.version>1.9.4.1</cobertura.version>
14
                <config.postfix />
15
                <tomcat.home>/var/lib/jenkins/apache-tomcat-5.5.33</tomcat.home>
16 41:82f9226695ca hadi
                <m2u-upass-classifier></m2u-upass-classifier>
17 0:53910be9bd5d hadi
        </properties>
18
        <pluginRepositories>
19
                <pluginRepository>
20
                        <id>eviwarePluginRepository</id>
21
                        <url>http://www.eviware.com/repository/maven2/</url>
22
                </pluginRepository>
23
        </pluginRepositories>
24 42:bc281010aa2b hadi
        <distributionManagement>
25
                <snapshotRepository>
26
                        <id>penril.nexus.repo</id>
27
                        <name>Penril Nexus Repo</name>
28
                        <url>scp://staging.penril.net/usr/share/tomcat5/sonatype-work/nexus/storage/snapshots</url>
29 43:8cf1379b4214 hadi
                        <uniqueVersion>false</uniqueVersion>
30 42:bc281010aa2b hadi
                </snapshotRepository>
31
        </distributionManagement>
32 0:53910be9bd5d hadi
        <build>
33
                <pluginManagement>
34
                        <plugins>
35
                                <plugin>
36
                                        <groupId>org.codehaus.mojo</groupId>
37
                                        <artifactId>cobertura-maven-plugin</artifactId>
38
                                        <version>2.5.1</version>
39
                                </plugin>
40
                                <plugin>
41
                                        <groupId>org.apache.maven.plugins</groupId>
42
                                        <artifactId>maven-antrun-plugin</artifactId>
43
                                        <version>1.6</version>
44
                                </plugin>
45
                                <plugin>
46
                                        <groupId>org.mortbay.jetty</groupId>
47
                                        <artifactId>maven-jetty-plugin</artifactId>
48
                                        <version>6.1.16</version>
49
                                        <configuration>
50
                                                <!-- <stopPort>8005</stopPort> -->
51
                                                <connectors>
52
                                                        <connector implementation="org.mortbay.jetty.nio.SelectChannelConnector">
53
                                                                <port>9090</port>
54
                                                                <maxIdleTime>60000</maxIdleTime>
55
                                                        </connector>
56
                                                </connectors>
57
                                                <stopPort>9005</stopPort>
58
                                                <stopKey>STOP</stopKey>
59
                                                <contextPath>${project.artifactId}</contextPath>
60 38:346f2a2fb939 hadi
                                                <jettyConfig>target/classes/jetty.xml</jettyConfig>
61 0:53910be9bd5d hadi
                                        </configuration>
62
                                </plugin>
63
                        </plugins>
64
                </pluginManagement>
65
                <sourceDirectory>src</sourceDirectory>
66
                <resources>
67
                        <resource>
68
                                <directory>src</directory>
69
                                <excludes>
70
                                        <exclude>**/*.java</exclude>
71
                                </excludes>
72
                        </resource>
73
                        <resource>
74
                                <directory>resources</directory>
75
                        </resource>
76
                </resources>
77
                <testSourceDirectory>test/java</testSourceDirectory>
78
                <testResources>
79
                        <testResource>
80
                                <directory>test/resources</directory>
81
                        </testResource>
82
                </testResources>
83
                <plugins>
84
                        <plugin>
85
                                <groupId>org.apache.maven.plugins</groupId>
86
                                <artifactId>maven-war-plugin</artifactId>
87
                                <version>2.1.1</version>
88
                                <configuration>
89
                                        <warSourceDirectory>${basedir}/WebContent</warSourceDirectory>
90
                                </configuration>
91
                        </plugin>
92
                        <plugin>
93
                                <groupId>org.apache.maven.plugins</groupId>
94
                                <artifactId>maven-compiler-plugin</artifactId>
95
                                <version>2.3.2</version>
96
                                <configuration>
97 7:2f54c7e7d21f hadi
                                        <source>1.5</source>
98 17:8671256e0b9a hadi
                                        <target>1.5</target>
99 0:53910be9bd5d hadi
                                </configuration>
100
                        </plugin>
101
                        <plugin>
102
                                <artifactId>maven-antrun-plugin</artifactId>
103
                                <executions>
104
                                        <execution>
105
                                                <id>env-config</id>
106
                                                <phase>process-resources</phase>
107
                                                <configuration>
108
                                                        <target>
109
                                                                <delete file="${project.build.outputDirectory}/log4j.xml" />
110
                                                                <copy file="resources/log4j${config.postfix}.xml" tofile="${project.build.outputDirectory}/log4j.xml" />
111
112
                                                                <delete>
113
                                                                        <fileset dir="${project.build.outputDirectory}"
114
                                                                                includes="log4j.*.xml" />
115
                                                                </delete>
116
                                                        </target>
117
                                                </configuration>
118
                                                <goals>
119
                                                        <goal>run</goal>
120
                                                </goals>
121
                                        </execution>
122
                                </executions>
123
                        </plugin>
124
                        <plugin>
125
                                <artifactId>maven-failsafe-plugin</artifactId>
126
                                <version>2.6</version>
127
                                <executions>
128
                                        <execution>
129
                                                <goals>
130
                                                        <goal>integration-test</goal>
131
                                                        <goal>verify</goal>
132
                                                </goals>
133
                                        </execution>
134
                                </executions>
135
                                <dependencies>
136
                                        <dependency>
137
                                                <groupId>net.sourceforge.cobertura</groupId>
138
                                                <artifactId>cobertura-runtime</artifactId>
139
                                                <version>${cobertura.version}</version>
140
                                                <!-- <scope>provided</scope> -->
141
                                                <scope>compile</scope>
142
                                                <type>pom</type>
143
                                        </dependency>
144
                                </dependencies>
145
                        </plugin>
146
                </plugins>
147
        </build>
148
        <profiles>
149
                <profile>
150
                        <id>env-dev-penril</id>
151
                        <activation>
152
                                <property>
153
                                        <name>env</name>
154
                                        <value>dev-penril</value>
155
                                </property>
156
                        </activation>
157
                        <properties>
158
                                <config.postfix>.dev-penril</config.postfix>
159
                        </properties>
160
                </profile>
161
                <profile>
162
                        <id>env-staging-ci</id>
163
                        <activation>
164
                                <property>
165
                                        <name>env</name>
166
                                        <value>staging-ci</value>
167
                                </property>
168
                        </activation>
169
                        <properties>
170
                                <config.postfix>.staging-ci</config.postfix>
171
                        </properties>
172
                        <build>
173
                                <plugins>
174
                                        <plugin>
175
                                                <groupId>org.mortbay.jetty</groupId>
176
                                                <artifactId>maven-jetty-plugin</artifactId>
177
                                                <configuration>
178
                                                        <webAppSourceDirectory>${basedir}/WebContent</webAppSourceDirectory>
179
                                                        <classesDirectory>${project.build.directory}/generated-classes/cobertura</classesDirectory>
180 41:82f9226695ca hadi
                                                        <!-- <webApp>${project.build.directory}/${project.artifactId}-instrument.${project.packaging}</webApp> -->
181 0:53910be9bd5d hadi
                                                </configuration>
182
                                                <executions>
183
                                                        <execution>
184
                                                                <id>start-jetty</id>
185
                                                                <phase>pre-integration-test</phase>
186
                                                                <goals>
187
                                                                        <goal>run</goal>
188
                                                                </goals>
189
                                                                <configuration>
190
                                                                        <scanIntervalSeconds>0</scanIntervalSeconds>
191
                                                                        <daemon>true</daemon>
192
                                                                </configuration>
193
                                                        </execution>
194
                                                        <execution>
195
                                                                <id>stop-jetty</id>
196
                                                                <phase>post-integration-test</phase>
197
                                                                <goals>
198
                                                                        <goal>stop</goal>
199
                                                                </goals>
200
                                                        </execution>
201
                                                </executions>
202
                                                <dependencies>
203
                                                        <dependency>
204
                                                                <groupId>net.sourceforge.cobertura</groupId>
205
                                                                <artifactId>cobertura-runtime</artifactId>
206
                                                                <version>${cobertura.version}</version>
207
                                                                <!-- <scope>provided</scope> -->
208
                                                                <scope>compile</scope>
209
                                                                <type>pom</type>
210
                                                        </dependency>
211
                                                </dependencies>
212
                                        </plugin>
213
                                        <plugin>
214
                                                <artifactId>maven-surefire-plugin</artifactId>
215
                                                <configuration>
216
                                                        <classesDirectory>${project.build.directory}/generated-classes/cobertura</classesDirectory>
217
                                                        <forkMode>none</forkMode>
218
                                                </configuration>
219
                                        </plugin>
220
                                        <plugin>
221
                                                <groupId>eviware</groupId>
222
                                                <artifactId>maven-soapui-plugin</artifactId>
223
                                                <version>4.5.1</version>
224
                                                <executions>
225
                                                        <execution>
226
                                                                <id>UPassWsTests</id>
227
                                                                <goals>
228
                                                                        <goal>test</goal>
229
                                                                </goals>
230
                                                                <phase>integration-test</phase>
231
                                                        </execution>
232
                                                </executions>
233
                                                <configuration>
234
                                                        <projectFile>${basedir}/test/soap-ui/UPass-soapui-project.xml</projectFile>
235
                                                        <host>localhost</host>
236
                                                        <!-- <port>8080</port> -->
237
                                                        <port>9090</port>
238
                                                        <outputFolder>${project.build.directory}/surefire-reports</outputFolder>
239
                                                        <junitReport>true</junitReport>
240
                                                        <printReport>false</printReport>
241
                                                        <projectProperties>
242
                                                                <projectProperty>invokerUsername=UpassAdmin</projectProperty>
243
                                                                <projectProperty>invokerPassword=password</projectProperty>
244
                                                        </projectProperties>
245
                                                </configuration>
246
                                        </plugin>
247
                                </plugins>
248
                        </build>
249
                </profile>
250
                <profile>
251 49:4b668c7b5357 mohd
                        <id>env-maybank-dev</id>
252
                        <activation>
253
                                <property>
254
                                        <name>env</name>
255
                                        <value>maybank-dev</value>
256
                                </property>
257
                        </activation>
258
                        <properties>
259
                                <config.postfix>.maybank-dev</config.postfix>
260
                        </properties>
261
                        <build>
262
                                <plugins>
263
                                        <plugin>
264
                                                <groupId>org.mortbay.jetty</groupId>
265
                                                <artifactId>maven-jetty-plugin</artifactId>
266
                                                <configuration>
267
                                                        <webAppSourceDirectory>${basedir}/WebContent</webAppSourceDirectory>
268
                                                        <classesDirectory>${project.build.directory}/generated-classes/cobertura</classesDirectory>
269
                                                        <!-- <webApp>${project.build.directory}/${project.artifactId}-instrument.${project.packaging}</webApp> -->
270
                                                </configuration>
271
                                                <executions>
272
                                                        <execution>
273
                                                                <id>start-jetty</id>
274
                                                                <phase>pre-integration-test</phase>
275
                                                                <goals>
276
                                                                        <goal>run</goal>
277
                                                                </goals>
278
                                                                <configuration>
279
                                                                        <scanIntervalSeconds>0</scanIntervalSeconds>
280
                                                                        <daemon>true</daemon>
281
                                                                </configuration>
282
                                                        </execution>
283
                                                        <execution>
284
                                                                <id>stop-jetty</id>
285
                                                                <phase>post-integration-test</phase>
286
                                                                <goals>
287
                                                                        <goal>stop</goal>
288
                                                                </goals>
289
                                                        </execution>
290
                                                </executions>
291
                                                <dependencies>
292
                                                        <dependency>
293
                                                                <groupId>net.sourceforge.cobertura</groupId>
294
                                                                <artifactId>cobertura-runtime</artifactId>
295
                                                                <version>${cobertura.version}</version>
296
                                                                <!-- <scope>provided</scope> -->
297
                                                                <scope>compile</scope>
298
                                                                <type>pom</type>
299
                                                        </dependency>
300
                                                </dependencies>
301
                                        </plugin>
302
                                        <plugin>
303
                                                <artifactId>maven-surefire-plugin</artifactId>
304
                                                <configuration>
305
                                                        <classesDirectory>${project.build.directory}/generated-classes/cobertura</classesDirectory>
306
                                                        <forkMode>none</forkMode>
307
                                                </configuration>
308
                                        </plugin>
309
                                        <plugin>
310
                                                <groupId>eviware</groupId>
311
                                                <artifactId>maven-soapui-plugin</artifactId>
312
                                                <version>4.5.1</version>
313
                                                <executions>
314
                                                        <execution>
315
                                                                <id>UPassWsTests</id>
316
                                                                <goals>
317
                                                                        <goal>test</goal>
318
                                                                </goals>
319
                                                                <phase>integration-test</phase>
320
                                                        </execution>
321
                                                </executions>
322
                                                <configuration>
323
                                                        <projectFile>${basedir}/test/soap-ui/UPass-soapui-project.xml</projectFile>
324
                                                        <host>localhost</host>
325
                                                        <!-- <port>8080</port> -->
326
                                                        <port>9090</port>
327
                                                        <outputFolder>${project.build.directory}/surefire-reports</outputFolder>
328
                                                        <junitReport>true</junitReport>
329
                                                        <printReport>false</printReport>
330
                                                        <projectProperties>
331
                                                                <projectProperty>invokerUsername=UpassAdmin</projectProperty>
332
                                                                <projectProperty>invokerPassword=password</projectProperty>
333
                                                        </projectProperties>
334
                                                </configuration>
335
                                        </plugin>
336
                                </plugins>
337
                        </build>
338
                </profile>
339
                <profile>
340 0:53910be9bd5d hadi
                        <id>cobertura-instrument</id>
341
                        <activation>
342
                                <property>
343
                                        <name>cobertura-build</name>
344
                                </property>
345
                        </activation>
346 41:82f9226695ca hadi
                        <properties>
347
                                <m2u-upass-classifier>instrumented</m2u-upass-classifier>
348
                        </properties>
349 0:53910be9bd5d hadi
                        <distributionManagement>
350
                                <snapshotRepository>
351
                                        <id>penril.nexus.repo.coverage</id>
352
                                        <name>Penril Nexus Repo Coverage</name>
353
                                        <url>scp://staging.penril.net/usr/share/tomcat5/sonatype-work/nexus/storage/snapshots-coverage</url>
354
                                </snapshotRepository>
355
                        </distributionManagement>
356
                        <build>
357
                                <plugins>
358
                                        <plugin>
359 41:82f9226695ca hadi
                                                <artifactId>maven-war-plugin</artifactId>
360
                                                <configuration>
361
                                                        <classifier>${m2u-upass-classifier}</classifier>
362
                                                        <packagingExcludes>WEB-INF/lib/m2u-upass-*SNAPSHOT.jar</packagingExcludes>
363
                                                </configuration>
364
                                        </plugin>
365
                                        <plugin>
366 0:53910be9bd5d hadi
                                                <groupId>org.codehaus.mojo</groupId>
367
                                                <artifactId>cobertura-maven-plugin</artifactId>
368
                                                <configuration>
369
                                                        <formats>
370
                                                                <format>html</format>
371
                                                                <format>xml</format>
372
                                                        </formats>
373
374
                                                        <!-- TODO: To be configured... -->
375
                                                        <instrumentation>
376
                                                                <ignores>
377
                                                                        <ignore>com.example.boringcode.*</ignore>
378
                                                                </ignores>
379
                                                                <excludes>
380
                                                                        <exclude>com/example/dullcode/**/*.class</exclude>
381
                                                                        <exclude>com/example/**/*Test.class</exclude>
382
                                                                </excludes>
383
                                                        </instrumentation>
384
385
                                                        <!-- TODO: To be configured... -->
386
                                                        <check>
387
                                                                <branchRate>85</branchRate>
388
                                                                <lineRate>85</lineRate>
389
                                                                <haltOnFailure>true</haltOnFailure>
390
                                                                <totalBranchRate>85</totalBranchRate>
391
                                                                <totalLineRate>85</totalLineRate>
392
                                                                <packageLineRate>85</packageLineRate>
393
                                                                <packageBranchRate>85</packageBranchRate>
394
                                                                <regexes>
395
                                                                        <regex>
396
                                                                                <pattern>com.example.reallyimportant.*</pattern>
397
                                                                                <branchRate>90</branchRate>
398
                                                                                <lineRate>80</lineRate>
399
                                                                        </regex>
400
                                                                        <regex>
401
                                                                                <pattern>com.example.boringcode.*</pattern>
402
                                                                                <branchRate>40</branchRate>
403
                                                                                <lineRate>30</lineRate>
404
                                                                        </regex>
405
                                                                </regexes>
406
                                                        </check>
407
                                                </configuration>
408
                                                <executions>
409
                                                        <execution>
410
                                                                <id>instrument-code</id>
411
                                                                <phase>process-classes</phase>
412
                                                                <goals>
413
                                                                        <goal>instrument</goal>
414
                                                                </goals>
415
                                                                <configuration>
416
                                                                        <attach>true</attach>
417
                                                                </configuration>
418
                                                        </execution>
419
                                                </executions>
420
                                        </plugin>
421
                                        <plugin>
422
                                                <artifactId>maven-source-plugin</artifactId>
423
                                                <executions>
424
                                                        <execution>
425
                                                                <id>attach-sources</id>
426
                                                                <goals>
427
                                                                        <goal>jar</goal>
428
                                                                </goals>
429
                                                        </execution>
430
                                                </executions>
431
                                                <inherited>true</inherited>
432
                                        </plugin>
433
                                </plugins>
434
                        </build>
435
                        <dependencies>
436
                                <dependency>
437
                                        <groupId>net.sourceforge.cobertura</groupId>
438
                                        <artifactId>cobertura-runtime</artifactId>
439
                                        <version>${cobertura.version}</version>
440
                                        <!-- <scope>provided</scope> -->
441
                                        <scope>compile</scope>
442
                                        <type>pom</type>
443
                                </dependency>
444
                        </dependencies>
445
                </profile>
446
                <profile>
447
                        <id>custom-war-deploy</id>
448
                        <activation>
449
                                <property>
450
                                        <name>custom-war-deploy</name>
451
                                </property>
452
                        </activation>
453
                        <build>
454
                                <plugins>
455
                                        <plugin>
456
                                                <artifactId>maven-antrun-plugin</artifactId>
457
                                                <executions>
458
                                                        <execution>
459
                                                                <id>tomcat-deployment</id>
460
                                                                <phase>install</phase>
461
                                                                <configuration>
462
                                                                        <target>
463
                                                                                <!-- <echo>Shutting down the Tomcat</echo> <exec dir="${tomcat.home}/bin"
464
                                                                                        executable="${tomcat.home}/bin/shutdown.sh" /> -->
465
                                                                                <copy
466
                                                                                        file="${basedir}/target/${project.artifactId}-${project.version}.war"
467
                                                                                        tofile="${tomcat.home}/webapps/${project.artifactId}.war"
468
                                                                                        overwrite="true" />
469
                                                                                <!-- <echo>Starting up the Tomcat</echo> <exec dir="${tomcat.home}/bin"
470
                                                                                        executable="${tomcat.home}/bin/startup.sh" /> -->
471
                                                                        </target>
472
                                                                </configuration>
473
                                                                <goals>
474
                                                                        <goal>run</goal>
475
                                                                </goals>
476
                                                        </execution>
477
                                                </executions>
478
                                        </plugin>
479
                                </plugins>
480
                        </build>
481
                </profile>
482
                <profile>
483
                        <id>load-test</id>
484
                        <build>
485
                                <plugins>
486
                                        <plugin>
487
                                                <groupId>org.mortbay.jetty</groupId>
488
                                                <artifactId>maven-jetty-plugin</artifactId>
489
                                                <configuration>
490
                                                        <webAppSourceDirectory>${basedir}/WebContent</webAppSourceDirectory>
491
                                                        <classesDirectory>${project.build.directory}/classes</classesDirectory>
492
                                                        <daemon>true</daemon>
493
                                                </configuration>
494
                                        </plugin>
495
                                        <plugin>
496
                                                <artifactId>maven-antrun-plugin</artifactId>
497
                                                <executions>
498
                                                        <execution>
499
                                                                <phase>process-resources</phase>
500
                                                                <configuration>
501
                                                                        <target>
502
                                                                                <echo message="Creating a directory required by our JMeter test plan." />
503 26:d47f87ecfdb6 hadi
                                                                                <mkdir dir="${basedir}/target/jmeter/responses/add" />
504
                                                                                <mkdir dir="${basedir}/target/jmeter/responses/auth" />
505 0:53910be9bd5d hadi
                                                                        </target>
506
                                                                </configuration>
507
                                                                <goals>
508
                                                                        <goal>run</goal>
509
                                                                </goals>
510
                                                        </execution>
511
                                                </executions>
512 38:346f2a2fb939 hadi
                                        </plugin>
513 0:53910be9bd5d hadi
                                        <plugin>
514
                                                <groupId>org.codehaus.mojo</groupId>
515
                                                <artifactId>exec-maven-plugin</artifactId>
516
                                                <configuration>
517
                                                        <executable>${JMETER_HOME}/bin/jmeter.sh</executable>
518
                                                        <arguments>
519
                                                                <argument>-n</argument>
520
                                                                <argument>-t</argument>
521
                                                                <argument>${basedir}/test/jmeter/UPass-test-plan.jmx</argument>
522
                                                                <argument>-l</argument>
523
                                                                <argument>${project.build.directory}/jmeter/result.jtl</argument>
524
                                                                <argument>-J</argument>
525
                                                                <argument>jmeter.save.saveservice.output_format=xml</argument>
526 18:4ebe1871686b hadi
                                                                <argument>-J</argument>
527
                                                                <argument>jmeter.save.saveservice.thread_counts=true</argument>
528 0:53910be9bd5d hadi
                                                                <argument>-j</argument>
529
                                                                <argument>${project.build.directory}/jmeter/jmeter.log</argument>
530
                                                        </arguments>
531
                                                </configuration>
532
                                        </plugin>
533
                                </plugins>
534
                        </build>
535
                </profile>
536
        </profiles>
537
        <dependencies>
538
                <dependency>
539
                        <groupId>junit</groupId>
540
                        <artifactId>junit</artifactId>
541
                        <version>3.8.1</version>
542
                        <scope>test</scope>
543
                </dependency>
544
                <dependency>
545
                        <groupId>net.penril</groupId>
546 4:6929b881e172 hadi
                        <artifactId>m2u-upass-core</artifactId>
547 0:53910be9bd5d hadi
                        <version>2.0-SNAPSHOT</version>
548 41:82f9226695ca hadi
                        <classifier>${m2u-upass-classifier}</classifier>
549
                        <exclusions>
550
                                <exclusion>
551
                                        <groupId>net.penril</groupId>
552
                                        <artifactId>m2u-upass-min</artifactId>
553
                                </exclusion>
554
                        </exclusions>
555
                </dependency>
556
                <dependency>
557
                        <groupId>net.penril</groupId>
558
                        <artifactId>m2u-upass-min</artifactId>
559
                        <version>2.0-SNAPSHOT</version>
560
                        <classifier>${m2u-upass-classifier}</classifier>
561 0:53910be9bd5d hadi
                </dependency>
562
                <dependency>
563
                        <groupId>axis</groupId>
564
                        <artifactId>axis</artifactId>
565
                        <version>1.4</version>
566
                        <type>jar</type>
567
                        <scope>compile</scope>
568
                </dependency>
569
                <dependency>
570
                        <groupId>commons-discovery</groupId>
571
                        <artifactId>commons-discovery</artifactId>
572
                        <version>0.2</version>
573
                        <type>jar</type>
574
                        <scope>compile</scope>
575
                </dependency>
576
                <dependency>
577
                        <groupId>commons-logging</groupId>
578
                        <artifactId>commons-logging</artifactId>
579
                        <version>1.1.1</version>
580
                        <type>jar</type>
581
                        <scope>compile</scope>
582
                </dependency>
583
                <dependency>
584
                        <groupId>wsdl4j</groupId>
585
                        <artifactId>wsdl4j</artifactId>
586
                        <version>1.6.2</version>
587
                        <type>jar</type>
588
                        <scope>compile</scope>
589
                </dependency>
590
                <dependency>
591
                        <groupId>axis</groupId>
592
                        <artifactId>axis-jaxrpc</artifactId>
593
                        <version>1.4</version>
594
                        <scope>compile</scope>
595
                </dependency>
596
                <dependency>
597
                        <groupId>axis</groupId>
598
                        <artifactId>axis-saaj</artifactId>
599
                        <version>1.4</version>
600
                        <scope>compile</scope>
601
                </dependency>
602
                <dependency>
603
                        <groupId>commons-io</groupId>
604
                        <artifactId>commons-io</artifactId>
605
                        <version>1.4</version>
606
                </dependency>
607
                <dependency>
608
                        <groupId>net.sourceforge.cobertura</groupId>
609
                        <artifactId>cobertura-runtime</artifactId>
610
                        <version>${cobertura.version}</version>
611
                        <!-- <scope>provided</scope> -->
612
                        <scope>test</scope>
613
                        <type>pom</type>
614
                </dependency>
615
        </dependencies>
616
</project>