84 lines
3.1 KiB
XML
84 lines
3.1 KiB
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<project xmlns="http://maven.apache.org/POM/4.0.0"
|
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
|
<modelVersion>4.0.0</modelVersion>
|
|
<groupId>org.baeldung</groupId>
|
|
<artifactId>gatling-java</artifactId>
|
|
<version>1.0-SNAPSHOT</version>
|
|
<name>gatling-java</name>
|
|
|
|
<parent>
|
|
<groupId>com.baeldung</groupId>
|
|
<artifactId>testing-modules</artifactId>
|
|
<version>1.0.0-SNAPSHOT</version>
|
|
</parent>
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>io.gatling</groupId>
|
|
<artifactId>gatling-app</artifactId>
|
|
<version>${gatling.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>io.gatling.highcharts</groupId>
|
|
<artifactId>gatling-charts-highcharts</artifactId>
|
|
<version>${gatling.version}</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-starter-web</artifactId>
|
|
<version>${spring.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.projectlombok</groupId>
|
|
<artifactId>lombok</artifactId>
|
|
<version>1.18.24</version>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.github.javafaker</groupId>
|
|
<artifactId>javafaker</artifactId>
|
|
<version>${faker.version}</version>
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
<build>
|
|
<pluginManagement>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>net.alchim31.maven</groupId>
|
|
<artifactId>scala-maven-plugin</artifactId>
|
|
<version>${scala-maven-plugin.version}</version>
|
|
</plugin>
|
|
</plugins>
|
|
</pluginManagement>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>io.gatling</groupId>
|
|
<artifactId>gatling-maven-plugin</artifactId>
|
|
<version>${gatling-maven-plugin.version}</version>
|
|
<configuration>
|
|
<includes>
|
|
<include>org.baeldung.EmployeeRegistrationSimulation</include>
|
|
<include>org.baeldung.gatling.http.FetchSinglePostSimulation</include>
|
|
<include>org.baeldung.gatling.http.FetchSinglePostSimulationLog</include>
|
|
</includes>
|
|
<runMultipleSimulations>true</runMultipleSimulations>
|
|
</configuration>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
|
|
<properties>
|
|
<maven.compiler.source>1.8</maven.compiler.source>
|
|
<maven.compiler.target>1.8</maven.compiler.target>
|
|
<encoding>UTF-8</encoding>
|
|
<gatling.version>3.9.5</gatling.version>
|
|
<gatling-maven-plugin.version>4.3.0</gatling-maven-plugin.version>
|
|
<faker.version>1.0.2</faker.version>
|
|
<spring.version>2.7.5</spring.version>
|
|
</properties>
|
|
|
|
</project> |