Statistics
| Branch: | Revision:

m2u-upass-ws / pom.xml @ 54:3bb2b0f70a0c

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