Skip to content

Commit 4c06836

Browse files
1 parent ef035c9 commit 4c06836

File tree

16 files changed

+467
-93
lines changed

16 files changed

+467
-93
lines changed

README.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -342,6 +342,11 @@ TODO: Work in progress
342342

343343

344344

345+
Running tests for BenchmarkSOAPGeneric
346+
======================================
347+
348+
349+
345350
## Author
346351
Thomas Modeneis
347352
[StackOverflow](https://careers.stackoverflow.com/thomasmodeneis)

gatling/pom.xml

Lines changed: 95 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,95 @@
1+
<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+
<parent>
7+
<groupId>br.org.soujava</groupId>
8+
<artifactId>scala-gatling-bootstrap-mvn</artifactId>
9+
<version>2.1.7</version>
10+
</parent>
11+
12+
<artifactId>gatling</artifactId>
13+
<version>2.1.7</version>
14+
15+
<properties>
16+
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
17+
<gatling.version>${project.version}</gatling.version>
18+
<gatling-plugin.version>2.1.7</gatling-plugin.version>
19+
</properties>
20+
21+
<dependencies>
22+
<dependency>
23+
<groupId>io.gatling.highcharts</groupId>
24+
<artifactId>gatling-charts-highcharts</artifactId>
25+
<version>${gatling.version}</version>
26+
<scope>test</scope>
27+
</dependency>
28+
<dependency>
29+
<groupId>net.timewalker.ffmq</groupId>
30+
<artifactId>ffmq3-core</artifactId>
31+
<version>3.0.7</version>
32+
<scope>test</scope>
33+
</dependency>
34+
<dependency>
35+
<groupId>io.gatling</groupId>
36+
<artifactId>gatling-jms</artifactId>
37+
<version>${gatling.version}</version>
38+
<scope>test</scope>
39+
</dependency>
40+
41+
<dependency>
42+
<groupId>javax.jms</groupId>
43+
<artifactId>jms</artifactId>
44+
<version>1.1</version>
45+
<scope>test</scope>
46+
</dependency>
47+
48+
<dependency>
49+
<groupId>org.apache.activemq</groupId>
50+
<artifactId>activemq-all</artifactId>
51+
<version>5.8.0</version>
52+
<scope>test</scope>
53+
</dependency>
54+
55+
<dependency>
56+
<groupId>com.typesafe.akka</groupId>
57+
<artifactId>akka-testkit_2.10</artifactId>
58+
<version>2.3.8</version>
59+
<scope>test</scope>
60+
</dependency>
61+
62+
63+
</dependencies>
64+
65+
66+
<repositories>
67+
<repository>
68+
<id>repository-jboss-org</id>
69+
<url>http://ams-mvn01:8081/nexus/content/repositories/repository-jboss-org/</url>
70+
</repository>
71+
</repositories>
72+
73+
<build>
74+
<plugins>
75+
<plugin>
76+
<groupId>io.gatling</groupId>
77+
<artifactId>gatling-maven-plugin</artifactId>
78+
<version>2.1.1</version>
79+
<executions>
80+
<execution>
81+
<phase>test</phase>
82+
<goals>
83+
<goal>execute</goal>
84+
</goals>
85+
<configuration>
86+
<dataFolder>src/test/resources/data</dataFolder>
87+
<resultsFolder>target/gatling/results</resultsFolder>
88+
<simulationsFolder>src/test/scala</simulationsFolder>
89+
</configuration>
90+
</execution>
91+
</executions>
92+
</plugin>
93+
</plugins>
94+
</build>
95+
</project>
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)