В настоящее время я работаю с карате DSL и gatling, чтобы измерить производительность веб-приложения. Я добавил плагин gatling и зависимость katte-gatling в моем pom. xml
<dependency>
<groupId>com.intuit.karate</groupId>
<artifactId>karate-gatling</artifactId>
<version>${karate.version}</version>
<scope>test</scope>
</dependency>
<plugin>
<groupId>io.gatling</groupId>
<artifactId>gatling-maven-plugin</artifactId>
<version>3.0.2</version>
<configuration>
<disableCompiler>true</disableCompiler>
<simulationsFolder>src/test/java</simulationsFolder>
<includes>
<include>performance.createBoards</include>
</includes>
<jvmArgs>
<jvmArg>-Dfile.encoding=UTF-8</jvmArg>
</jvmArgs>
</configuration>
<executions>
<execution>
<phase>test</phase>
<goals>
<goal>test</goal>
</goals>
</execution>
</executions>
</plugin>
Однако, когда я пытаюсь запустить свой тест с помощью этой команды: mvn clean test-compile gatling : test Я получаю сообщение о том, что не найден плагин для префикса gatling.
[ERROR] No plugin found for prefix 'gatling' in the current project and in the plugin groups