/
NikolayIvkin
/
tutorials1
Обзор
Документация
Войти
/
NikolayIvkin
/
tutorials1
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
testing-modules/gatling-java/pom.xml
80 строк
3 KB
vunamtien
[JAVA-35730] Fix-formatting-of-POMs (#16882)
22 июн 2024, 14:04
Не верифицирован
22 июн 2024, 14:04
4488d02
Код
Авторство
О чём код?
<?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>${lombok.version}</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> <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>