|
| 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> |
0 commit comments