133 lines
5.0 KiB
XML
133 lines
5.0 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>
|
|
<artifactId>load-testing-comparison</artifactId>
|
|
<name>load-testing-comparison</name>
|
|
|
|
<parent>
|
|
<groupId>com.baeldung</groupId>
|
|
<artifactId>parent-boot-2</artifactId>
|
|
<version>0.0.1-SNAPSHOT</version>
|
|
<relativePath>../../parent-boot-2</relativePath>
|
|
</parent>
|
|
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>io.gatling</groupId>
|
|
<artifactId>gatling-app</artifactId>
|
|
<version>${gatling.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>io.gatling</groupId>
|
|
<artifactId>gatling-recorder</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.scala-lang</groupId>
|
|
<artifactId>scala-library</artifactId>
|
|
<version>${scala.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.fasterxml.jackson.core</groupId>
|
|
<artifactId>jackson-databind</artifactId>
|
|
<version>${jackson.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-starter</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-starter-web</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-starter-data-jpa</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.h2database</groupId>
|
|
<artifactId>h2</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.projectlombok</groupId>
|
|
<artifactId>lombok</artifactId>
|
|
<scope>compile</scope>
|
|
</dependency>
|
|
</dependencies>
|
|
|
|
<build>
|
|
<!--<testSourceDirectory>src/test/scala</testSourceDirectory>-->
|
|
<!--<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>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-maven-plugin</artifactId>
|
|
<version>2.0.5.RELEASE</version>
|
|
</plugin>
|
|
<!--<plugin>-->
|
|
<!--<groupId>net.alchim31.maven</groupId>-->
|
|
<!--<artifactId>scala-maven-plugin</artifactId>-->
|
|
<!--<executions>-->
|
|
<!--<execution>-->
|
|
<!--<goals>-->
|
|
<!--<goal>testCompile</goal>-->
|
|
<!--</goals>-->
|
|
<!--<configuration>-->
|
|
<!--<args>-->
|
|
<!--<!–<arg>-Ybackend:GenBCode</arg> –>-->
|
|
<!--<arg>-Ydelambdafy:method</arg>-->
|
|
<!--<arg>-target:jvm-1.8</arg>-->
|
|
<!--<arg>-deprecation</arg>-->
|
|
<!--<arg>-feature</arg>-->
|
|
<!--<arg>-unchecked</arg>-->
|
|
<!--<arg>-language:implicitConversions</arg>-->
|
|
<!--<arg>-language:postfixOps</arg>-->
|
|
<!--</args>-->
|
|
<!--</configuration>-->
|
|
<!--</execution>-->
|
|
<!--</executions>-->
|
|
<!--</plugin>-->
|
|
<!--<plugin>-->
|
|
<!--<groupId>io.gatling</groupId>-->
|
|
<!--<artifactId>gatling-maven-plugin</artifactId>-->
|
|
<!--<version>${gatling-maven-plugin.version}</version>-->
|
|
<!--<executions>-->
|
|
<!--<execution>-->
|
|
<!--<phase>test</phase>-->
|
|
<!--<goals>-->
|
|
<!--<goal>execute</goal>-->
|
|
<!--</goals>-->
|
|
<!--</execution>-->
|
|
<!--</executions>-->
|
|
<!--</plugin>-->
|
|
</plugins>
|
|
</build>
|
|
|
|
<properties>
|
|
<maven.compiler.source>1.8</maven.compiler.source>
|
|
<maven.compiler.target>1.8</maven.compiler.target>
|
|
<encoding>UTF-8</encoding>
|
|
<scala.version>2.11.12</scala.version> <!--2.11.12 --> <!--2.12.6 -->
|
|
<gatling.version>2.2.5</gatling.version> <!--2.2.5 --> <!--2.3.1 -->
|
|
<scala-maven-plugin.version>3.2.2</scala-maven-plugin.version> <!--3.2.2 --> <!--3.3.2 -->
|
|
<gatling-maven-plugin.version>2.2.1</gatling-maven-plugin.version> <!--2.2.1 --> <!--2.2.4 -->
|
|
<jmeter.version>5.0</jmeter.version>
|
|
</properties>
|
|
|
|
</project>
|