2023-03-14 07:28:54 -04:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
<project xmlns="http://maven.apache.org/POM/4.0.0"
|
2023-05-24 10:08:09 -04:00
|
|
|
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">
|
2023-03-14 07:28:54 -04:00
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<groupId>org.baeldung</groupId>
|
2023-03-17 07:49:32 -04:00
|
|
|
<artifactId>gatling-java</artifactId>
|
2023-03-14 07:28:54 -04:00
|
|
|
<version>1.0-SNAPSHOT</version>
|
2023-03-17 07:49:32 -04:00
|
|
|
<name>gatling-java</name>
|
2023-03-14 07:28:54 -04:00
|
|
|
|
|
|
|
<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>
|
2023-12-25 18:56:04 -05:00
|
|
|
<version>${lombok.version}</version>
|
2023-03-14 07:28:54 -04:00
|
|
|
<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>
|
2023-06-02 23:42:18 -04:00
|
|
|
<includes>
|
|
|
|
<include>org.baeldung.EmployeeRegistrationSimulation</include>
|
|
|
|
<include>org.baeldung.gatling.http.FetchSinglePostSimulation</include>
|
|
|
|
<include>org.baeldung.gatling.http.FetchSinglePostSimulationLog</include>
|
|
|
|
</includes>
|
|
|
|
<runMultipleSimulations>true</runMultipleSimulations>
|
2023-03-14 07:28:54 -04:00
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
|
|
|
|
<properties>
|
2023-06-02 23:42:18 -04:00
|
|
|
<gatling.version>3.9.5</gatling.version>
|
|
|
|
<gatling-maven-plugin.version>4.3.0</gatling-maven-plugin.version>
|
2023-03-14 07:28:54 -04:00
|
|
|
<faker.version>1.0.2</faker.version>
|
|
|
|
<spring.version>2.7.5</spring.version>
|
|
|
|
</properties>
|
|
|
|
|
|
|
|
</project>
|